/* ─── TOKENS ─── */
:root {
  /* ── Rosé/Nude #DDC9BC — paleta principal ── */
  --rose-950: #2a201a;
  --rose-900: #3d2e26;
  --rose-800: #5c4035;
  --rose-700: #7a5548;
  --rose-600: #9b6d5c;
  --rose-500: #b8886f;
  --rose-400: #caa490;
  --rose-300: #ddc9bc;   /* COR PRINCIPAL */
  --rose-200: #e8d8ce;
  --rose-150: #f0e5de;
  --rose-100: #f5ede8;
  --rose-50:  #faf6f3;

  /* ── Carvão #413D3E — paleta secundária ── */
  --coal-950: #1a1718;
  --coal-900: #252223;
  --coal-800: #302c2d;
  --coal-700: #413d3e;   /* COR SECUNDÁRIA */
  --coal-600: #5a5556;
  --coal-500: #746f70;
  --coal-400: #908b8c;
  --coal-300: #b0acad;
  --coal-200: #cecccd;
  --coal-100: #e8e6e7;
  --coal-50:  #f5f4f4;

  --white: #ffffff;
  --gold:  #c49a6c;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(65,61,62,.07), 0 1px 2px rgba(65,61,62,.04);
  --shadow-md: 0 4px 16px rgba(65,61,62,.10), 0 2px 6px rgba(65,61,62,.06);
  --shadow-lg: 0 12px 40px rgba(65,61,62,.13), 0 4px 12px rgba(65,61,62,.07);

  --nav-h: 68px;
  --max-w: 1140px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--coal-700); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── UTIL ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.bg-surface { background: var(--rose-50); }

/* ─── ANIMATIONS ─── */
[data-anim] { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
[data-anim="fade-right"] { transform: translateX(-28px); }
[data-anim="fade-left"]  { transform: translateX(28px); }
[data-anim].visible { opacity: 1; transform: none; }

/* ─── NAV ─── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--nav-h); background: rgba(255,255,255,.95); backdrop-filter: blur(14px); border-bottom: 1px solid var(--rose-200); transition: box-shadow .3s; }
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo-mark { width: 38px; height: 38px; background: var(--coal-700); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--rose-300); font-family: var(--font-display); font-size: 15px; letter-spacing: 1px; }
.nav-brand { font-size: 16px; color: var(--coal-700); font-weight: 300; letter-spacing: .3px; }
.nav-brand strong { font-weight: 500; color: var(--coal-700); }
.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-link { padding: 7px 14px; font-size: 14px; color: var(--coal-500); border-radius: var(--radius-sm); transition: color .2s, background .2s; font-weight: 400; }
.nav-link:hover, .nav-link.active { color: var(--coal-700); background: var(--rose-100); }
.nav-cta { margin-left: 10px; padding: 9px 22px; background: var(--coal-700); color: var(--white) !important; border-radius: var(--radius-md); font-size: 14px; font-weight: 500; transition: background .2s, transform .15s; }
.nav-cta:hover { background: var(--coal-900); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--coal-700); border-radius: 2px; transition: all .3s; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: var(--radius-md); font-size: 15px; font-weight: 500; transition: all .2s; cursor: pointer; }
.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-primary { background: var(--coal-700); color: var(--white); }
.btn-primary:hover { background: var(--coal-900); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(65,61,62,.28); }
.btn-ghost { color: var(--coal-700); background: transparent; border: 1.5px solid var(--rose-300); }
.btn-ghost:hover { background: var(--rose-100); border-color: var(--rose-400); }
.btn-white { background: var(--white); color: var(--coal-700); font-weight: 600; }
.btn-white:hover { background: var(--rose-50); transform: translateY(-1px); }

/* ─── SECTION COMMON ─── */
.section-tag { display: inline-block; background: var(--rose-100); color: var(--coal-700); font-size: 11px; font-weight: 600; padding: 4px 13px; border-radius: 100px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); font-weight: 400; line-height: 1.2; color: var(--coal-700); margin-bottom: 12px; }
.section-title em { font-style: italic; color: var(--rose-600); }
.section-desc { font-size: 16px; color: var(--coal-500); line-height: 1.7; max-width: 580px; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-desc { margin: 0 auto; }
.section-subtitle { font-size: 14px; font-weight: 500; color: var(--rose-700); margin-bottom: 16px; }
.body-text { font-size: 15px; color: var(--coal-500); line-height: 1.8; margin-bottom: 20px; }

/* ─── HERO ─── */
.hero { padding: calc(var(--nav-h) + 4.5rem) 0 5rem; position: relative; overflow: hidden; background: var(--white); }
.hero-bg-shape { position: absolute; top: -80px; right: -180px; width: 680px; height: 680px; background: var(--rose-100); border-radius: 50%; opacity: .6; pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; position: relative; }
.eyebrow { font-size: 12px; font-weight: 600; color: var(--rose-600); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.hero-title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 46px); font-weight: 400; line-height: 1.15; color: var(--coal-700); margin-bottom: 20px; }
.hero-sub { font-size: 16px; color: var(--coal-500); line-height: 1.8; margin-bottom: 28px; max-width: 520px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.badge { display: inline-flex; align-items: center; gap: 7px; background: var(--coal-50); border: 1px solid var(--coal-100); border-radius: 100px; padding: 6px 14px; font-size: 13px; color: var(--coal-600); font-weight: 400; }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rose-400); flex-shrink: 0; }
.badge-gold { background: #fdf6ee; border-color: #e8d4b8; color: #7a5c30; }
.star-icon { color: var(--gold); font-size: 13px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-card { background: var(--rose-100); border: 1px solid var(--rose-200); border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-card-photo { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.photo-placeholder { text-align: center; padding: 2rem; }
.photo-initials { width: 100px; height: 100px; border-radius: 50%; background: var(--coal-700); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 32px; color: var(--rose-300); }
.photo-label { font-size: 15px; font-weight: 500; color: var(--coal-700); }
.photo-sublabel { font-size: 12px; color: var(--coal-400); margin-top: 6px; font-style: italic; }
.hero-floating-rating { position: absolute; bottom: 20px; right: 20px; background: var(--white); border: 1px solid var(--rose-200); border-radius: var(--radius-md); padding: 10px 16px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-md); }
.rating-stars { color: var(--gold); font-size: 15px; letter-spacing: -1px; }
.rating-text { font-size: 13px; color: var(--coal-600); }
.rating-text strong { color: var(--coal-700); }

/* ─── TRUST BAR ─── */
.trust-bar { border-top: 1px solid var(--rose-200); border-bottom: 1px solid var(--rose-200); padding: 1.5rem 0; background: var(--rose-50); }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item { text-align: center; padding: 0.5rem 2.5rem; }
.trust-num { display: block; font-family: var(--font-display); font-size: 22px; color: var(--coal-700); line-height: 1.2; }
.trust-label { display: block; font-size: 11px; color: var(--coal-400); margin-top: 2px; font-weight: 400; }
.trust-divider { width: 1px; height: 40px; background: var(--rose-200); flex-shrink: 0; }

/* ─── DRA SECTION ─── */
.section-dra { padding: 6rem 0; }
.split-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; }
.dra-photo-frame { background: var(--rose-100); border: 1px solid var(--rose-200); border-radius: var(--radius-xl); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.dra-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.dra-photo-inner { text-align: center; padding: 2rem; position: absolute; }
.dra-avatar-lg { width: 90px; height: 90px; border-radius: 50%; background: var(--coal-700); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 28px; color: var(--rose-300); }
.dra-photo-name { font-size: 16px; font-weight: 500; color: var(--coal-700); }
.dra-photo-role { font-size: 13px; color: var(--coal-400); margin-top: 4px; }
.dra-credential-badge { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); white-space: nowrap; background: var(--coal-700); color: var(--rose-300); font-size: 12px; font-weight: 500; padding: 8px 20px; border-radius: 100px; letter-spacing: .4px; }
.credentials-list { margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.credentials-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--coal-600); line-height: 1.5; }
.check-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--rose-100); border: 1.5px solid var(--rose-300); display: inline-flex; align-items: center; justify-content: center; font-size: 10px; color: var(--coal-700); flex-shrink: 0; margin-top: 1px; font-weight: 700; }
.dra-quote { border-left: 3px solid var(--rose-300); background: var(--rose-50); padding: 16px 20px; border-radius: 0 var(--radius-md) var(--radius-md) 0; font-family: var(--font-display); font-size: 16px; color: var(--coal-700); line-height: 1.6; margin-bottom: 24px; font-style: italic; }
.dra-quote cite { display: block; font-size: 12px; font-style: normal; font-family: var(--font-body); color: var(--coal-400); margin-top: 8px; font-weight: 500; }

/* ─── SERVICES ─── */
.section-services { padding: 6rem 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--white); border: 1px solid var(--coal-100); border-radius: var(--radius-lg); padding: 28px 24px; position: relative; transition: box-shadow .25s, transform .25s, border-color .25s; }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--rose-300); }
.service-card.featured { border: 2px solid var(--rose-300); }
.service-featured-tag { position: absolute; top: -1px; left: 24px; background: var(--rose-300); color: var(--coal-700); font-size: 10px; font-weight: 700; padding: 4px 11px; border-radius: 0 0 var(--radius-sm) var(--radius-sm); letter-spacing: .6px; text-transform: uppercase; }
.service-icon { width: 44px; height: 44px; background: var(--rose-100); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--coal-700); margin-bottom: 14px; }
.service-title { font-size: 15px; font-weight: 500; color: var(--coal-700); margin-bottom: 8px; }
.service-desc { font-size: 13px; color: var(--coal-500); line-height: 1.65; }
.service-link { display: inline-block; margin-top: 14px; font-size: 13px; color: var(--rose-600); font-weight: 500; transition: color .2s; }
.service-link:hover { color: var(--coal-700); }

/* ─── TESTIMONIALS ─── */
.section-testimonials { padding: 6rem 0; }
.google-badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 13px; color: var(--coal-400); }
.google-g { width: 22px; height: 22px; border-radius: 50%; background: var(--coal-50); border: 1px solid var(--coal-100); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--coal-600); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: var(--white); border: 1px solid var(--coal-100); border-radius: var(--radius-lg); padding: 24px; transition: box-shadow .25s; }
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.test-stars { color: var(--gold); font-size: 15px; letter-spacing: -1px; margin-bottom: 10px; }
.test-text { font-size: 14px; color: var(--coal-500); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 10px; }
.test-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--rose-200); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: var(--coal-700); flex-shrink: 0; }
.test-name { font-size: 13px; font-weight: 500; color: var(--coal-700); }
.test-meta { font-size: 12px; color: var(--coal-400); }
.testimonials-note { margin-top: 20px; text-align: center; font-size: 12px; color: var(--coal-300); }
.testimonials-note a { color: var(--rose-600); }

/* ─── CTA BAND ─── */
.cta-band { background: var(--coal-700); padding: 5.5rem 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -120px; right: -120px; width: 400px; height: 400px; background: var(--rose-300); opacity: .07; border-radius: 50%; }
.cta-band-inner { text-align: center; position: relative; }
.cta-title { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 400; color: var(--white); margin-bottom: 14px; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 520px; margin: 0 auto 28px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,.4); }

/* ─── LOCATION ─── */
.section-location { padding: 6rem 0; }
.location-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: start; }
.location-map { border-radius: var(--radius-lg); overflow: hidden; height: 360px; border: 1px solid var(--rose-200); box-shadow: var(--shadow-sm); max-width: 100%; }
.location-map iframe { max-width: 100%; display: block; }
.location-details { display: flex; flex-direction: column; gap: 20px; }
.location-item { display: flex; gap: 14px; align-items: flex-start; }
.loc-icon { width: 34px; height: 34px; background: var(--rose-100); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--coal-700); flex-shrink: 0; }
.loc-label { font-size: 11px; color: var(--coal-400); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.loc-value { font-size: 14px; color: var(--coal-600); line-height: 1.6; }
.inline-link { color: var(--rose-600); font-weight: 500; }
.inline-link:hover { color: var(--coal-700); }

/* ─── PAGE HEADER ─── */
.page-header { background: var(--coal-700); padding: calc(var(--nav-h) + 3.5rem) 0 3rem; position: relative; overflow: hidden; }
.page-header::after { content: ''; position: absolute; bottom: -80px; right: -80px; width: 280px; height: 280px; border: 40px solid var(--rose-300); border-radius: 50%; opacity: .1; }
.page-header-tag { font-size: 11px; color: rgba(221,201,188,.5); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; margin-bottom: 10px; }
.page-header-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 400; color: var(--white); line-height: 1.15; position: relative; }
.page-header-sub { font-size: 16px; color: rgba(221,201,188,.65); margin-top: 10px; line-height: 1.6; position: relative; }

/* ─── STATS GRID ─── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card { background: var(--white); border: 1px solid var(--rose-200); border-radius: var(--radius-lg); padding: 24px; text-align: center; transition: box-shadow .2s; }
.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-num { font-family: var(--font-display); font-size: 30px; color: var(--coal-700); }
.stat-label { font-size: 12px; color: var(--coal-400); margin-top: 6px; line-height: 1.4; }

/* ─── PRINCIPLE CARDS ─── */
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.principle-card { background: var(--white); border: 1px solid var(--rose-200); border-radius: var(--radius-lg); padding: 28px 24px; border-top: 3px solid var(--rose-300); }
.principle-title { font-size: 16px; font-weight: 500; color: var(--coal-700); margin-bottom: 10px; }
.principle-desc { font-size: 14px; color: var(--coal-500); line-height: 1.7; }

/* ─── TREATMENT CARDS ─── */
.treatments-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.treatment-card { background: var(--white); border: 1px solid var(--coal-100); border-radius: var(--radius-lg); padding: 28px; transition: box-shadow .25s, transform .25s; }
.treatment-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.treatment-card.featured { border: 2px solid var(--rose-300); }
.treatment-featured-tag { display: inline-block; background: var(--rose-300); color: var(--coal-700); font-size: 10px; font-weight: 700; padding: 3px 11px; border-radius: 100px; margin-bottom: 14px; letter-spacing: .5px; text-transform: uppercase; }
.treatment-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.chip { font-size: 11px; background: var(--rose-100); color: var(--coal-700); padding: 4px 10px; border-radius: 100px; font-weight: 500; }
.chip-gray { background: var(--coal-50); color: var(--coal-600); }

/* ─── BEFORE AFTER ─── */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ba-card { background: var(--white); border: 1px solid var(--coal-100); border-radius: var(--radius-lg); overflow: hidden; }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; height: 160px; }
.ba-before { background: var(--coal-50); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 4px; border-right: 1px solid var(--coal-100); overflow: hidden; }
.ba-after { background: var(--rose-100); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 4px; overflow: hidden; }
.ba-before img, .ba-after img { width: 100%; height: 100%; object-fit: cover; }
.ba-photo-hint { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.ba-before .ba-photo-hint { color: var(--coal-400); }
.ba-after .ba-photo-hint { color: var(--rose-600); }
.ba-info { padding: 16px; }
.ba-tag { font-size: 10px; font-weight: 700; background: var(--rose-100); color: var(--coal-700); display: inline-block; padding: 3px 10px; border-radius: 100px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
.ba-case { font-size: 14px; font-weight: 500; color: var(--coal-700); }
.ba-time { font-size: 12px; color: var(--coal-400); margin-top: 3px; }
.ba-note { font-size: 12px; color: var(--coal-300); margin-top: 12px; font-style: italic; }

/* ─── GALLERY ─── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { background: var(--rose-100); border: 1px solid var(--rose-200); border-radius: var(--radius-lg); aspect-ratio: 4/3; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(65,61,62,.65), transparent); color: var(--white); font-size: 12px; padding: 28px 14px 10px; opacity: 0; transition: opacity .3s; }
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 8px; font-size: 12px; color: var(--rose-500); text-align: center; padding: 1rem; font-style: italic; }

/* ─── PARTNER CARDS ─── */
.service-card--partner { background: var(--coal-50); border-color: var(--coal-100); }
.service-card--partner:hover { border-color: var(--coal-300); }

.service-partner-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  margin-top: 4px;
}
.service-partner-photo {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--coal-100);
  border: 2px solid var(--coal-200);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.service-partner-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.partner-avatar {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--coal-500);
}
.service-partner-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--coal-700);
  line-height: 1.3;
}
.service-partner-specialty {
  font-size: 11px;
  color: var(--coal-400);
  margin-top: 2px;
  font-weight: 500;
}

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-wa-card { background: var(--rose-50); border: 2px solid var(--rose-300); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; text-align: center; }
.wa-label { font-size: 13px; font-weight: 600; color: var(--coal-700); margin-bottom: 6px; }
.wa-number { font-family: var(--font-display); font-size: 26px; color: var(--coal-700); margin-bottom: 16px; }
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--coal-600); margin-bottom: 6px; }
.form-input, .form-select { width: 100%; max-width: 100%; padding: 11px 14px; border: 1.5px solid var(--coal-100); border-radius: var(--radius-md); font-family: var(--font-body); font-size: 14px; color: var(--coal-700); transition: border-color .2s, box-shadow .2s; appearance: none; background: var(--white); }
.form-input:focus, .form-select:focus { outline: none; border-color: var(--rose-300); box-shadow: 0 0 0 3px var(--rose-100); }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }

/* ─── FOOTER ─── */
.footer { background: var(--coal-950); padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; padding-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-mark { width: 32px; height: 32px; background: var(--rose-300); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--coal-700); font-family: var(--font-display); font-size: 13px; font-weight: 700; }
.footer-brand-name { font-size: 15px; font-weight: 500; color: var(--white); }
.footer-tagline { font-size: 13px; color: rgba(221,201,188,.35); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; border-radius: var(--radius-md); background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; color: rgba(221,201,188,.4); transition: background .2s, color .2s; }
.social-link:hover { background: var(--rose-300); color: var(--coal-700); }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-col-title { font-size: 11px; font-weight: 600; color: rgba(221,201,188,.3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.footer-link { display: block; font-size: 13px; color: rgba(221,201,188,.35); margin-bottom: 9px; transition: color .2s; line-height: 1.5; }
.footer-link:hover { color: rgba(221,201,188,.8); }
.footer-bottom { border-top: 1px solid rgba(221,201,188,.08); padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom-inner span { font-size: 11px; color: rgba(221,201,188,.2); }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 300; width: 54px; height: 54px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s, box-shadow .2s; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

/* ─── SECTIONS ─── */
section { position: relative; }
section:not(.hero):not(.trust-bar):not(.cta-band) { padding: 5rem 0; }

/* ─── LOGO PNG ─── */
.nav-logo-img {
  display: block;
  width: 38px;
  height: 38px;
  max-width: 38px;
  max-height: 38px;
  object-fit: contain;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.footer-logo-img {
  display: block;
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

/* ─── ORTHO INTRO ─── */
.ortho-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.ortho-intro-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--rose-100);
  border: 1px solid var(--rose-200);
}
.ortho-intro-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .split-layout, .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  /* Hero mobile: texto → foto → badges → CTAs */
  .hero-inner { display: flex; flex-direction: column; gap: 1.5rem; }
  .hero-content { display: contents; }
  .eyebrow          { order: 1; }
  .hero-title       { order: 2; }
  .hero-sub         { order: 3; margin-bottom: 0; }
  .hero-visual      { order: 4; max-width: 380px; margin: 0 auto; width: 100%; }
  .hero-badges-wrap { order: 5; }
  .hero-badges { margin-bottom: 0; }
  .hero-ctas        { order: 6; }
  .split-visual { max-width: 320px; margin: 0 auto; }
  .services-grid, .testimonials-grid, .ba-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid, .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .treatments-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .trust-divider { display: none; }
}

@media (max-width: 640px) {
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--rose-200); flex-direction: column; padding: 1rem 1.5rem 1.5rem; gap: 4px; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .services-grid, .testimonials-grid, .ba-grid, .stats-grid, .principles-grid, .gallery-grid { grid-template-columns: 1fr; }
  .ortho-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ortho-intro-card { max-width: 340px; margin: 0 auto; aspect-ratio: 4/3; }
  .hero-title { font-size: 28px; }
  .page-header { padding-top: calc(var(--nav-h) + 2rem); }
  .whatsapp-float { bottom: 20px; right: 20px; width: 48px; height: 48px; }
  .cta-title { font-size: 24px; }

  /* ── Contato: garante que formulário não vaze ── */
  .contact-form-section,
  .contact-info-section { width: 100%; min-width: 0; }
  .contact-wa-card { width: 100%; min-width: 0; }
  .form-group { width: 100%; min-width: 0; }
  .form-input, .form-select { width: 100%; min-width: 0; max-width: 100%; font-size: 16px; /* evita zoom automático no iOS */ }
  .contact-grid { width: 100%; min-width: 0; }

  /* ── Trust bar mobile: 2 colunas + último centralizado ── */
  .trust-bar { padding: 1rem 0; }
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .trust-divider { display: none; }
  .trust-item {
    padding: 0.9rem 0.75rem;
    text-align: center;
    border-bottom: 1px solid var(--rose-200);
  }
  /* Metrô ocupa as 2 colunas, sem borda inferior */
  .trust-item--last {
    grid-column: 1 / -1;
    border-bottom: none;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
  /* Remove borda inferior apenas dos itens imediatamente acima do Metrô (3º e 4º = posições 5 e 7 no DOM com dividers ocultos) */
  .trust-item:nth-last-child(2),
  .trust-item:nth-last-child(3) { border-bottom: none; }
}
