/* ============================================================
   DentaLoth — Centro de Especialidades Odontológicas
   Sistema de Diseño · Versión 2.0
   Diseño editorial corporativo · Santiago de Querétaro
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..700;1,400..700&family=Source+Sans+3:ital,wght@0,300..700;1,300..700&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* Colores primarios corporativos */
  --petrol:       #02587B; /* Azul profundo principal */
  --petrol-mid:   #036B94; /* Azul intermedio para hovers */
  --petrol-light: #58B7C8; /* Teal claro brillante de acento */
  --petrol-pale:  #F0F8FA; /* Fondo muy claro y limpio */
  --petrol-soft:  #CDE5ED; /* Borde y acento teal suave (#5DB5C4) */

  /* Dorado discreto */
  --gold:         #9A7B3C;
  --gold-warm:    #B8962E;
  --gold-pale:    #F5EDD8;

  /* Neutros */
  --cream:        #FDFAF5;
  --off-white:    #F4F1EC;
  --white:        #FFFFFF;
  --dark:         #1C2B35;
  --dark-mid:     #2E4451;
  --text-mid:     #4A6572;
  --text-light:   #7A9BAA;
  --border:       #D8E6EB;
  --border-warm:  #E2D9CC;

  /* Éxito */
  --success:      #25D366;

  /* Sombras sutiles */
  --shadow-xs:  0 1px 4px rgba(26,74,92,.07);
  --shadow-sm:  0 2px 12px rgba(26,74,92,.09);
  --shadow-md:  0 6px 24px rgba(26,74,92,.12);
  --shadow-lg:  0 16px 48px rgba(26,74,92,.16);

  /* Tipografía */
  --font-display: 'EB Garamond', Georgia, serif;
  --font-body:    'Source Sans 3', Arial, sans-serif;

  /* Espaciado */
  --section-pad:  96px;
  --nav-h:        78px;

  /* Transición */
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17.5px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }

/* ── Tipografía global ───────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 580px;
}

/* ── Botones ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: 4px;
  transition: all .25s var(--ease);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--petrol);
  color: white;
}
.btn-primary:hover {
  background: var(--petrol-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: white;
}
.btn-gold:hover {
  background: var(--gold-warm);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--petrol);
  border: 1.5px solid var(--petrol);
}
.btn-outline:hover {
  background: var(--petrol);
  color: white;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: white;
}

.btn-wa {
  background: var(--success);
  color: white;
}
.btn-wa:hover {
  background: #20bc5a;
  transform: translateY(-2px);
}

/* ── Reveal on scroll ────────────────────────────────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal         { transform: translateY(28px); }
.reveal-left    { transform: translateX(-28px); }
.reveal-right   { transform: translateX(28px); }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }

/* ── Divisor decorativo ──────────────────────────────────── */
.divider-gold {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 12px 0 20px;
}
.divider-gold--center { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: white;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar__brand { display: flex; align-items: center; }
.navbar__logo {
  height: 52px;
  width: auto;
  display: block;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.navbar__nav > a,
.navbar__nav > .nav-dropdown-wrap > .nav-link {
  display: block;
  padding: 0 18px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-mid);
  letter-spacing: 0;
  line-height: var(--nav-h);
  position: relative;
  transition: color .2s;
  cursor: pointer;
}
.navbar__nav > a::after,
.navbar__nav > .nav-dropdown-wrap > .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 2px;
  background: var(--petrol);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.navbar__nav > a:hover,
.navbar__nav > .nav-dropdown-wrap > .nav-link:hover { color: var(--petrol); }
.navbar__nav > a:hover::after,
.navbar__nav > .nav-dropdown-wrap > .nav-link:hover::after,
.navbar__nav > a.active::after { transform: scaleX(1); }
.navbar__nav > a.active { color: var(--petrol); }

/* Dropdown servicios */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(var(--nav-h) - 2px);
  left: 0;
  min-width: 220px;
  background: white;
  border: 1px solid var(--border);
  border-top: 2px solid var(--petrol);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all .2s var(--ease);
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 0.95rem;
  color: var(--dark-mid);
  font-weight: 400;
  border-bottom: 1px solid var(--border);
  transition: background .2s, color .2s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--petrol-pale); color: var(--petrol); padding-left: 24px; }

.navbar__cta {
  padding: 12px 24px;
  font-size: 0.95rem;
  margin-left: 20px;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* ── Mobile Menu ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 100px 40px 60px;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s, padding-left .2s;
}
.mobile-menu a:hover { color: white; padding-left: 8px; }
.mobile-menu__close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 1.4rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.mobile-menu__close:hover { color: white; }

/* ══════════════════════════════════════════════════════════
   PAGE HERO (interior pages)
══════════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 64px;
  background: var(--petrol);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.page-hero__eyebrow { color: rgba(255,255,255,.6); }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem,4.5vw,3.4rem);
  font-weight: 600;
  color: white;
  line-height: 1.18;
  margin-bottom: 16px;
}
.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 540px;
  line-height: 1.85;
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb__sep { opacity: .4; }

/* ══════════════════════════════════════════════════════════
   HERO (index.html)
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  margin-top: var(--nav-h);
}
.hero__text-side {
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: 80px 64px 80px 0;
}
.hero__text-side .container { padding: 0; }
.hero__text-inner { max-width: 520px; margin-left: auto; padding-right: 24px; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .7;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero__title em {
  font-style: italic;
  color: var(--petrol);
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 460px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__trust-strip {
  display: flex;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--border-warm);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--text-mid);
}
.hero__trust-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--petrol-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--petrol);
  font-size: .85rem;
  flex-shrink: 0;
}
.hero__trust-item strong { display: block; font-size: .92rem; color: var(--dark); font-weight: 600; }

.hero__img-side {
  position: relative;
  overflow: hidden;
}
.hero__img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 25%);
}

/* Floating badge */
.hero__badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: white;
  border-radius: 6px;
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.hero__badge-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--petrol-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--petrol);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero__badge p { font-size: .8rem; color: var(--text-mid); margin-bottom: 2px; line-height: 1.3; }
.hero__badge strong { font-size: .88rem; color: var(--dark); }

/* ══════════════════════════════════════════════════════════
   BANDA DE CONFIANZA
══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--petrol);
  padding: 18px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
}
.trust-bar__item i { color: #ffffff; font-size: .9rem; }
.trust-bar__item strong { color: white; font-weight: 600; }
.trust-bar__sep {
  width: 1px; height: 20px;
  background: rgba(255,255,255,.2);
}

/* ══════════════════════════════════════════════════════════
   SERVICIOS — Sección de inicio (lista editorial)
══════════════════════════════════════════════════════════ */
.services-intro { padding: 104px 0 88px; background: white; }
.services-intro__header { margin-bottom: 48px; }

.services-list { display: flex; flex-direction: column; gap: 0; }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 160px;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
  cursor: default;
}
.service-row:first-child { border-top: 1px solid var(--border); }
.service-row:hover { background: var(--petrol-pale); margin: 0 -28px; padding-left: 28px; padding-right: 28px; }

.service-row__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}
.service-row__content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.service-row__content p {
  font-size: .9rem;
  color: var(--text-mid);
  max-width: 420px;
  line-height: 1.65;
}
.service-row__link {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--petrol);
  white-space: nowrap;
  transition: gap .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-row:hover .service-row__link { gap: 10px; }

/* ══════════════════════════════════════════════════════════
   ABOUT PREVIEW (inicio)
══════════════════════════════════════════════════════════ */
.about-preview {
  padding: 112px 0 96px;
  background: var(--off-white);
}
.about-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-preview__img-wrap {
  position: relative;
}
.about-preview__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}
.about-preview__credential {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: 4px;
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--gold);
}
.about-preview__credential strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.about-preview__credential span {
  font-size: .78rem;
  color: var(--text-mid);
}

.about-preview__quote {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--petrol);
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  margin: 20px 0 24px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIOS
══════════════════════════════════════════════════════════ */
.testimonials {
  padding: 90px 0 100px;
  background: white;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
.testimonial-item {
  padding: 36px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--petrol);
  transition: all .3s var(--ease);
}
.testimonial-item:nth-child(2) {
  transform: translateY(16px);
}
.testimonial-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-item:nth-child(2):hover {
  transform: translateY(12px);
}
@media (max-width: 900px) {
  .testimonial-item:nth-child(2) { transform: none; }
  .testimonial-item:nth-child(2):hover { transform: translateY(-4px); }
}

.testimonial-item__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: var(--gold-warm);
  font-size: .85rem;
}
.testimonial-item__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.65;
  margin-bottom: 16px;
}
.testimonial-item__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-item__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--petrol-pale);
  border: 2px solid var(--petrol-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--petrol);
  flex-shrink: 0;
}
.testimonial-item__name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--dark);
}
.testimonial-item__meta {
  font-size: .78rem;
  color: var(--text-light);
}

/* ══════════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════════ */
.cta-band {
  padding: 72px 0;
  background: var(--petrol);
  text-align: center;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: white;
  margin-bottom: 14px;
}
.cta-band__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.cta-band__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   FORMULARIO DE CONTACTO
══════════════════════════════════════════════════════════ */
.contact-section { padding: 96px 0 112px; background: var(--cream); }
.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.contact-info__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-info__sub { font-size: 1.05rem; color: var(--text-mid); margin-bottom: 28px; line-height: 1.8; }
.contact-info__list { display: flex; flex-direction: column; gap: 18px; }
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.contact-info__icon {
  width: 40px; height: 40px;
  border-radius: 4px;
  background: var(--petrol-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--petrol);
  font-size: .9rem;
  flex-shrink: 0;
}
.contact-info__text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--petrol);
  margin-bottom: 3px;
}
.contact-info__text p, .contact-info__text a {
  font-size: .9rem;
  color: var(--dark);
  line-height: 1.5;
}
.contact-info__text a:hover { color: var(--petrol); }

/* Horarios */
.hours-table { margin-top: 28px; }
.hours-table h4 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--petrol);
  margin-bottom: 10px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--text-mid); }
.hours-row span:last-child { font-weight: 600; color: var(--dark); }

/* Form */
.lead-form {
  background: white;
  border: 1px solid var(--border);
  padding: 44px 40px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.lead-form__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.lead-form__sub { font-size: .9rem; color: var(--text-mid); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: .93rem;
  color: var(--dark);
  background: white;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--petrol);
  box-shadow: 0 0 0 3px rgba(26,74,92,.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 14px; font-size: .95rem; margin-top: 6px; }
.form-note {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}
.form-success__icon { font-size: 2.5rem; margin-bottom: 14px; color: var(--petrol); }
.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-success p { font-size: .9rem; color: var(--text-mid); }

/* ══════════════════════════════════════════════════════════
   MAPA
══════════════════════════════════════════════════════════ */
.map-section { height: 400px; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══════════════════════════════════════════════════════════
   PÁGINA: SERVICIOS
══════════════════════════════════════════════════════════ */
.services-page { padding: 100px 0 88px; background: white; }
.services-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-block {
  background: white;
  padding: 48px 44px;
  position: relative;
  transition: background .25s;
}
.service-block:hover { background: var(--petrol-pale); }
.service-block__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--petrol-soft);
  line-height: 1;
  margin-bottom: 16px;
}
.service-block h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-block p {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}
.service-block__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--petrol);
  transition: gap .2s;
}
.service-block:hover .service-block__link { gap: 10px; }

/* ══════════════════════════════════════════════════════════
   PÁGINA: TRATAMIENTO INDIVIDUAL
══════════════════════════════════════════════════════════ */
.treatment-content { padding: 100px 0 88px; background: white; }
.treatment-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}
.treatment-main h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  margin-top: 36px;
}
.treatment-main h2:first-child { margin-top: 0; }
.treatment-main p {
  font-size: .97rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}
.treatment-main ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.treatment-main ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.treatment-main ul li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

/* Proceso de tratamiento */
.treatment-process { margin: 40px 0; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.process-step:last-child { border-bottom: none; }
.process-step__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--petrol);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--petrol);
  flex-shrink: 0;
}
.process-step__content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}
.process-step__content p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 0;
}

/* FAQ Acordeón */
.faq-section {
  padding: 88px 0 96px;
  background: var(--off-white);
}
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  background: white;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: .97rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  background: none;
  border: none;
  transition: color .2s, background .2s;
}
.faq-question:hover { color: var(--petrol); background: var(--petrol-pale); }
.faq-question.open { color: var(--petrol); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .7rem;
  color: var(--petrol);
  transition: transform .25s, background .2s, border-color .2s;
}
.faq-question.open .faq-icon {
  transform: rotate(45deg);
  background: var(--petrol);
  border-color: var(--petrol);
  color: white;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-answer__inner {
  padding: 0 24px 22px;
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.85;
}

/* Sidebar tratamiento */
.treatment-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-box {
  background: var(--petrol);
  padding: 32px 28px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.sidebar-box__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}
.sidebar-box p { font-size: .88rem; color: rgba(255,255,255,.72); margin-bottom: 22px; line-height: 1.7; }
.sidebar-box .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

.sidebar-info {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 24px 22px;
  border-radius: 4px;
}
.sidebar-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--petrol);
  margin-bottom: 10px;
}
.sidebar-info ul { display: flex; flex-direction: column; gap: 10px; }
.sidebar-info ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.sidebar-info ul li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; font-size: .8rem; }

/* Imágenes de tratamiento */
.treatment-img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

/* ══════════════════════════════════════════════════════════
   PÁGINA: NOSOTROS
══════════════════════════════════════════════════════════ */
.about-page { padding: 104px 0 88px; background: white; }
.about-page__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-page__photo-wrap { position: sticky; top: calc(var(--nav-h) + 24px); }
.about-page__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}
.credential-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 20px 22px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.credential-card__label {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 4px;
}
.credential-card__value {
  font-size: .92rem;
  color: var(--dark);
  font-weight: 600;
}

.about-page__content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
  margin-top: 36px;
}
.about-page__content h2:first-child { margin-top: 0; }
.about-page__content p {
  font-size: .97rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 14px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.value-item {
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all .25s var(--ease);
}
.value-item:nth-child(even) {
  background: var(--cream);
  border-color: var(--border-warm);
}
.value-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.value-item i {
  font-size: 1.1rem;
  color: var(--petrol);
  margin-bottom: 10px;
  display: block;
}
.value-item h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.value-item p { font-size: .84rem; color: var(--text-mid); margin: 0; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   MEMBRESÍA (sección en index)
══════════════════════════════════════════════════════════ */
.membership-section { padding: 108px 0 92px; background: var(--dark); }
.membership-section__header { text-align: center; margin-bottom: 56px; }
.membership-section__header .section-title { color: white; }
.membership-section__header .section-subtitle { color: rgba(255,255,255,.6); margin: 0 auto; }
.membership-section__header .section-eyebrow { color: var(--gold-warm); }

.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.membership-card {
  padding: 44px 36px;
  border-radius: 4px;
  position: relative;
}
.membership-card--standard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}
.membership-card--gold {
  background: rgba(154,123,60,.12);
  border: 1px solid rgba(154,123,60,.4);
  transform: scale(1.03) translateY(-8px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
@media (max-width: 900px) {
  .membership-card--gold { transform: none; }
}
.membership-card__badge {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.membership-card__type {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.membership-card--gold .membership-card__type { color: var(--gold-warm); }
.membership-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}
.membership-card__price {
  margin-bottom: 28px;
}
.membership-card__price .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: white;
  line-height: 1;
}
.membership-card__price .currency {
  font-size: 1.2rem;
  color: rgba(255,255,255,.5);
  vertical-align: super;
}
.membership-card__price .period {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
}
.membership-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.membership-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.membership-card__features li i {
  color: var(--gold-warm);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: .85rem;
}
.membership-card .btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   UBICACIÓN
══════════════════════════════════════════════════════════ */
.location-section {
  padding: 104px 0 92px;
  background: var(--off-white);
}
.location-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.location-section__map {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.location-section__map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__brand-logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.footer__brand-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 270px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 36px; height: 36px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: all .2s;
}
.footer__social-link:hover {
  background: var(--petrol-mid);
  border-color: var(--petrol-mid);
  color: white;
}
.footer__col h4 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,.9);
  margin-bottom: 14px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col ul li a {
  font-size: .86rem;
  color: rgba(255,255,255,.45);
  transition: color .2s, padding-left .2s;
  display: block;
}
.footer__col ul li a:hover { color: rgba(255,255,255,.9); padding-left: 4px; }
.footer__col--contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  color: rgba(255,255,255,.45);
}
.footer__contact-icon { color: #ffffff; flex-shrink: 0; margin-top: 2px; }
.footer__bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: .8rem; color: rgba(255,255,255,.3); transition: color .2s; }
.footer__bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
}
.whatsapp-fab__btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
}
.whatsapp-fab__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}
.whatsapp-fab__tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: white;
  font-size: .8rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.whatsapp-fab__tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}
.whatsapp-fab:hover .whatsapp-fab__tooltip { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero__text-side { padding: 80px 0 60px; }
  .hero__text-side .container { padding: 0 28px; }
  .hero__text-inner { max-width: 100%; margin-left: 0; padding-right: 0; }
  .hero__img-side { height: 420px; }
  .hero__img-overlay { background: linear-gradient(to bottom, var(--cream) 0%, transparent 20%); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .treatment-grid { grid-template-columns: 1fr; }
  .treatment-sidebar { position: static; }
  .about-page__inner { grid-template-columns: 1fr; gap: 48px; }
  .about-page__photo-wrap { position: static; display: grid; grid-template-columns: 240px 1fr; gap: 20px; align-items: start; }
  .about-page__photo { aspect-ratio: 3/4; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --section-pad: 72px; }
  .hero          { margin-top: var(--nav-h); }
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .about-preview__inner,
  .contact-section__inner,
  .location-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .membership-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .services-page__grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 40px 1fr auto; }
  .service-row__num { font-size: 1.8rem; width: auto; }
}

@media (max-width: 640px) {
  :root { --section-pad: 56px; }
  .navbar__logo { height: 44px; }
  .hero__trust-strip { flex-wrap: wrap; gap: 14px; }
  .hero__badge { left: 16px; bottom: 16px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 32px 22px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .trust-bar__inner { gap: 20px; }
  .trust-bar__sep { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .about-page__photo-wrap { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 8px; }
  .service-row__num { display: none; }
  .service-row:hover { margin: 0 -12px; padding-left: 12px; padding-right: 12px; }
  .cta-band__actions { flex-direction: column; align-items: center; }
  .whatsapp-fab { bottom: 16px; right: 16px; }
}
