/* ===== TOKENS & TIPOGRAFIA ===== */
:root {
  --bg: #F7F9F7;
  --bg-alt: #FFFFFF;
  --neutral: #9FA9A5;
  --neutral-soft: rgba(159, 169, 165, 0.28);
  --olive: #62775A;
  --olive-light: #7B9272;
  --olive-soft: rgba(98, 119, 90, 0.14);
  --dark: #30452F;
  --dark-accent: #223321;
  --dark-soft: rgba(48, 69, 47, 0.09);
  --teal: #3F6D70;
  --teal-soft: rgba(63, 109, 112, 0.15);
  --gold: #3F6D70;
  --gold-soft: rgba(63, 109, 112, 0.15);
  --ink: #1B241A;
  --ink-muted: #4E5951;
  --white: #ffffff;

  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1160px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(.16, .84, .44, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
svg { display: block; }
.section-inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }

/* Subtle noise */
.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.015; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== TIPOGRAFIA & TÍTULOS ===== */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title.center { text-align: center; }

.section-lead {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), background .25s ease, box-shadow .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 8px 22px -6px rgba(42, 54, 32, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--dark-accent);
  box-shadow: 0 12px 28px -6px rgba(42, 54, 32, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--dark);
  border-color: rgba(91, 112, 69, 0.35);
  padding: 13px 22px;
}
.btn-ghost:hover {
  border-color: var(--dark);
  background: var(--dark-soft);
}
.btn-light {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.3);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.4);
}
.btn-lg { padding: 15px 32px; font-size: 1.02rem; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; max-width: 100vw; z-index: 500;
  background: transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .3s ease, transform .4s var(--ease);
  padding: 20px 0;
}
.site-header.hide { transform: translateY(-100%); }
.site-header.scrolled {
  background: rgba(253, 253, 253, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
}
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; color: #fff; flex-shrink: 0; transition: color .4s ease; }
.logo-icon { color: #fff; transition: color .4s ease; filter: drop-shadow(0 1px 6px rgba(0,0,0,0.35)); }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.logo-text em {
  display: block; font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cdd8c3;
  margin-top: 2px;
  transition: color .4s ease;
}

.main-nav { display: flex; align-items: center; gap: 24px; }
.nav-link {
  font-size: 0.92rem; font-weight: 500; color: rgba(255, 255, 255, 0.9);
  position: relative; padding: 4px 0; white-space: nowrap;
  transition: color .25s ease;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: #fff; transition: width .3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s ease, background .4s ease; }

.site-header.scrolled .logo,
.site-header.scrolled .logo-icon { color: var(--dark); filter: none; }
.site-header.scrolled .logo-text { text-shadow: none; }
.site-header.scrolled .logo-text em { color: var(--teal); }
.site-header.scrolled .nav-link { color: var(--ink-muted); text-shadow: none; }
.site-header.scrolled .nav-link::after { background: var(--olive); }
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active { color: var(--dark); font-weight: 600; }
.site-header.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; right: 0; height: 100vh; width: 82%; max-width: 340px;
  background: var(--bg); z-index: 600;
  display: flex; flex-direction: column; gap: 6px;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-link {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; padding: 12px 0;
  border-bottom: 1px solid var(--neutral-soft); color: var(--dark);
}
.mobile-cta { margin-top: 26px; }

/* ===== 1. HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%;
  transform: scale(1.16);
  will-change: transform;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(20, 28, 18, 0.62) 0%, rgba(20, 28, 18, 0.46) 32%, rgba(20, 28, 18, 0.2) 56%, rgba(20, 28, 18, 0.04) 78%, rgba(20, 28, 18, 0) 100%),
    linear-gradient(0deg, rgba(20, 28, 18, 0.4) 0%, rgba(20, 28, 18, 0) 22%, rgba(20, 28, 18, 0) 78%, rgba(20, 28, 18, 0.1) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto; padding: 140px 32px 90px;
  width: 100%;
}
.hero-copy { max-width: 580px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; color: #e5ecd9;
  margin-bottom: 20px;
}
.hero-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7ef088; box-shadow: 0 0 10px #7ef088;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(10, 16, 8, 0.35);
}
.hero-sub {
  font-size: 1.08rem; color: rgba(255, 255, 255, 0.92);
  max-width: 500px; margin-bottom: 32px;
  text-shadow: 0 1px 16px rgba(10, 16, 8, 0.4);
}
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.14); }

.hero-highlights {
  display: flex; flex-direction: column; gap: 10px;
}
.highlight-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: rgba(255, 255, 255, 0.9);
}
.highlight-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.18); color: #7ef088;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; flex-shrink: 0;
}

.hero-wave {
  display: block; width: 100%; height: 64px;
  position: absolute; left: 0; bottom: -1px; z-index: 1;
}

/* ===== 2. SOBRE O ALYSSON ===== */
.about { padding: 72px 0; background: var(--bg); }
.about-inner {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: stretch;
}
.about-media { position: relative; min-height: 420px; }
.about-media-shape {
  position: absolute; inset: 6% -10% -6% -6%;
  border: 2px solid var(--olive);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about-photo {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -15px rgba(22, 25, 21, 0.18);
}
.about-role { font-weight: 600; color: var(--olive); margin: 6px 0 18px; font-size: 1.05rem; }
.about-copy p { color: var(--ink-muted); max-width: 560px; margin-bottom: 20px; font-size: 0.98rem; }
.about-copy p strong { color: var(--dark); }

.about-credentials-grid {
  display: flex; flex-direction: column; gap: 14px;
  margin: 26px 0 34px;
}
.credential-box {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-alt);
  border: 1px solid var(--neutral-soft);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease;
}
.credential-box:hover {
  transform: translateX(4px);
  border-color: var(--olive);
  box-shadow: 0 6px 16px -6px rgba(91, 112, 69, 0.15);
}
.credential-icon {
  font-size: 1.4rem; line-height: 1; flex-shrink: 0; margin-top: 2px;
}
.credential-info strong {
  display: block; font-size: 0.96rem; font-weight: 700; color: var(--dark); margin-bottom: 2px;
}
.credential-info span {
  display: block; font-size: 0.85rem; color: var(--ink-muted); line-height: 1.45;
}
.credential-info-full { width: 100%; }
.credential-row {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cred-tag {
  font-size: 0.78rem; font-weight: 600; color: var(--dark);
  background: var(--white); border: 1px solid rgba(142, 148, 143, 0.3);
  padding: 6px 12px; border-radius: 999px;
}

/* ===== PILARES (SAÚDE DO IDOSO / TRAUMATO-ORTOPEDIA) ===== */
.pillar { padding: 72px 0; background: var(--bg); }
.pillar--alt { background: var(--bg-alt); }
.pillar-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: stretch;
}
.pillar-inner--reverse { grid-template-columns: 0.9fr 1.1fr; }
.pillar-inner--reverse .pillar-media { order: -1; }
.pillar-copy p { color: var(--ink-muted); margin-bottom: 22px; max-width: 540px; font-size: 1rem; }
.pillar-copy p.eyebrow { color: var(--olive); max-width: none; }
.pillar-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.pillar-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--ink-muted); line-height: 1.5; }
.pillar-list li strong { color: var(--dark); }
.pillar-list-icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--olive-soft); color: var(--olive);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; margin-top: 2px;
}
.pillar-stat {
  display: block; background: var(--dark-soft); border-left: 3px solid var(--olive);
  border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 28px; max-width: 520px;
}
.pillar-stat strong { display: block; font-size: 0.94rem; color: var(--dark); margin-bottom: 4px; line-height: 1.4; }
.pillar-stat span { font-size: 0.82rem; color: var(--ink-muted); }
.pillar-conditions-label { font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.pillar-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.pillar-tags li {
  font-size: 0.85rem; font-weight: 600; color: var(--dark);
  background: var(--white); border: 1px solid var(--neutral-soft);
  padding: 8px 14px; border-radius: 999px;
}
.pillar--alt .pillar-tags li { background: var(--bg); }
.pillar-media { position: relative; min-height: 440px; }
.pillar-media-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 16px; height: 100%;
}
.pillar-photo-a { grid-row: 1 / 3; grid-column: 1; }
.pillar-photo-b { grid-row: 1; grid-column: 2; }
.pillar-photo-c { grid-row: 2; grid-column: 2; }
.pillar-photo-cell {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -18px rgba(22, 25, 21, 0.2);
}
.pillar-photo-cell::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.4), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.pillar-photo {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.18);
  will-change: transform;
  display: block;
}

/* ===== COMO FUNCIONA (PROCESSO 4 PASSOS) ===== */
.process-section { padding: 68px 0 76px; background: var(--bg); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-step {
  position: relative; padding: 26px 22px;
  border-radius: 22px;
  transition: transform .5s cubic-bezier(.16,.84,.32,1), background .4s ease, box-shadow .4s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: 0 26px 48px -26px rgba(22, 25, 21, 0.16), inset 0 0 0 1px rgba(159, 169, 165, 0.14);
}
.process-number {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: 2.2rem; color: var(--olive-soft);
  -webkit-text-stroke: 1.5px var(--olive);
  color: transparent;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.08rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.55; }

/* ===== ATENDIMENTO ONDE VOCÊ ESTIVER ===== */
.domiciliar-section { padding: 68px 0 76px; background: var(--bg-alt); }
.domiciliar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 44px; }
.domiciliar-item {
  background: var(--white);
  border-radius: 26px;
  padding: 34px 26px; text-align: center;
  box-shadow: 0 24px 48px -26px rgba(22, 25, 21, 0.16), inset 0 0 0 1px rgba(159, 169, 165, 0.16);
  transition: transform .5s cubic-bezier(.16,.84,.32,1), box-shadow .5s cubic-bezier(.16,.84,.32,1);
}
.domiciliar-item:hover { transform: translateY(-5px); box-shadow: 0 32px 56px -24px rgba(22, 25, 21, 0.2), inset 0 0 0 1px rgba(98,119,90,0.22); }
.domiciliar-icon {
  width: 52px; height: 52px; margin: 0 auto 18px;
  border-radius: 16px; background: var(--olive-soft); color: var(--olive);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.6);
}
.domiciliar-item:nth-child(2) .domiciliar-icon { background: var(--teal-soft); color: var(--teal); }
.domiciliar-item strong { display: block; font-size: 1.02rem; color: var(--dark); margin-bottom: 8px; }
.domiciliar-item p { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.5; }

/* ===== DEPOIMENTOS (AVALIAÇÕES GOOGLE) ===== */
.testimonial-section { padding: 68px 0; background: var(--dark); position: relative; overflow: hidden; }
.testimonial-section::before {
  content: ''; position: absolute; top: -30%; right: -10%; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--olive) 0%, transparent 70%);
  opacity: 0.18; pointer-events: none;
}
.testimonial-heading { position: relative; z-index: 1; margin-bottom: 32px; }
.testimonial-eyebrow { color: #cdd8c3; }
.testimonial-title { color: #fff; margin-bottom: 18px; }
.testimonial-rating-link {
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  transition: transform .3s var(--ease);
}
.testimonial-rating-link:hover { transform: translateY(-2px); }
.testimonial-rating-link .stars { display: flex; justify-content: center; gap: 4px; color: #E8C468; }
.testimonial-rating { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.85); text-decoration: underline; text-underline-offset: 4px; }

.reviews-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 32px;
}
.review-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px; padding: 20px 20px 18px;
}
.review-stars { color: #E8C468; font-size: 0.78rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-quote {
  font-size: 0.86rem; color: rgba(255,255,255,0.88); line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.review-author { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.55); }
.testimonial-section .link-underline { position: relative; z-index: 1; color: #cdd8c3; }
.testimonial-section .link-underline:hover { color: #fff; }

/* ===== 3. TRATAMENTOS (3 CARDS DIRETOS) ===== */
.treatments-section {
  padding: 68px 0 76px;
  background: var(--bg-alt);
}
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.treatment-card {
  background: linear-gradient(160deg, rgba(98,119,90,0.07), rgba(98,119,90,0.015));
  border-radius: 30px;
  padding: 7px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 30px 60px -30px rgba(22, 25, 21, 0.16), 0 10px 24px -14px rgba(22, 25, 21, 0.08);
  transition: transform .55s cubic-bezier(.16,.84,.32,1), box-shadow .55s cubic-bezier(.16,.84,.32,1);
}
.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 40px 70px -28px rgba(22, 25, 21, 0.22), 0 14px 30px -14px rgba(22, 25, 21, 0.12);
}
.treatment-card-inner {
  background: var(--white);
  border: 1px solid rgba(159, 169, 165, 0.16);
  border-radius: 24px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.6);
}

.treatment-icon-wrap {
  width: 50px; height: 50px;
  border-radius: 16px;
  background: var(--white);
  color: var(--olive);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 20px -8px rgba(98,119,90,0.28), inset 0 1px 1px rgba(255,255,255,0.8), inset 0 0 0 1px rgba(98,119,90,0.14);
  transition: transform .5s cubic-bezier(.16,.84,.32,1);
}
.treatment-card:hover .treatment-icon-wrap { transform: scale(1.08) rotate(-4deg); }

.treatment-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--olive-soft);
  color: var(--olive);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.treatment-tag--gold {
  background: var(--teal-soft);
  color: var(--teal);
}
.treatment-tag--gold ~ .treatment-icon-wrap,
.treatment-card:has(.treatment-tag--gold) .treatment-icon-wrap { color: var(--teal); box-shadow: 0 10px 20px -8px rgba(63,109,112,0.28), inset 0 1px 1px rgba(255,255,255,0.8), inset 0 0 0 1px rgba(63,109,112,0.14); }

.treatment-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.treatment-card p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 22px;
}

.treatment-benefits {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  flex-grow: 1;
  padding-top: 18px;
  border-top: 1px solid var(--neutral-soft);
}
.treatment-benefits li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 500;
}
.treatment-benefits li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--olive-soft);
  box-shadow: inset 0 0 0 3.5px var(--olive);
}

.treatment-btn {
  width: 100%;
  margin-top: auto;
  font-size: 0.94rem;
  padding: 6px 6px 6px 22px;
  justify-content: space-between;
  transition: transform .4s cubic-bezier(.16,.84,.32,1), background .3s ease, box-shadow .3s ease;
}
.treatment-btn:active { transform: scale(0.98); }
.btn-arrow {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(.16,.84,.32,1);
}
.treatment-btn:hover .btn-arrow { transform: translateX(3px) rotate(-8deg); }

/* ===== 4. FAQ INTERATIVO (ACCORDION) ===== */
.faq-section { padding: 68px 0 76px; background: var(--bg-alt); }
.faq-accordion { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--neutral-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq-item:hover {
  border-color: rgba(91, 112, 69, 0.35);
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.06);
}
.faq-item.active {
  border-color: var(--olive);
  box-shadow: 0 8px 24px -8px rgba(91, 112, 69, 0.18);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; padding: 20px 24px;
  font-family: var(--font-sans); font-size: 1.02rem; font-weight: 700; color: var(--dark);
  text-align: left; cursor: pointer;
}
.faq-toggle-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-alt); color: var(--olive);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; line-height: 1; flex-shrink: 0;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--olive); color: var(--white);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 240px; padding: 0 24px 22px;
}
.faq-answer p {
  font-size: 0.94rem; color: var(--ink-muted); line-height: 1.6; margin: 0;
}

/* ===== 6. PROVA SOCIAL ===== */
.social-proof { padding: 60px 0; background: var(--dark-soft); }
.social-proof-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.stars { display: flex; gap: 5px; color: var(--gold); margin-bottom: 4px; }
.social-proof-inner p { font-size: 1.02rem; color: var(--ink); font-weight: 600; }
.link-underline {
  font-size: 0.92rem; font-weight: 600; color: var(--teal);
  text-decoration: underline; text-underline-offset: 4px;
}
.link-underline:hover { color: var(--dark); }

/* ===== 7. CTA FINAL ===== */
.cta-final { background: var(--dark); padding: 68px 0; }
.cta-final-inner { text-align: center; }
.cta-final h2 {
  font-family: var(--font-display); font-weight: 700; color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.2; margin-bottom: 16px;
}
.cta-final p { color: rgba(255, 255, 255, 0.78); font-size: 1.05rem; margin-bottom: 32px; }

/* ===== 8. FOOTER ===== */
.site-footer { background: var(--bg-alt); padding-top: 76px; border-top: 1px solid var(--neutral-soft); }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 56px;
}
.logo--footer {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--dark); margin-bottom: 16px;
}
.logo--footer .logo-icon { color: var(--dark); flex-shrink: 0; }
.logo--footer .logo-text { color: var(--dark); }
.logo--footer .logo-text em { color: var(--olive); }
.footer-brand p { color: var(--ink-muted); font-size: 0.92rem; max-width: 320px; margin-bottom: 22px; }
.footer-col h5 {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--olive); margin-bottom: 18px;
}
.footer-col a, .footer-col .footer-text {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.92rem; color: var(--ink-muted); margin-bottom: 12px;
  transition: color .25s ease, transform .2s ease;
}
.footer-contact-link svg, .footer-location svg {
  flex-shrink: 0; color: var(--olive);
}
.footer-col a:hover { color: var(--dark); font-weight: 600; transform: translateX(2px); }
.footer-bottom { border-top: 1px solid var(--neutral-soft); padding: 22px 0; }
.footer-bottom p { font-size: 0.84rem; color: var(--ink-muted); text-align: center; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 400;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.6);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 16px 36px -6px rgba(37, 211, 102, 0.7); }

/* ===== REVEAL ANIMATION BASE ===== */
.reveal, .reveal-img { opacity: 0; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { display: block; min-height: auto; overflow: visible; }
  .hero-bg { position: relative; inset: auto; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; }
  .hero-bg-img { object-position: 50% 14%; transform: scale(1.05); }
  .hero-scrim {
    background: linear-gradient(180deg, rgba(16, 22, 12, 0.4) 0%, rgba(16, 22, 12, 0.02) 26%, rgba(16, 22, 12, 0.02) 72%, rgba(16, 22, 12, 0.65) 100%);
  }
  .hero-inner { position: relative; z-index: 1; padding: 32px 22px 56px; background: var(--bg); }
  .hero-copy { max-width: none; }
  .hero-tag { background: var(--olive-soft); border-color: rgba(91, 112, 69, 0.25); color: var(--dark); }
  .hero h1 { color: var(--dark); }
  .hero-sub { color: var(--ink-muted); }
  .hero-sub strong { color: var(--ink); }
  .hero .btn-ghost { color: var(--dark); border-color: rgba(91, 112, 69, 0.4); }
  .hero .btn-ghost:hover { border-color: var(--dark); background: var(--dark-soft); }
  .highlight-item { color: var(--ink-muted); }
  .highlight-icon { background: var(--olive-soft); color: var(--olive); }
  .hero-wave { display: none; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-media { max-width: 380px; margin: 0 auto 20px; }

  .treatments-grid { grid-template-columns: 1fr; gap: 20px; }

  .pillar-inner, .pillar-inner--reverse { grid-template-columns: 1fr; gap: 36px; }
  .pillar-inner--reverse .pillar-media { order: 0; }
  .pillar-media { max-width: 460px; margin: 0 auto; min-height: 0; }
  .pillar-media-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 120px; }
  .pillar-photo-a { grid-row: 1; grid-column: 1 / 3; }
  .pillar-photo-b { grid-row: 2; grid-column: 1; }
  .pillar-photo-c { grid-row: 2; grid-column: 2; }

  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }

  .domiciliar-grid { grid-template-columns: 1fr; gap: 18px; }

  .reviews-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .section-inner { padding: 0 20px; }
  .hero-inner { padding-left: 20px; padding-right: 20px; }
  .header-inner { padding: 0 20px; }
  .hero h1 { font-size: 2.1rem; }
  .btn-lg { width: 100%; }
  .cta-final-inner .btn { width: 100%; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
}
