/* ==========================================
   mentoria.css – Mentoría Método VS® (Médicos)
   Mobile-first • Conversión • Premium
   ========================================== */

: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: 0 10px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 18px 40px rgba(0,0,0,.22);
  --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; /* nav fixed */
  display:flex;
  flex-direction:column;
  -webkit-font-smoothing: antialiased;
}

main, section, header, footer{ width:100%; }

/* Container */
.m-container{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =========================
   NAV (misma línea de tu web)
   ========================= */
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:700;
  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 */
#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;
}

/* =========================
   Tipografía / utilidades
   ========================= */
.m-h1{
  font-size: 22px;
  line-height: 1.2;
  font-weight: 950;
  margin: 10px 0 10px;
  color:#fff;
}
.m-h1 span{ color:#ffd9a2; }

.m-h2{
  font-size: 20px;
  line-height: 1.25;
  font-weight: 950;
  text-align:center;
  margin: 0 0 12px;
  color:#2c1f0f;
}
.m-sub{
  color:#f3e9da;
  font-size: 14px;
  line-height: 1.65;
  text-align:left;
  max-width: 62ch;
  margin: 0 0 14px;
}
.m-p{
  color: var(--muted);
  font-size:14px;
  line-height:1.65;
  text-align:center;
  max-width: 70ch;
  margin: 0 auto 14px;
}
.m-micro{
  font-size:12px;
  color:#f3e9da;
  margin-top: 6px;
}
.m-note{
  font-size:12px;
  color: var(--muted);
  text-align:center;
  margin-top: 12px;
}
.left{ text-align:left; margin-left:0; }
.white{ color:#fff; }

/* Center */
.m-center{ display:flex; justify-content:center; margin-top: 14px; }
.m-center.left{ justify-content:flex-start; }

/* =========================
   Botones
   ========================= */
.m-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:999px;
  padding: 12px 18px;
  font-weight:900;
  font-size:14px;
  transition: transform .15s ease, background .2s ease, border .2s ease;
  width:100%;
  max-width:520px;
  text-align:center;
}
.m-btn-primary{
  background: var(--gold);
  color:#fff;
  box-shadow: 0 12px 26px rgba(241,160,0,.22);
}
.m-btn-primary:hover{ background: var(--gold-dark); transform: translateY(-1px); }

.m-btn-secondary{
  background: transparent;
  border: 2px solid rgba(255,255,255,.92);
  color:#fff;
}
.m-btn-secondary:hover{ background:#fff; color:#1b1b1b; transform: translateY(-1px); }

.m-btn-gold{
  background: var(--gold);
  color:#fff;
  box-shadow: 0 12px 26px rgba(241,160,0,.20);
}
.m-btn-gold:hover{ background: var(--gold-dark); transform: translateY(-1px); }

.m-btn-big{ padding: 14px 20px; font-size:15px; }

/* =========================
   HERO
   ========================= */
.m-hero{
  background: var(--hero-grad);
  color:#fff;
  padding: 22px 0 26px;
}
.m-hero-inner{
  display:flex;
  flex-direction:column;
  gap: 14px;
  align-items:center;
}
.m-hero-left{ width:100%; }
.m-pill{
  display:inline-block;
  font-size:12px;
  font-weight:900;
  background: rgba(0,0,0,0.35);
  color:#fff;
  padding: 6px 10px;
  border-radius:999px;
}

.m-cta{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top: 8px;
}

.m-proof{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.m-proof-item{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 10px 12px;
}
.m-proof-big{
  font-size: 18px;
  font-weight: 950;
  color:#ffd9a2;
}
.m-proof-small{
  font-size: 12px;
  color:#f3e9da;
  line-height: 1.35;
  margin-top: 2px;
}

.m-hero-right{ width:100%; }
.m-hero-photo{
  border-radius: 20px;
  overflow:hidden;
  box-shadow: var(--shadow-lg);
  position:relative;
  border: 1px solid rgba(255,255,255,0.12);
  background:#111;
}
.m-hero-photo img{
  width:100%;
  height:auto;
  display:block;
}
.m-hero-badge{
  position:absolute;
  left:50%;
  bottom:10px;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.78);
  border: 1px solid rgba(255,255,255,0.12);
  color:#fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
}

/* =========================
   FIT
   ========================= */
.m-fit{
  padding: 40px 0 44px;
  background:#fff;
}
.m-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}
.m-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}
.m-card h3{
  font-size: 15px;
  font-weight: 950;
  margin-bottom: 6px;
  color:#2c1f0f;
}
.m-card p{
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

/* =========================
   VALUE
   ========================= */
.m-value{
  padding: 44px 0 46px;
  background: var(--bg);
}
.m-value-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}
.m-value-item{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
.m-icon{ font-size: 20px; margin-bottom: 6px; }
.m-value-item h3{
  font-size: 15px;
  font-weight: 950;
  margin-bottom: 6px;
  color:#2c1f0f;
}
.m-value-item p{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.m-image-slot{
  margin-top: 14px;
  border-radius: var(--radius);
  border: 1px dashed rgba(200,133,0,0.45);
  background: rgba(241,160,0,0.06);
  padding: 14px;
}
.m-image-note{
  font-size: 13px;
  color:#2c1f0f;
  line-height: 1.55;
}

/* =========================
   PROGRAM
   ========================= */
.m-program{
  padding: 44px 0 50px;
  background:#fff;
}
.m-accordion{ margin-top: 10px; }
.m-acc{
  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);
}
.m-acc summary{
  cursor:pointer;
  font-weight: 950;
  font-size: 14px;
  color:#2c1f0f;
}
.m-acc p{
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* =========================
   SOCIAL (médicos)
   ========================= */
.m-social{
  padding: 44px 0 46px;
  background: #f3ece4;
}
.m-social-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}
.m-quote{
  background:#fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 14px;
  box-shadow: var(--shadow);
}
.m-quote-text{
  font-size: 13px;
  line-height: 1.6;
  color:#2c1f0f;
}
.m-quote-meta{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}
.m-quote-image{ display:flex; align-items:center; justify-content:center; }

/* =========================
   MENTOR
   ========================= */
.m-mentor{
  padding: 44px 0 46px;
  background:#fff;
}
.m-mentor-inner{
  display:flex;
  flex-direction:column;
  gap: 14px;
  align-items:center;
  text-align:center;
}
.m-mentor-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);
}
.m-mentor-photo img{ width:100%; height:100%; object-fit:cover; }
.m-mentor-copy{ width:100%; max-width: 720px; }

/* =========================
   FINAL
   ========================= */
.m-final{
  padding: 46px 0 54px;
  background: linear-gradient(180deg, #ffffff 0%, #f3ece4 100%);
}
.m-faq{ margin-top: 14px; max-width: 760px; margin-left:auto; margin-right:auto; }

/* =========================
   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 (mismo estilo base)
   ========================= */
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:900; }
#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){
  .m-hero-inner{
    flex-direction: row;
    gap: 22px;
    align-items:center;
  }
  .m-hero-left{ max-width: 620px; }
  .m-proof{ grid-template-columns: repeat(3, 1fr); }
  .m-cards{ grid-template-columns: 1fr 1fr; }
  .m-value-grid{ grid-template-columns: 1fr 1fr; }
  .m-social-grid{ grid-template-columns: 1fr 1fr 1fr; }
  .m-mentor-inner{ flex-direction: row; text-align:left; }
}
