/* ====================================================
   DENTAL HERPAN — Redesign v6
   Font: Plus Jakarta Sans + Cormorant Garamond
   Palette: Navy #0D1B3E · Gold #C9A84C · White #F8F6F2
   ==================================================== */

/* ====== TOKENS ====== */
:root {
  --navy:       #0D1B3E;
  --navy-mid:   #152549;
  --navy-light: #1a2d5a;
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale:  #f5eed8;
  --teal:       #1B7A8A;
  --white:      #F8F6F2;
  --cream:      #F3F0E8;
  --gray-50:    #f9f9f7;
  --gray-100:   #f0ede6;
  --gray-400:   #9b9890;
  --gray-600:   #5a574f;
  --text:       #1c1a16;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --shadow-sm:  0 2px 8px rgba(13,27,62,.08);
  --shadow-md:  0 8px 30px rgba(13,27,62,.12);
  --shadow-lg:  0 20px 60px rgba(13,27,62,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-sans:  'Plus Jakarta Sans', system-ui, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
}

/* ====== RESET ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ====== CONTAINER ====== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ====== SCROLL REVEAL ====== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ====== SECTION HELPERS ====== */
.section-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-tag--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-title--light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.gold-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 20px 0 28px;
}

.gold-italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .97rem;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13,27,62,.28);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,.3);
}
.btn-wa:hover {
  background: #1fbc5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
}

.btn-calendar {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
}
.btn-calendar:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-facebook {
  background: #1877F2;
  color: #fff;
  box-shadow: 0 6px 20px rgba(24,119,242,.3);
}
.btn-facebook:hover {
  background: #0d65d9;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(24,119,242,.45);
}

.btn-nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 10px 20px;
  font-size: .9rem;
  border-radius: 50px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.btn-nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ====== NAVBAR ====== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(13,27,62,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.22);
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { height: 44px; width: 44px; border-radius: 8px; object-fit: contain; }
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
  background: rgba(255,255,255,.07);
}
.nav-link-blog { color: var(--gold-light); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 0 auto;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====== FLOATING BUTTONS ====== */
.floating-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 24px rgba(37,211,102,.42);
  z-index: 800;
  transition: var(--transition);
}
.floating-wa::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.5s infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}
.floating-wa:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.6); }

.floating-fb {
  position: fixed;
  bottom: 102px; right: 28px;
  width: 52px; height: 52px;
  background: #1877F2;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 18px rgba(24,119,242,.4);
  z-index: 800;
  transition: var(--transition);
}
.floating-fb:hover { transform: scale(1.1); background: #0d65d9; }

/* ====== HERO ====== */
/* ====== HERO MODERN ====== */
.hero-modern {
  position: relative;
  min-height: 110svh;
  display: flex;
  align-items: center;
  background: #0B1628;
  overflow: hidden;
}

/* --- Background layer --- */
.hm-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hm-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hm-orb--blue {
  width: 700px;
  height: 700px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(27,122,138,0.28) 0%, transparent 70%);
}
.hm-orb--gold {
  width: 400px;
  height: 400px;
  top: -80px;
  right: 5%;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
}
.hm-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}


/* ====== HERO: Stars + Constellation + Shooting Stars ====== */
.hero-constellation {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-star {
  position: absolute;
  border-radius: 50%;
  background: #C9A84C;
  pointer-events: none;
  z-index: 0;
  width: 2px; height: 2px;
  opacity: 0.4;
}
.hero-star--lg {
  width: 3px; height: 3px;
  opacity: 0.55;
}
.hero-star--xl {
  width: 4px; height: 4px;
  opacity: 0.45;
  animation: hero-twinkle 3.5s ease-in-out infinite;
}

@keyframes hero-twinkle {
  0%,100% { opacity: 0.2; transform: scale(1); }
  50%      { opacity: 0.85; transform: scale(1.6); }
}


/* ── Shooting Stars (proper) ── */
.shooting-star {
  position: absolute;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0), #EAD58B 70%, rgba(255,255,255,0));
  opacity: 0;
  transform: rotate(-45deg);
  animation: shooting 14s linear infinite;
  pointer-events: none;
  z-index: 1;
}
.shooting-star::before {
  content: '';
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 12px 4px rgba(234,213,139,0.9), 0 0 28px 10px rgba(201,168,76,0.5);
}
@keyframes shooting {
  0%   { opacity: 0; transform: rotate(-45deg) translateX(0); }
  4%   { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: rotate(-45deg) translateX(900px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-shooting-star,
  .hero-star--xl { animation: none; }
}

/* --- Layout --- */
.hm-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 110px;
  min-height: 110svh;
}

/* --- Content (left) --- */
.hm-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Badge */
.hm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 100px;
  background: rgba(201,168,76,0.1);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #EAD58B;
  width: fit-content;
  margin-bottom: 28px;
}
.hm-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C9A84C;
  animation: pulse-gold 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-gold {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(201,168,76,0); }
}

/* Title */
.hm-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.08;
  color: #fff;
  font-weight: 600;
  margin-bottom: 24px;
}
.hm-title em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, #EAD58B 0%, #C9A84C 50%, #a07828 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* Subtitle */
.hm-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 36px;
}

/* CTAs */
.hm-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  background: linear-gradient(135deg, #C9A84C, #b8922e);
  color: #0B1628;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(201,168,76,0.35), 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  transform: translateY(0);
  line-height: 1;
}
.hm-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(201,168,76,0.5), 0 8px 25px rgba(0,0,0,0.4);
}
.hm-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1;
}
.hm-btn-secondary:hover {
  border-color: #C9A84C;
  color: #C9A84C;
  background: rgba(201,168,76,0.08);
}

/* Trust bar */
.hm-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hm-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.75);
}
.hm-trust__item strong { color: #fff; }
.hm-trust__stars { color: #C9A84C; font-size: 13px; letter-spacing: 1px; }
.hm-trust__micro {
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  margin-bottom: 2px;
}
.hm-trust__label { display: block; }
.hm-trust__icon { color: #C9A84C; font-size: 0.95rem; }
.hm-trust__div { width: 1px; height: 28px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* --- Gallery (right) --- */
.hm-gallery {
  position: relative;
}
.hm-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.8fr 1.3fr 1fr;
  gap: 10px;
  align-items: end;
}
.hm-gcol {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hm-gimg {
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.hm-gimg:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
}

/* Column heights */
.hm-gcol--sm .hm-gimg    { height: 155px; }
.hm-gcol--md .hm-gimg    { height: 210px; }
.hm-gcol--lg .hm-gimg    { height: 460px; }
.hm-gimg--main            { border: 1px solid rgba(201,168,76,0.3); box-shadow: 0 12px 48px rgba(0,0,0,0.5), 0 0 60px rgba(201,168,76,0.1); }

/* Fade bottom */
.hm-gallery__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(transparent, #0B1628);
  pointer-events: none;
}

/* Floating badge */
.hm-fbadge {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11,22,40,0.88);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.hm-fbadge__count {
  font-family: var(--font-serif);
  font-size: 24px;
  color: #EAD58B;
  font-weight: 600;
  line-height: 1;
}
.hm-fbadge__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hm-fbadge__label {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.hm-fbadge__stars {
  color: #C9A84C;
  font-size: 11px;
  letter-spacing: 1px;
}

/* ====== MARQUEE ======
 */
.marquee-band {
  background: var(--gold);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: 100%;
}
.marquee-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-items span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 0 28px;
  white-space: nowrap;
}
.marquee-dot {
  color: var(--navy) !important;
  opacity: .5;
  font-size: .7rem !important;
  padding: 0 4px !important;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ====== STATS BAR ====== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 40px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-star {
  color: var(--gold);
  font-size: 1.4rem;
  vertical-align: middle;
  margin-left: 3px;
}
.stat-label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.stat-sep {
  width: 1px;
  height: 48px;
  background: var(--gray-100);
}

/* ====== ENDODONCIA SECTION ====== */
.endo-section {
  padding: 110px 0;
  background: var(--cream);
}
.endo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.endo-img-wrap {
  position: relative;
}
.endo-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.endo-card {
  position: absolute;
  bottom: -20px;
  right: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.endo-card-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.endo-card strong { display: block; font-size: 1rem; line-height: 1.2; }
.endo-card span { font-size: .78rem; color: var(--gold-light); letter-spacing: .05em; }

.endo-content { display: flex; flex-direction: column; }
.endo-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0;
}
.endo-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}
.endo-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}
.endo-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}
.endo-check {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ====== WHY SECTION ====== */
.why-section {
  padding: 110px 0;
  background: var(--white);
}
.why-header { text-align: center; margin-bottom: 60px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.why-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.why-card:hover h3, .why-card:hover p { color: var(--white); }
.why-card:hover .why-icon { background: rgba(201,168,76,.15); color: var(--gold-light); }

.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(13,27,62,.08), rgba(27,122,138,.1));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  transition: var(--transition);
}
.why-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
  transition: var(--transition);
}
.why-cta { text-align: center; }

/* ====== TREATMENTS ====== */
.treatments-section {
  padding: 110px 0;
  background: #0B1628 !important;
  position: relative;
  overflow: hidden;
}
.treatments-section .container {
  position: relative;
  z-index: 2;
}
.treatments-section .section-tag { color: var(--gold); }
.treatments-section .section-title { color: var(--white); }
.treatments-section .section-subtitle { color: rgba(255,255,255,.6); }

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.t-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.t-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.t-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(201,168,76,.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.t-card:hover::before { transform: scaleX(1); }

.t-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 18px;
}
.t-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.t-card p {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 20px;
}
.t-card-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.t-card:hover .t-card-link { gap: 10px; }

/* ====== CLINIC / NOSOTROS ====== */
.clinic-section {
  padding: 110px 0;
  background: var(--white);
}
.clinic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.clinic-img-wrap { position: relative; }
.clinic-logo-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.clinic-logo-block img { max-width: 260px; }
.clinic-img-deco {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.dra-photo { width: 100%; height: 100%; object-fit: cover; }

.clinic-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 4px;
}
.clinic-sub {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0;
}
.clinic-desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 14px;
}
.clinic-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
  margin-top: 8px;
}
.c-stat { display: flex; flex-direction: column; gap: 4px; }
.c-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}
.c-stat-label {
  font-size: .75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ====== REVIEWS ====== */
.reviews-section {
  padding: 110px 0;
  background: #0B1628 !important;
  position: relative;
  overflow: hidden;
}
.reviews-section .container {
  position: relative;
  z-index: 2;
}
.reviews-header { text-align: center; margin-bottom: 56px; }
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: 12px 24px;
  margin-top: 20px;
}
.rating-google-logo { height: 22px; filter: brightness(0) invert(1); opacity: .9; }
.rating-stars { color: #fbbf24; font-size: .9rem; letter-spacing: 2px; }
.rating-score {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-serif);
}
.rating-count { font-size: .85rem; color: rgba(255,255,255,.6); }

.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.reviews-track:active { cursor: grabbing; }
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  min-width: 320px;
  max-width: 340px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  flex-shrink: 0;
  transition: transform var(--transition);
  scroll-snap-align: center;
}
.review-card:hover { transform: translateY(-4px); }

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  position: relative;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-meta strong { display: block; font-size: .95rem; color: var(--navy); line-height: 1.2; }
.review-date { font-size: .75rem; color: var(--gray-400); }
.review-stars { color: #fbbf24; font-size: .78rem; letter-spacing: 2px; margin-top: 2px; }
.review-g { position: absolute; top: 0; right: 0; width: 22px; }

.review-card p {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.65;
  font-style: italic;
}

.reviews-cta { text-align: center; margin-top: 48px; }

/* ====== APPOINTMENT SECTION ====== */
.appointment-section {
  padding: 110px 0;
  background: var(--gray-50);
}
.appointment-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: visible;
  border: 1px solid var(--gray-100);
}
.appointment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--gray-100);
}
.appt-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 36px;
  font-size: 1rem;
  transition: var(--transition);
  border-right: 1px solid var(--gray-100);
  text-decoration: none;
  color: var(--text);
}
.appt-option:last-child { border-right: none; }
.appt-option:hover { background: var(--gray-50); }
.appt-option i:first-child { font-size: 1.6rem; flex-shrink: 0; }
.appt-option--wa i:first-child { color: #25D366; }
.appt-option--cal i:first-child { color: var(--navy); }
.appt-option div { flex: 1; }
.appt-option strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.appt-option span { font-size: .83rem; color: var(--gray-400); }
.appt-arrow { color: var(--gold); font-size: .85rem; }
.appointment-calendar { padding: 8px 0 0; overflow: visible; }
.appointment-calendar iframe { display: block; }

/* ====== CONTACT SECTION ====== */
.contact-section {
  display: flex;
  height: 520px;
}
.contact-map { flex: 2; }
.contact-map iframe { width: 100%; height: 100%; }

.contact-info {
  flex: 1;
  background: var(--navy);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 320px;
}
.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 38px; height: 38px;
  background: rgba(201,168,76,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item strong { display: block; font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.contact-item span, .contact-item a { font-size: .95rem; color: var(--white); line-height: 1.5; }
.contact-item a:hover { color: var(--gold-light); }
.contact-wa-btn { width: 100%; justify-content: center; }

/* ====== FAQ ====== */
.faq-section {
  padding: 110px 0;
  background: var(--cream);
}
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(201,168,76,.12); }
.faq-item[open] { border-color: var(--gold); box-shadow: 0 8px 30px rgba(13,27,62,.08); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  flex: 1;
}
.faq-chevron {
  color: var(--gold);
  font-size: .9rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item p {
  padding: 0 28px 22px;
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ====== SOCIAL SECTION ====== */
.social-section {
  padding: 110px 0;
  background: #0B1628 !important;
  position: relative;
  overflow: hidden;
}
.social-section .container {
  position: relative;
  z-index: 2;
}
.social-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.social-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.facebook-blue { color: #60a5fa; }
.social-desc { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 32px; }

.fb-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.fb-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-100);
}
.fb-avatar-wrap {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.fb-info { flex: 1; }
.fb-info strong { display: block; font-size: .9rem; color: var(--text); font-weight: 700; }
.fb-info span { font-size: .78rem; color: var(--gray-400); }
.fb-follow {
  background: #e7f3ff;
  color: #1877F2;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 700;
}
.fb-follow:hover { background: #cce0ff; }
.fb-card-body { padding: 18px 20px; }
.fb-card-body p { font-size: .88rem; color: var(--gray-600); line-height: 1.7; }
.fb-card-foot {
  padding: 14px 20px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: .82rem;
}

/* ====== FOOTER ====== */
.footer {
  background: #060e20;
  color: var(--white);
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img { height: 52px; width: 52px; border-radius: 8px; object-fit: contain; }
.footer-brand span {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-light);
  font-weight: 700;
}
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: rgba(255,255,255,.55); font-size: .85rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--gold-light); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); }
.footer-legal {
  font-size: .72rem;
  color: rgba(255,255,255,.25);
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 18px;
  width: 100%;
}

/* ====== EXIT POPUP ====== */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,12,28,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.exit-overlay.show { opacity: 1; visibility: visible; }
.exit-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  transform: translateY(24px) scale(.96);
  transition: transform .5s cubic-bezier(.175,.885,.32,1.275);
  position: relative;
}
.exit-overlay.show .exit-box { transform: none; }
.exit-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  color: var(--white);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background var(--transition);
}
.exit-close:hover { background: rgba(255,255,255,.4); }
.exit-photo {
  background: var(--navy);
  padding: 32px 20px;
  text-align: center;
}
.exit-photo img {
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.exit-body { padding: 28px 30px 32px; text-align: center; }
.exit-body h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.exit-body p { font-size: 1rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 22px; }
.exit-wa-btn { width: 100%; justify-content: center; }

/* ====== PARTICLES (decorative dots) ====== */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0%   { transform: translateY(0) rotate(0deg); opacity: .6; }
  100% { transform: translateY(-120vh) rotate(720deg); opacity: 0; }
}

/* ====================================================
   RESPONSIVE
   ==================================================== */

/* ---- Tablet 992px ---- */
@media (max-width: 992px) {
  /* hero-modern tablet */
  .hm-inner {
    grid-template-columns: 1fr;
    padding-top: 100px;
    padding-bottom: 48px;
    gap: 40px;
    text-align: center;
    min-height: auto;
  }
  .hm-content { align-items: center; }
  .hm-badge { margin: 0 auto; }
  .hm-title { font-size: clamp(2.6rem, 7vw, 3.4rem); }
  .hm-subtitle {
    margin: 0 auto;
    text-align: center;
    font-size: 1.08rem;
    max-width: 520px;
  }
  .hm-ctas { justify-content: center; }
  .hm-trust { justify-content: center; text-align: center; }
  .hm-gallery {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }
  .hm-gallery__grid {
    grid-template-columns: 1.3fr 1.8fr 1.3fr;
    gap: 12px;
    margin: 0 auto;
  }
  .hm-gcol--sm { display: none; }
  .hm-gcol--md .hm-gimg { height: clamp(180px, 24vw, 230px); }
  .hm-gcol--lg .hm-gimg { height: clamp(360px, 48vw, 460px); }

  .endo-grid { grid-template-columns: 1fr; gap: 56px; }
  .endo-img-wrap { max-width: 420px; margin: 0 auto; }
  .endo-card { right: 10px; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }

  .clinic-grid { grid-template-columns: 1fr; gap: 56px; }
  .clinic-img-wrap { max-width: 420px; margin: 0 auto; }

  .stats-grid { gap: 0; }
  .stat-item { padding: 12px 28px; }

  .social-grid { grid-template-columns: 1fr; gap: 48px; }
  .social-content { text-align: center; }

  .contact-section { flex-direction: column; height: auto; }
  .contact-map { height: 300px; }
  .contact-info { min-width: unset; }

  .navbar { padding: 12px 0; }
  .nav-container { gap: 10px; }
  .nav-logo img { height: 36px; width: 36px; }
  .nav-logo-text { font-size: 1.05rem; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5,12,28,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-left: 0;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 800;
    visibility: hidden;
  }
  .nav-links.open {
    transform: none;
    visibility: visible;
  }
  .nav-link { font-size: 1.2rem; padding: 12px 32px; }
  .nav-toggle {
    display: flex;
    z-index: 900;
    margin-left: auto;
  }
  .btn-nav-cta { display: none; }
}

/* ---- Mobile 768px ---- */
@media (max-width: 768px) {
  .container { padding: 0 16px; }

  /* hero-modern mobile — un poco más grande, centrado */
  .hero-modern { min-height: auto; }
  .hm-inner {
    gap: 40px;
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: auto;
    text-align: center;
  }
  .hm-content {
    align-items: center;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
  }
  .hm-badge {
    margin: 0 auto 26px;
    font-size: 12px;
    padding: 10px 20px;
  }
  .hm-title {
    font-size: clamp(2.9rem, 13vw, 3.65rem);
    margin-bottom: 22px;
  }
  .hm-subtitle {
    font-size: 1.15rem;
    line-height: 1.65;
    max-width: 100%;
    margin: 0 auto 34px;
    text-align: center;
  }
  .hm-subtitle br { display: none; }
  .hm-ctas {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 14px;
    margin: 0 auto 34px;
  }
  .hm-btn-primary,
  .hm-btn-secondary {
    flex: 1 1 220px;
    max-width: 100%;
    justify-content: center;
    padding: 17px 28px;
    font-size: 17px;
  }
  .hm-trust {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 24px;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
  }
  .hm-trust__div { display: block; height: 32px; }
  .hm-trust__item {
    font-size: 1rem;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    justify-content: center;
    text-align: center;
  }
  .hm-trust__item > div { text-align: center; }
  .hm-trust__micro { font-size: 10px; }
  .hm-trust__stars { font-size: 15px; }

  .hm-gallery {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .hm-gallery__grid {
    grid-template-columns: 1.3fr 1.8fr 1.3fr;
    gap: 10px;
    margin: 0 auto;
  }
  .hm-gcol--sm { display: none; }
  .hm-gcol--md { display: flex !important; }
  .hm-gcol--md .hm-gimg { height: clamp(160px, 22vw, 195px); }
  .hm-gcol--lg .hm-gimg { height: clamp(320px, 44vw, 390px); }
  .hm-fbadge {
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    padding: 13px 22px;
    gap: 12px;
  }
  .hm-fbadge__count { font-size: 1.4rem; }
  .hm-gallery__fade { height: 100px; }

  .floating-wa { bottom: 20px; right: 16px; width: 54px; height: 54px; }
  .floating-fb { bottom: 84px; right: 16px; width: 44px; height: 44px; }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-sep { display: none; }
  .stat-item {
    padding: 24px 16px;
    border: 1px solid var(--gray-100);
  }
  .stat-num { font-size: 1.9rem; }

  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-card { padding: 24px 20px; }

  .treatments-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .t-card { padding: 24px 20px; }

  .endo-grid { gap: 40px; }
  .endo-card { right: 0; bottom: -14px; }
  .endo-title { font-size: 1.8rem; }

  .clinic-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 32px;
    border-top: 1px solid var(--gray-100);
    padding-top: 24px;
  }
  .c-stat {
    align-items: center;
    text-align: center;
    flex: 1 1 120px;
  }
  .clinic-img-deco { width: 130px; height: 160px; bottom: -20px; right: -16px; }

  .appointment-options { grid-template-columns: 1fr; }
  .appt-option { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .appt-option:last-child { border-bottom: none; }
  .appt-option { padding: 22px 24px; }

  .contact-info { padding: 36px 28px; }

  .faq-item summary { padding: 18px 20px; }
  .faq-item p { padding: 0 20px 18px; }

  .footer-nav { gap: 14px; }
}

/* ---- Small mobile 480px ---- */
@media (max-width: 480px) {
  .container { padding: 0 18px; }

  .hm-title { font-size: clamp(2.65rem, 12vw, 3.2rem); }
  .hm-inner { gap: 32px; padding-top: 94px; }
  .hm-subtitle { font-size: 1.08rem; }
  .hm-ctas {
    flex-direction: column;
    align-items: center;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .hm-btn-primary,
  .hm-btn-secondary { flex: none; width: 100%; }
  .hm-trust {
    flex-direction: column;
    gap: 16px;
    max-width: 320px;
  }
  .hm-trust__div { display: none; }
  .hm-gcol--md .hm-gimg { height: clamp(165px, 32vw, 190px); }
  .hm-gcol--lg .hm-gimg { height: clamp(270px, 58vw, 340px); }

  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 1.85rem; }
  .why-grid { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: 1fr; }

  .btn-wa { width: 100%; justify-content: center; text-align: center; }
  .rating-badge { padding: 10px 18px; font-size: 0.9rem; flex-wrap: wrap; justify-content: center; }

  .reviews-track { gap: 14px; }
  .review-card { min-width: min(280px, 88vw); padding: 22px; }

  .contact-info { padding: 28px 20px; }
  .footer-nav { flex-direction: column; align-items: center; gap: 10px; }
}

/* ====== REDUCED MOTION ====== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .floating-wa::before { display: none; }
}
