/* ==========================================
   styles2.css (LIMPIO) – Método VS Home
   Mobile-first • Conversión • Mantenimiento fácil
   ========================================== */

:root{
  --bg:#f7f3ec;
  --text:#302820;
  --muted:#5a5147;
  --card:#ffffff;
  --line:#eadcc8;

  --gold:#f1a000;
  --gold-dark:#c88500;

  --hero-grad: radial-gradient(circle at top, #6a4f36 0, #2b2118 55%, #cba873 120%);

  --shadow-sm: 0 6px 16px rgba(0,0,0,.06);
  --shadow-md: 0 10px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 18px 40px rgba(0,0,0,.25);

  --radius: 18px;
}

*{ margin:0; padding:0; box-sizing:border-box; }

html, body{ width:100%; max-width:100%; overflow-x:hidden; }

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  padding-top: 80px; /* por nav fixed */
  display:flex;
  flex-direction:column;
  -webkit-font-smoothing: antialiased;
}

main, section, header, footer{ width:100%; }

.container{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============ NAV ============ */
header{ position:fixed; inset:0 0 auto 0; z-index:1100; }

nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 18px;
  background: linear-gradient(90deg, #b88c40 55%, #e6d5b8 120%);
  box-shadow: 0 4px 8px rgba(0,0,0,.25);
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
}

.logo1{ width:58px; height:auto; }

.menu-right{ display:flex; align-items:center; gap:10px; }

ul#menu{
  display:flex;
  list-style:none;
  gap:16px;
  align-items:center;
}

ul#menu li a{
  font-size:15px;
  font-weight:600;
  color:#5b341f;
  text-decoration:none;
  padding:4px 0;
  transition: color .2s ease, border-bottom .2s ease;
}

ul#menu li a:hover,
ul#menu li a.active{
  color:#2c160b;
  border-bottom:2px solid #2c160b;
}

/* Hamburguesa */
.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  cursor:pointer;
  border:none;
  background:transparent;
}
.menu-toggle span{
  width:25px;
  height:3px;
  background:#333;
  border-radius:2px;
}

/* Google Translate (solo estética) */
#google_translate_element{ display:inline-block; }
#google_translate_element .goog-te-gadget{
  background:#e6d5b8;
  border-radius:6px;
  padding:4px 8px;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
#google_translate_element .goog-te-combo{
  background:#f3e9d3 !important;
  color:#8f6900 !important;
  font-size:13px !important;
  border:1px solid #b88c40 !important;
  border-radius:4px !important;
  padding:4px !important;
}

/* ============ BOTONES ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:999px;
  padding: 12px 18px;
  font-weight:800;
  font-size:14px;
  transition: transform .15s ease, background .2s ease, border .2s ease;
  width:100%;
  max-width:520px;
  text-align:center;
}

.btn-primary{
  background: var(--gold);
  color:#fff;
  box-shadow: 0 12px 26px rgba(241,160,0,.25);
}
.btn-primary:hover{ background: var(--gold-dark); transform: translateY(-1px); }

.btn-secondary{
  background: transparent;
  border: 2px solid #fff;
  color:#fff;
}
.btn-secondary:hover{ background:#fff; color:#1b1b1b; transform: translateY(-1px); }

.btn-gold{
  background: var(--gold);
  color:#fff;
  box-shadow: 0 12px 26px rgba(241,160,0,.22);
}
.btn-gold:hover{ background: var(--gold-dark); transform: translateY(-1px); }

.btn-big{ padding: 14px 20px; font-size: 15px; }

/* Tipografía utilitaria */
.h2{
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
  text-align:center;
  margin: 0 0 12px;
}
.p{
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  text-align:center;
  max-width: 62ch;
  margin: 0 auto 14px;
}
.left{ text-align:left; margin-left:0; }
.center{ display:flex; justify-content:center; margin-top:14px; }
.gold{ color: var(--gold-dark); }

.note{
  font-size: 12px;
  color: var(--muted);
  text-align:center;
  margin-top: 10px;
}
.note.left{ text-align:left; }
.center-text{ text-align:center; }

/* Cajas / grids reutilizables */
.box{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-md);
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

.mini{
  background: rgba(241,160,0,0.06);
  border: 1px dashed rgba(200,133,0,0.35);
  border-radius: 16px;
  padding: 12px;
  text-align:left;
}
.mini h3{
  margin:0 0 8px;
  font-size:15px;
  font-weight:900;
  color:#2c1f0f;
}

.check{
  list-style:none;
  padding:0;
  margin:0;
}
.check li{
  position:relative;
  padding-left:18px;
  margin: 10px 0;
  color:#2c1f0f;
  font-size:13px;
  line-height:1.45;
}
.check li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color: var(--gold-dark);
  font-size:12px;
}

/* ============ HERO ============ */
.lp2-hero{
  background: var(--hero-grad);
  color:#fff;
  padding: 22px 0 26px;
}
.lp2-hero-inner{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
  text-align:center;
}

.lp2-hero-photo{
  width:170px;
  height:170px;
  border-radius:999px;
  overflow:hidden;
  border:3px solid rgba(241,160,0,0.6);
  box-shadow: var(--shadow-lg);
  position:relative;
}
.lp2-hero-photo img{ width:100%; height:100%; object-fit:cover; }

.lp2-hero-badge{
  position:absolute;
  left:50%;
  bottom:-12px;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.12);
  color:#fff;
  font-size:11px;
  padding: 6px 10px;
  border-radius:999px;
  white-space:nowrap;
}

.lp2-pill{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  background: rgba(0,0,0,0.35);
  color:#fff;
  padding: 6px 10px;
  border-radius:999px;
  margin: 0 auto;
}

.lp2-h1{
  font-size:22px;
  line-height:1.2;
  font-weight:900;
  margin: 10px 0;
}
.lp2-h1 span{ color:#ffd9a2; }

.lp2-sub{
  color:#f3e9da;
  font-size:14px;
  line-height:1.65;
  max-width: 62ch;
  margin: 0 auto 14px;
}
.lp2-cta{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
}
.lp2-micro{
  font-size:12px;
  color:#f3e9da;
  margin-top: 2px;
}

/* ============ TRUST ============ */
.lp2-trust{
  background:#fff;
  padding: 18px 0;
}
.lp2-trust-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lp2-trust-item{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 10px;
  text-align:center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}
.lp2-trust-big{
  font-weight: 900;
  color: var(--gold-dark);
  font-size: 16px;
}
.lp2-trust-small{
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
  margin-top: 4px;
}

/* ============ PROBLEM + SOLUTION ============ */
.lp2-problem-solution{
  padding: 34px 0;
  background: var(--bg);
}

/* ============ TESTIMONIOS ============ */
.testimonios{
  padding: 44px 0 40px;
  background: #f3ece4;
}
.title-center{ text-align:center; margin: 0 auto 10px; }
.test-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.test-card{
  background:#fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.07);
}
.test-card img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 12px;
}

/* ============ RESULTADOS (Carrusel Premium) ============ */
.resultados-premium{
  padding: 50px 0 56px;
  background:#fff;
}
.resultados-header{
  text-align:center;
  max-width: 780px;
  margin: 0 auto 16px;
}

.resultados-layout{
  display:flex;
  flex-direction:column;
  gap: 16px;
  align-items:center;
}

.swiper-resultados{
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 14px 32px rgba(0,0,0,0.20);
}
.swiper-resultados img{
  width:100%;
  height:auto;
  display:block;
}
.swiper-pagination-bullet{ background: rgba(200,133,0,0.45); }
.swiper-pagination-bullet-active{ background: var(--gold-dark); }

.resultados-copy{
  width:100%;
  max-width: 520px;
  text-align:center;
}

.stats{
  display:flex;
  justify-content:center;
  gap: 18px;
  flex-wrap:wrap;
  margin-bottom: 16px;
}
.stat{
  min-width: 120px;
  background: rgba(241,160,0,0.06);
  border: 1px solid rgba(200,133,0,0.25);
  border-radius: 14px;
  padding: 10px 12px;
}
.stat-top{
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap: 2px;
  margin-bottom: 6px;
}
.contador{
  font-size: 26px;
  font-weight: 900;
  color: var(--gold-dark);
}
.stat-sym{
  font-size: 16px;
  font-weight: 900;
  color: var(--gold-dark);
}
.stat p{
  font-size: 12px;
  color: #3b2a18;
  margin:0;
}

/* ============ PRIMERA EVALUACIÓN ============ */
.lp2-first{
  padding: 40px 0 44px;
  background: var(--bg);
}
.steps{
  list-style:none;
  padding:0;
  margin:0;
  text-align:left;
}
.steps li{
  margin: 10px 0;
  font-size: 13px;
  color:#2c1f0f;
  line-height: 1.5;
}

/* ============ DOCTORA ============ */
.lp2-doctor{
  padding: 44px 0;
  background: #fff;
}
.doctor-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 14px;
  text-align:center;
}
.doctor-photo{
  width: 190px;
  height: 190px;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(241,160,0,0.35);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}
.doctor-photo img{ width:100%; height:100%; object-fit:cover; }
.doctor-copy{ max-width: 650px; width:100%; }

/* ============ MENTORÍA (fondo premium real) ============ */
.lp2-medicos{
  padding: 44px 0;
  background:#fff;
}
.medicos-card{
  border-radius: 20px;
  overflow:hidden;
  border: 1px solid rgba(241,160,0,0.28);
  box-shadow: var(--shadow-md);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.551), rgba(0,0,0,.42)),
    url("/servidor_publico/home/fotoconsul.png");
  background-size: cover;
  background-position: center;
  padding: 22px 14px;
  text-align:center;
}
.medicos-content{
  max-width: 720px;
  margin: 0 auto;
}
.white{ color:#fff; }
.medicos-card .btn{ max-width: 520px; }

/* ============ CTA FINAL + FAQ ============ */
.lp2-final{
  padding: 46px 0 54px;
  background: linear-gradient(180deg, #ffffff 0%, #f3ece4 100%);
}
.final-inner{ text-align:center; }

.faq{
  margin-top: 14px;
  text-align:left;
  max-width: 760px;
  margin-left:auto;
  margin-right:auto;
}
.faq-item{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px 12px;
  margin: 10px 0;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}
.faq-item summary{
  cursor:pointer;
  font-weight: 900;
  font-size: 14px;
  color:#2c1f0f;
}
.faq-item p{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* ============ WhatsApp flotante ============ */
.whatsapp-float{
  position:fixed;
  width:58px;
  height:58px;
  bottom:20px;
  right:18px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
  z-index:2000;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover{
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
}
.whatsapp-float img{ width:34px; height:34px; border-radius:50%; }

/* ============ FOOTER ============ */
footer{
  background:#e6d5b8;
  box-shadow: 0 -4px 10px rgba(0,0,0,.18);
  padding: 38px 20px 26px;
  margin-top:auto;
  width:100%;
}
.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  max-width: 1100px;
  margin: 0 auto;
}
#contacto{ max-width:48%; line-height:1.9; }
#contacto h3{ font-size:22px; margin-bottom:10px; color:#8b5a2a; }
#contacto a{ color:#8b5a2a; text-decoration:none; font-weight:800; }
#contacto a:hover{ text-decoration:underline; }

#redes-sociais{ text-align:center; max-width:42%; }
#redes-sociais h3{ font-size:22px; margin-bottom:12px; color:#8b5a2a; }

.social-icons{ display:flex; justify-content:center; gap:26px; margin-top:10px; }
.social-icon{
  width:34px; height:34px;
  background-size:cover;
  transition: transform .2s ease, filter .2s ease;
}
.social-icon:hover{ transform:scale(1.08); filter:brightness(1.12); }
.instagram{ background-image:url('https://cdn-icons-png.flaticon.com/512/2111/2111463.png'); }
.linkedin{ background-image:url('https://cdn-icons-png.flaticon.com/512/174/174857.png'); }
.facebook{ background-image:url('https://cdn-icons-png.flaticon.com/512/2111/2111342.png'); }
.tiktok{ background-image:url('https://cdn-icons-png.flaticon.com/512/3046/3046127.png'); }

.footer-rights{ text-align:center; margin-top:18px; font-size:13px; color:#555; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px){
  nav{ padding:10px 16px; }
  .menu-toggle{ display:flex; }

  ul#menu{
    position:absolute;
    top:70px;
    left:4%;
    right:4%;
    width:92%;
    background:#f1e1c7;
    border-radius:10px;
    padding: 8px 0 12px;
    flex-direction:column;
    align-items:center;
    gap:0;
    box-shadow: 0 6px 16px rgba(0,0,0,.18);
    display:none;
    z-index:999;
  }
  ul#menu.show{ display:flex; }
  ul#menu li a{ font-size:16px; padding:8px 0; width:100%; text-align:center; }

  footer{ padding: 28px 22px 24px; }
  .footer-content{ flex-direction:column; align-items:center; text-align:center; }
  #contacto, #redes-sociais{ max-width:100%; }
}

@media (min-width: 900px){
  .lp2-hero-inner{
    flex-direction: row;
    justify-content:center;
    gap: 22px;
    text-align:left;
    align-items:center;
  }
  .lp2-sub{ text-align:left; margin-left:0; }
  .lp2-cta{ align-items:flex-start; }
  .lp2-pill{ margin:0; }

  .lp2-trust-grid{ grid-template-columns: repeat(4, 1fr); }
  .grid-2{ grid-template-columns: 1fr 1fr; }

  .resultados-layout{
    flex-direction: row;
    align-items:center;
    justify-content:center;
    gap: 22px;
  }
  .swiper-resultados{ max-width: 420px; }
  .resultados-copy{ text-align:left; }
  .stats{ justify-content:flex-start; }
  .note.left{ margin-left:0; }

  .doctor-inner{ flex-direction: row; text-align:left; }
}
