/* ============================================
   PALLADIUM CLÍNICA DE ESTÉTICA
   Design System — Premium Aesthetic
   Palette: Rose Gold / Ivory / Deep Rose
============================================ */

@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=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---- Tokens ---- */
:root {
  --c-rose:        #C4768A;   /* primary accent — dusty rose */
  --c-rose-dark:   #A05570;   /* hover state */
  --c-gold:        #C8A97E;   /* secondary accent — warm gold */
  --c-ivory:       #FAF8F5;   /* background light */
  --c-ivory-2:     #F2EDE7;   /* section tint */
  --c-charcoal:    #1E1A1A;   /* main text */
  --c-mid:         #6B5F5F;   /* muted text */
  --c-line:        #E4DDD6;   /* dividers */
  --c-white:       #FFFFFF;
  --c-wa-green:    #25D366;

  --f-display:  'Cormorant Garamond', Georgia, serif;
  --f-body:     'Montserrat', 'Helvetica Neue', sans-serif;

  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  20px;
  --radius-pill: 100px;

  --shadow-card: 0 4px 30px rgba(30,26,26,.07);
  --shadow-btn:  0 6px 20px rgba(196,118,138,.30);

  --max-w: 1180px;
  --nav-h: 72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--c-ivory);
  color: var(--c-charcoal);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--f-body); }

/* ---- Utility ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section   { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-gold   { color: var(--c-gold); }
.text-rose   { color: var(--c-rose); }
.text-mid    { color: var(--c-mid); }

.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-rose);
  display: block;
  margin-bottom: 12px;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: 20px; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-rose);
  color: var(--c-white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--c-rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(196,118,138,.40);
}

.btn-secondary {
  background: transparent;
  color: var(--c-rose);
  border: 1.5px solid var(--c-rose);
}
.btn-secondary:hover {
  background: var(--c-rose);
  color: var(--c-white);
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--c-wa-green);
  color: var(--c-white);
  box-shadow: 0 6px 20px rgba(37,211,102,.30);
}
.btn-wa:hover {
  background: #1ebe5e;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--c-gold);
  color: var(--c-white);
}
.btn-gold:hover {
  background: #b8924a;
  transform: translateY(-2px);
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(250,248,245,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(30,26,26,.08); }

.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--c-charcoal);
  letter-spacing: .04em;
}
.nav-logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-rose);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.nav-links > li > button {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--c-charcoal);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover {
  color: var(--c-rose);
  background: rgba(196,118,138,.06);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(30,26,26,.12);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s;
  transform: translateX(-50%) translateY(-6px);
}
.nav-links > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 6px;
  color: var(--c-charcoal);
  transition: background .15s, color .15s;
}
.dropdown-menu a:hover { background: var(--c-ivory-2); color: var(--c-rose); }
.dropdown-divider { height: 1px; background: var(--c-line); margin: 4px 0; }

.nav-cta { margin-left: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-charcoal);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-white);
  z-index: 999;
  padding: 90px 32px 40px;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 18px;
  font-family: var(--f-display);
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-charcoal);
}
.mobile-nav a:hover { color: var(--c-rose); }
.mobile-nav-section { margin-top: 16px; }
.mobile-nav-section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-rose);
  margin-bottom: 8px;
  margin-top: 16px;
}
.mobile-nav-section a {
  font-size: 15px;
  font-family: var(--f-body);
  padding: 10px 0;
}

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, var(--c-ivory) 55%, var(--c-ivory-2) 55%);
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 40px;
  max-width: 640px;
  margin-left: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,118,138,.1);
  border: 1px solid rgba(196,118,138,.25);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-rose);
  margin-bottom: 24px;
  width: fit-content;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-rose);
}

.hero-title {
  font-size: clamp(42px, 5.5vw, 68px);
  margin-bottom: 8px;
  color: var(--c-charcoal);
}
.hero-title em {
  font-style: italic;
  color: var(--c-rose);
}

.hero-tagline {
  font-family: var(--f-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  font-weight: 300;
  color: var(--c-mid);
  margin-bottom: 24px;
}

.hero-text {
  font-size: 15px;
  color: var(--c-mid);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--c-line);
}
.hero-stat-num {
  font-family: var(--f-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--c-charcoal);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-mid);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.hero-img-frame {
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--c-ivory-2), #e8d9d9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-placeholder {
  font-family: var(--f-display);
  font-size: 80px;
  color: var(--c-rose);
  opacity: .3;
}

.hero-float-card {
  position: absolute;
  background: var(--c-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 16px 20px;
  min-width: 180px;
}
.hero-float-card.card-1 { bottom: 80px; left: -20px; }
.hero-float-card.card-2 { top: 80px; right: -20px; }
.hero-float-stars { color: #f5c842; font-size: 13px; margin-bottom: 4px; }
.hero-float-text { font-size: 12px; font-weight: 600; color: var(--c-charcoal); }
.hero-float-sub  { font-size: 10px; color: var(--c-mid); }

/* ============================================
   PROMO BANNER
============================================ */
.promo-banner {
  background: var(--c-charcoal);
  padding: 20px 0;
  overflow: hidden;
}
.promo-ticker {
  display: flex;
  gap: 60px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.promo-ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-white);
}
.promo-ticker-item span {
  color: var(--c-gold);
}
.promo-ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-rose);
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADER (reusable)
============================================ */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header p {
  font-size: 16px;
  color: var(--c-mid);
  max-width: 560px;
  margin-top: 16px;
}
.section-header.center p { margin: 16px auto 0; }

.divider-line {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: var(--c-rose);
  border-radius: 2px;
  margin: 16px 0;
  vertical-align: middle;
}
.section-header.center .divider-line { display: block; margin: 16px auto; }

/* ============================================
   TREATMENTS GRID
============================================ */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.treatment-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(30,26,26,.12);
}

.treatment-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--c-ivory-2) 0%, #e0c9c9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.treatment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.treatment-card:hover .treatment-card-img img {
  transform: scale(1.04);
}
.treatment-card-img-icon {
  font-size: 48px;
  opacity: .25;
}

.treatment-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--c-rose);
  color: var(--c-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.treatment-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.treatment-card-body h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.treatment-card-body p {
  font-size: 13.5px;
  color: var(--c-mid);
  flex: 1;
  margin-bottom: 20px;
}
.treatment-card-price {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--c-rose);
  margin-bottom: 16px;
  font-style: italic;
}

/* ============================================
   WHY PALLADIUM
============================================ */
.why-section { background: var(--c-charcoal); }
.why-section .eyebrow { color: var(--c-gold); }
.why-section h2 { color: var(--c-white); }
.why-section .section-header p { color: rgba(255,255,255,.55); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 40px 32px;
  transition: background .3s;
}
.why-card:hover { background: rgba(196,118,138,.1); }
.why-card-icon {
  width: 52px; height: 52px;
  background: rgba(196,118,138,.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}
.why-card h4 {
  color: var(--c-white);
  font-size: 22px;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
}

/* ============================================
   PROMO / PRICING SECTION
============================================ */
.promo-section { background: var(--c-ivory-2); }

.promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.promo-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
}
.promo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-rose), var(--c-gold));
}
.promo-card-highlight {
  border-color: var(--c-rose);
  box-shadow: 0 8px 40px rgba(196,118,138,.16);
}
.promo-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--c-rose);
  color: var(--c-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.promo-card h3 { font-size: 22px; margin-bottom: 8px; }
.promo-card-desc { font-size: 13px; color: var(--c-mid); margin-bottom: 24px; }
.promo-price-wrap { margin-bottom: 28px; }
.promo-price-from { font-size: 11px; color: var(--c-mid); text-transform: uppercase; letter-spacing: .06em; }
.promo-price-main {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--c-charcoal);
  line-height: 1;
}
.promo-price-main sup { font-size: 20px; vertical-align: top; margin-top: 8px; display: inline-block; }
.promo-price-suffix { font-size: 13px; color: var(--c-mid); margin-top: 4px; }
.promo-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.promo-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--c-charcoal);
}
.promo-feature-check {
  width: 18px; height: 18px;
  background: rgba(196,118,138,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--c-rose);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section { background: var(--c-white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--c-ivory);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
}
.testimonial-stars { color: #f5c842; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 14px;
  color: var(--c-charcoal);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-rose), var(--c-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--c-white);
  flex-shrink: 0;
}
.testimonial-name { font-size: 13px; font-weight: 700; }
.testimonial-detail {
  font-size: 11px;
  color: var(--c-rose);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================================
   LOCATIONS / UNIDADES
============================================ */
.locations-section { background: var(--c-ivory-2); }

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.location-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.location-card-map {
  height: 240px;
  background: linear-gradient(135deg, #d4c5b0, #c8a97e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(255,255,255,.5);
}
.location-card-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.location-card-body { padding: 28px 32px; }
.location-card-tag {
  display: inline-block;
  background: var(--c-ivory-2);
  color: var(--c-rose);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.location-card-body h3 { font-size: 22px; margin-bottom: 16px; }
.location-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: var(--c-charcoal);
}
.location-info-icon {
  width: 32px; height: 32px;
  background: var(--c-ivory-2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.location-info-label { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--c-mid); }

/* ============================================
   CTA BAND
============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--c-rose) 0%, #9a4a62 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-band .eyebrow { color: rgba(255,255,255,.7); }
.cta-band h2 { color: var(--c-white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ============================================
   FOOTER
============================================ */
.footer {
  background: #141010;
  color: rgba(255,255,255,.55);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .nav-logo-name { color: var(--c-white); font-size: 26px; }
.footer-brand .nav-logo-sub { color: var(--c-rose); }
.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  margin: 20px 0 24px;
}

.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,.5);
  transition: background .2s, color .2s;
}
.footer-social-btn:hover { background: var(--c-rose); color: var(--c-white); }

.footer-col h4 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  padding: 5px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--c-rose); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}
.footer-contact-icon {
  font-size: 16px;
  width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--c-rose); }

/* ============================================
   WHATSAPP FLOAT
============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-float-label {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-charcoal);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  white-space: nowrap;
  display: none;
}
.wa-float:hover .wa-float-label { display: block; }
.wa-float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  font-size: 26px;
  animation: wa-pulse 2.5s infinite;
  flex-shrink: 0;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,.7); }
}

/* ============================================
   INNER PAGE HERO (tratamentos)
============================================ */
.page-hero {
  background: var(--c-charcoal);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right top, rgba(196,118,138,.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--c-gold); }
.page-hero h1 { color: var(--c-white); margin-bottom: 20px; }
.page-hero p {
  color: rgba(255,255,255,.65);
  font-size: 16px;
  max-width: 580px;
  margin-bottom: 32px;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-bottom: 28px;
}
.page-hero-breadcrumb a:hover { color: var(--c-rose); }
.page-hero-breadcrumb span { opacity: .4; }

/* ============================================
   TABLE (preços)
============================================ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin: 32px 0;
}
.price-table th {
  background: var(--c-charcoal);
  color: var(--c-white);
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: left;
}
.price-table td {
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-charcoal);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--c-ivory); }
.price-table .price-cell {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--c-rose);
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================
   INFO SECTIONS (tratamento page)
============================================ */
.info-section { padding: 72px 0; }
.info-section:nth-child(even) { background: var(--c-ivory-2); }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.info-grid.reverse { direction: rtl; }
.info-grid.reverse > * { direction: ltr; }

.info-content { }
.info-content h2 { margin-bottom: 20px; }
.info-content p {
  font-size: 15px;
  color: var(--c-mid);
  margin-bottom: 16px;
}
.info-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}
.info-content li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--c-charcoal);
}
.info-content li::before {
  content: '✦';
  color: var(--c-rose);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 4px;
}

.info-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--c-ivory-2) 0%, #e0c9c9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--c-rose);
  opacity: .25;
}
.info-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* ============================================
   DEPOIMENTOS PAGE
============================================ */
.testimonials-masonry {
  columns: 3;
  column-gap: 24px;
}
.testimonial-card { break-inside: avoid; margin-bottom: 24px; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 80px 24px; max-width: 100%; margin: 0; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .locations-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; gap: 32px; }
  .info-grid.reverse { direction: ltr; }
  .info-visual { aspect-ratio: 16/9; }
  .testimonials-masonry { columns: 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; gap: 2px; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-masonry { columns: 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .promo-ticker { gap: 40px; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .treatments-grid { grid-template-columns: 1fr; }
}
