/* =============================================
   DRA. MARIANA MOLINA — Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* Tokens */
:root {
  --white:       #FFFFFF;
  --nude:        #F5EDE8;
  --nude-dark:   #EAD9D0;
  --gold:        #C9A96E;
  --gold-light:  #E8D5B0;
  --carbon:      #2C2C2C;
  --mid:         #6B6360;
  --light-bg:    #F8F6F4;
  --border:      #E8E0DA;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w: 1100px;
  --section-gap: 96px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--carbon);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--carbon);
}
.nav__brand span { color: var(--gold); }
.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: #b8924f !important; color: var(--white) !important; }

/* Dropdown */
.nav__item { position: relative; }
/* Invisible bridge fills the gap so mouse doesn't lose hover */
.nav__item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 20px;
  display: none;
}
.nav__has-dropdown:hover::after { display: block; }
.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 220px;
  z-index: 200;
  padding: 6px 0;
}
/* Arrow on top of dropdown */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  width: 9px; height: 9px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}
.nav__has-dropdown:hover .nav__dropdown { display: block; }
.nav__dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 0.83rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  color: var(--carbon) !important;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav__dropdown a:hover { background: var(--nude); color: var(--gold) !important; }
.nav__has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.65rem;
  opacity: 0.55;
}

/* Hamburger */
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--carbon); margin: 5px 0;
  transition: all 0.3s;
  flex-shrink: 0;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--nude);
  overflow: hidden;
  padding: 80px 24px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  opacity: 0.45;
  pointer-events: none;
}
/* Signature diagonal line */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold) 40%, transparent);
  opacity: 0.18;
  transform: rotate(12deg) translateX(-200px);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--carbon);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__desc {
  font-size: 1.02rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 460px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn--primary { background: var(--gold); color: var(--white); }
.btn--primary:hover { background: #b8924f; }
.btn--outline { background: transparent; color: var(--carbon); border: 1.5px solid var(--carbon); }
.btn--outline:hover { background: var(--carbon); color: var(--white); }
.btn--ghost { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn--ghost:hover { background: var(--gold); color: var(--white); }

/* Hero image placeholder */
.hero__image {
  border-radius: 62% 38% 55% 45% / 55% 48% 52% 45%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1000/869;
  background: var(--nude-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image img,
.hero__image svg,
.prp-image svg {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero__image-placeholder {
  text-align: center;
  color: var(--mid);
  font-size: 0.85rem;
}
.hero__image-placeholder .icon { font-size: 2.5rem; margin-bottom: 8px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--carbon);
  padding: 20px 24px;
}
.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--nude);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.trust-item__icon { color: var(--gold); font-size: 1rem; }

/* ── SECTIONS ── */
.section { padding: var(--section-gap) 24px; }
.section--light { background: var(--light-bg); }
.section--nude { background: var(--nude); }

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--carbon);
  margin-bottom: 20px;
}
.section__title em { font-style: italic; color: var(--gold); }
.section__subtitle {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 56px;
}

/* ── TWO COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

/* ── WHAT IS PRP ── */
.prp-image {
  border-radius: 4px;
  aspect-ratio: 3/4;
  background: var(--nude-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  font-size: 0.85rem;
  text-align: center;
}
.prp-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step__num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
}
.step__content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.step__content p { font-size: 0.9rem; color: var(--mid); line-height: 1.65; }

/* ── BENEFITS GRID ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.benefit-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.2s;
}
.benefit-card:hover { background: var(--nude); }
.benefit-card__icon { font-size: 1.6rem; margin-bottom: 16px; }
.benefit-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.benefit-card__text { font-size: 0.88rem; color: var(--mid); line-height: 1.65; }

/* ── ABOUT ── */
.about-photo {
  border-radius: 4px;
  aspect-ratio: 3/4;
  background: var(--nude-dark);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--mid); font-size: 0.85rem; text-align: center;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about__quote {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 300;
  color: var(--carbon);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}
.about__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.about__list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.92rem; color: var(--mid);
}
.about__list li::before {
  content: '—'; color: var(--gold); flex-shrink: 0; margin-top: 1px;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--carbon);
  text-align: left;
  gap: 16px;
}
.faq-question__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: transform 0.3s;
}
.faq-item.open .faq-question__icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 22px 0;
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 720px;
}
.faq-item.open .faq-answer { display: block; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  aspect-ratio: 1;
  background: var(--nude-dark);
  border-radius: 3px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--mid); font-size: 0.78rem; text-align: center;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--carbon);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band__title em { font-style: italic; color: var(--gold-light); }
.cta-band__text {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 36px;
}
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn--white { background: var(--white); color: var(--carbon); }
.btn--white:hover { background: var(--nude); }

/* ── FOOTER ── */
.footer {
  background: #1E1C1A;
  color: rgba(255,255,255,0.55);
  padding: 56px 24px 32px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__brand span { color: var(--gold); }
.footer__tagline { font-size: 0.85rem; line-height: 1.65; max-width: 280px; }
.footer__heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 0.85rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__legal { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--light-bg);
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--mid);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb__inner a { color: var(--gold); }
.breadcrumb__inner a:hover { text-decoration: underline; }
.breadcrumb__sep { opacity: 0.4; }

/* ── PAGE HERO (secondary pages) ── */
.page-hero {
  background: var(--nude);
  padding: 72px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 2px;
  background: var(--gold);
}
.page-hero__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: var(--carbon);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero__title em { font-style: italic; color: var(--gold); }
.page-hero__subtitle {
  font-size: 1rem;
  color: var(--mid);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.page-hero__image {
  max-width: 460px;
  aspect-ratio: 1000/869;
  margin: 40px auto 0;
  border-radius: 62% 38% 55% 45% / 55% 48% 52% 45%;
  overflow: hidden;
  background: var(--nude-dark);
}
.page-hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .page-hero__image { max-width: 300px; margin-top: 28px; }
}

/* ── BLOG ── */
.blog-content {
  max-width: 740px;
  margin: 0 auto;
}
.blog-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--carbon);
  margin: 48px 0 16px;
}
.blog-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--carbon);
  margin: 32px 0 12px;
}
.blog-content p {
  font-size: 1rem;
  color: #3D3A38;
  line-height: 1.85;
  margin-bottom: 20px;
}
.blog-content ul, .blog-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.blog-content li {
  font-size: 0.97rem;
  color: #3D3A38;
  line-height: 1.75;
  margin-bottom: 6px;
}
.blog-content strong { color: var(--carbon); font-weight: 600; }
.blog-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.blog-meta__item {
  font-size: 0.8rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-cta-inline {
  background: var(--nude);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 4px 4px 0;
  margin: 40px 0;
}
.blog-cta-inline p { margin: 0 0 14px; font-size: 0.95rem; }

/* ── COMPARISON TABLE ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 0.9rem;
}
.compare-table th {
  background: var(--carbon);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.compare-table th:first-child { background: var(--carbon); }
.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--mid);
  vertical-align: top;
}
.compare-table tr:hover td { background: var(--nude); }
.compare-table td:first-child { color: var(--carbon); font-weight: 500; }
.tag-prp { color: var(--gold); font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero__inner, .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reverse { direction: ltr; }
  .hero__image { aspect-ratio: 16/9; max-height: 320px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .trust-bar__inner { gap: 24px; }
  :root { --section-gap: 64px; }
}
@media (max-width: 600px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav__toggle { display: block; }
  .benefits-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  :root { --section-gap: 56px; }
  .hero { min-height: auto; padding: 56px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ── TREATMENTS SHOWCASE (scroll highlight) ── */
.treatments-showcase {
  padding: var(--section-gap) 0;
  background: var(--carbon);
  overflow: hidden;
}
.treatments-showcase__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.treatments-showcase__header {
  text-align: center;
  margin-bottom: 72px;
}
.treatments-showcase__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.treatments-showcase__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.18;
}
.treatments-showcase__title em { font-style: italic; color: var(--gold-light); }

.treatment-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0;
  opacity: 0.3;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.treatment-row.active {
  opacity: 1;
  transform: translateY(0);
}
.treatment-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.treatment-row__left {
  padding-right: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.treatment-row__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,169,110,0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.treatment-row__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
  transition: color 0.5s;
}
.treatment-row.active .treatment-row__name { color: var(--gold-light); }
.treatment-row__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 2px;
  padding: 4px 12px;
  margin-bottom: 20px;
  width: fit-content;
}
.treatment-row__desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  max-width: 380px;
  transition: color 0.5s;
}
.treatment-row.active .treatment-row__desc { color: rgba(255,255,255,0.75); }
.treatment-row__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.treatment-row__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.treatment-row__benefits li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.55;
  transition: color 0.5s;
}
.treatment-row.active .treatment-row__benefits li { color: rgba(255,255,255,0.78); }
.treatment-row__benefits li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.5s;
}
.treatment-row.active .treatment-row__benefits li::before { opacity: 1; }
.treatment-row__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.4s;
  margin-top: 20px;
  text-decoration: none;
}
.treatment-row.active .treatment-row__link { opacity: 1; }
.treatment-row__link:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .treatment-row { grid-template-columns: 1fr; gap: 24px; }
  .treatment-row__left { padding-right: 0; }
  .nav__dropdown { left: 0; transform: none; }
  .nav__dropdown::before { left: 24px; transform: rotate(45deg); }
}

/* ═══════════════════════════════════════════════
   MOBILE OPTIMIZATION — Breakpoints completos
   ═══════════════════════════════════════════════ */

/* ── TABLET (max 900px) ── */
@media (max-width: 900px) {

  /* Nav dropdown mobile */
  .nav__dropdown { left: 0; transform: none; min-width: 180px; }
  .nav__dropdown::before { left: 20px; transform: rotate(45deg); }

  /* FAQ layout */
  .faq-layout { grid-template-columns: 1fr !important; gap: 32px !important; }

  /* Blog layout sidebar */
  .blog-layout { grid-template-columns: 1fr !important; }
  .blog-sidebar { position: static !important; }

  /* Treatment rows */
  .treatment-row { grid-template-columns: 1fr; gap: 20px; }
  .treatment-row__left { padding-right: 0; }
  .treatment-row { opacity: 1 !important; transform: none !important; }

  /* Treatments grid on index */
  .treatments-grid { grid-template-columns: 1fr 1fr !important; }

  /* Compare table scroll */
  .compare-table { font-size: 0.82rem; }
  .compare-table th, .compare-table td { padding: 10px 14px; }

  /* Tip grid in blog */
  .tip-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ── MOBILE (max 600px) ── */
@media (max-width: 600px) {

  /* ── Variables ── */
  :root {
    --section-gap: 48px;
    --max-w: 100%;
  }

  /* ── Nav ── */
  .nav__inner { padding: 0 16px; height: 60px; }
  .nav__brand { font-size: 1rem; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 24px 20px;
    gap: 8px;
    overflow-y: auto;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  .nav__links.open li { border-bottom: 1px solid var(--border); }
  .nav__links.open a {
    display: block;
    padding: 14px 0;
    font-size: 1rem !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    color: var(--carbon) !important;
  }
  .nav__links.open .nav__cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 14px 20px !important;
    border-radius: 2px;
    text-align: center;
    margin-top: 8px;
  }
  .nav__toggle { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 32px; height: 32px; }
  .nav { backdrop-filter: none; }
  .nav__has-dropdown > a::after { content: ' ›'; }
  .nav__dropdown {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 0 0 16px !important;
    display: none;
    background: var(--light-bg);
  }
  .nav__item.open .nav__dropdown { display: block; }
  .nav__dropdown::before { display: none; }
  .nav__item.open > a::after { content: ' ↓'; }

  /* ── Hero ── */
  .hero {
    min-height: auto;
    padding: 48px 20px 56px;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero__image {
    order: -1;
    aspect-ratio: 1000/869;
    max-height: 320px;
    border-radius: 48% 52% 58% 42% / 50% 45% 55% 50%;
  }
  .hero__eyebrow { font-size: 0.65rem; }
  .hero__title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero__desc { font-size: 0.93rem; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* ── Trust bar ── */
  .trust-bar__inner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 4px 0;
  }
  .trust-item { font-size: 0.78rem; }

  /* ── Sections ── */
  .section { padding: var(--section-gap) 16px; }
  .section__inner { padding: 0; }
  .section__title { font-size: clamp(1.8rem, 7vw, 2.4rem); margin-bottom: 14px; }
  .section__subtitle { font-size: 0.9rem; margin-bottom: 36px; }

  /* ── Two col ── */
  .two-col { grid-template-columns: 1fr !important; gap: 28px !important; }
  .two-col--reverse { direction: ltr !important; }
  .prp-image, .about-photo {
    aspect-ratio: 4/3;
    max-height: 260px;
  }

  /* ── Benefits grid ── */
  .benefits-grid { grid-template-columns: 1fr !important; gap: 2px; }
  .benefit-card { padding: 24px 20px; }
  .benefit-card__title { font-size: 1rem; }

  /* ── Treatments showcase ── */
  .treatments-showcase { padding: 48px 0; }
  .treatments-showcase__header { margin-bottom: 40px; padding: 0 16px; }
  .treatments-showcase__inner { padding: 0 16px; }
  .treatment-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
    opacity: 1 !important;
    transform: none !important;
  }
  .treatment-row__left { padding-right: 0; }
  .treatment-row__num { font-size: 2.2rem; margin-bottom: 6px; }
  .treatment-row__name { font-size: 1.5rem; margin-bottom: 10px; }
  .treatment-row__desc { font-size: 0.87rem; max-width: 100%; }
  .treatment-row__link { opacity: 1 !important; margin-top: 14px; }
  .treatment-row__benefits { gap: 8px; }
  .treatment-row__benefits li { font-size: 0.83rem; color: rgba(255,255,255,0.7) !important; }
  .treatment-row__benefits li::before { opacity: 0.8 !important; }

  /* ── Treatments grid (index) ── */
  .treatments-grid { grid-template-columns: 1fr !important; gap: 10px !important; }

  /* ── About ── */
  .about__quote { font-size: 1.2rem; padding-left: 18px; }
  .about__list li { font-size: 0.88rem; }

  /* ── Steps ── */
  .steps { gap: 24px; }
  .step__content h4 { font-size: 1rem; }
  .step__content p { font-size: 0.85rem; }

  /* ── FAQ ── */
  .faq-layout { grid-template-columns: 1fr !important; gap: 24px !important; }
  .faq-question { font-size: 0.98rem; padding: 18px 0; }
  .faq-answer { font-size: 0.87rem; }

  /* ── CTA Band ── */
  .cta-band { padding: 56px 20px; }
  .cta-band__title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .cta-band__actions { flex-direction: column; align-items: center; }
  .cta-band__actions .btn { width: 100%; justify-content: center; max-width: 320px; }

  /* ── Footer ── */
  .footer { padding: 40px 20px 28px; }
  .footer__top { grid-template-columns: 1fr !important; gap: 28px; }
  .footer__brand { font-size: 1rem; }
  .footer__tagline { font-size: 0.82rem; }
  .footer__bottom { flex-direction: column; gap: 6px; font-size: 0.72rem; }
  .footer__legal { font-size: 0.68rem; }

  /* ── WhatsApp float ── */
  .whatsapp-float { bottom: 20px; right: 16px; width: 50px; height: 50px; font-size: 1.3rem; }

  /* ── Breadcrumb ── */
  .breadcrumb { padding: 10px 16px; }
  .breadcrumb__inner { font-size: 0.73rem; }

  /* ── Page hero ── */
  .page-hero { padding: 48px 20px 40px; }
  .page-hero__title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .page-hero__subtitle { font-size: 0.9rem; }

  /* ── Indicaciones grid ── */
  div[style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Blog ── */
  .blog-layout { grid-template-columns: 1fr !important; gap: 32px !important; }
  .blog-sidebar { position: static !important; }
  .blog-content h2 { font-size: 1.45rem; }
  .blog-content h3 { font-size: 1.15rem; }
  .blog-content p, .blog-content li { font-size: 0.93rem; }
  .blog-meta { gap: 12px; }
  .blog-meta__item { font-size: 0.75rem; }

  /* ── Tip grid ── */
  .tip-grid { grid-template-columns: 1fr !important; }

  /* ── Compare table ── */
  .compare-table { font-size: 0.78rem; display: block; overflow-x: auto; }
  .compare-table th, .compare-table td { padding: 10px 12px; white-space: nowrap; }

  /* ── Blog index grid ── */
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Inline grids in treatment pages ── */
  .g2-inline { grid-template-columns: 1fr !important; }
}

/* ── SMALL PHONES (max 380px) ── */
@media (max-width: 380px) {
  .hero__title { font-size: 2rem; }
  .section__title { font-size: 1.7rem; }
  .btn { font-size: 0.75rem; padding: 12px 20px; }
}

/* ── Touch improvements ── */
@media (hover: none) {
  .benefit-card:hover { background: var(--white); }
  .nav__item:hover .nav__dropdown { display: none; }
  .nav__item.open .nav__dropdown { display: block; }
  .treatment-row { opacity: 1 !important; transform: none !important; }
}
