/* ============================================
   GEOVET — Design System v2.0
   Dra. Geovanna Dal Piva · Dermatologia Veterinária
   @brad-frost Atomic Design · @ui-engineer Premium UI
   ============================================ */

/* ── TOKENS ─────────────────────────────────── */
:root {
  /* Brand */
  --vinho:        #7D2B3A;
  --vinho-dark:   #5C1E2A;
  --vinho-light:  #A33D4E;
  --vinho-pale:   #F5E8EA;
  --teal:         #3D8B87;
  --teal-dark:    #2A6B68;
  --teal-light:   #5AADAA;
  --teal-pale:    #E6F4F3;

  /* Neutral */
  --white:        #FFFFFF;
  --cream:        #FAF7F4;
  --sand:         #F0EBE3;
  --gray-50:      #F9F8F7;
  --gray-100:     #EDE8E3;
  --gray-200:     #D9D2CB;
  --gray-400:     #A89D94;
  --gray-600:     #6B6059;
  --gray-800:     #3A3330;
  --dark:         #1A1614;

  /* Functional */
  --whatsapp:     #25D366;
  --whatsapp-dk:  #1DA851;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --s1: 4px;  --s2: 8px;  --s3: 12px;  --s4: 16px;
  --s5: 20px; --s6: 24px; --s7: 32px;  --s8: 40px;
  --s9: 48px; --s10: 64px; --s11: 80px; --s12: 96px;

  /* Effects */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(26,22,20,.06);
  --shadow-sm: 0 2px 8px rgba(26,22,20,.08);
  --shadow-md: 0 6px 20px rgba(26,22,20,.10);
  --shadow-lg: 0 16px 48px rgba(26,22,20,.14);
  --shadow-xl: 0 32px 80px rgba(26,22,20,.18);

  --glow-vinho: 0 8px 32px rgba(125,43,58,.25);
  --glow-teal:  0 8px 32px rgba(61,139,135,.25);
  --glow-wa:    0 8px 32px rgba(37,211,102,.30);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:  150ms;
  --t-base:  250ms;
  --t-slow:  400ms;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body  {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ──────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.01em;
}
h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.3;
}
h1 { font-size: clamp(1.75rem, 4.5vw, 2.9rem); }
h2 { font-size: clamp(1.4rem, 3.2vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.55rem); }
h4 { font-size: 1.05rem; }

p { color: var(--gray-600); }

.lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--gray-600);
  line-height: 1.75;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vinho);
  margin-bottom: var(--s3);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.eyebrow--teal { color: var(--teal); }
.eyebrow--white { color: rgba(255,255,255,.8); }
.eyebrow--white::before { background: rgba(255,255,255,.6); }

/* ── LAYOUT ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.section        { padding: clamp(56px, 8vw, 96px) 0; }
.section--sm    { padding: clamp(40px, 5vw, 64px) 0; }
.section--lg    { padding: clamp(80px, 10vw, 128px) 0; }

/* Grid utilities */
.grid    { display: grid; }
.g-2     { grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 4vw, 48px); align-items: center; }
.g-3     { grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 32px); }
.g-4     { grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 2vw, 24px); }
.g-2--65 { grid-template-columns: 1.5fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-gap-2  { gap: var(--s2); }
.flex-gap-3  { gap: var(--s3); }
.flex-wrap   { flex-wrap: wrap; }

/* ── COLORS / BACKGROUNDS ───────────────────── */
.bg-white  { background: var(--white); }
.bg-cream  { background: var(--cream); }
.bg-sand   { background: var(--sand); }
.bg-vinho  { background: var(--vinho); }
.bg-dark   { background: var(--dark); }

.text-white  { color: var(--white); }
.text-vinho  { color: var(--vinho); }
.text-teal   { color: var(--teal); }
.text-center { text-align: center; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 13px 26px;
  border-radius: var(--r-full);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: all var(--t-base) var(--ease-out-expo);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast);
}

.btn:hover::after { background: rgba(255,255,255,.08); }
.btn:active { transform: scale(.98) translateY(1px); }

.btn-icon { width: 16px; height: 16px; flex-shrink: 0; fill: currentColor; }

/* WhatsApp */
.btn-wa {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: var(--glow-wa);
}
.btn-wa:hover {
  background: var(--whatsapp-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,.35);
}

/* Primary */
.btn-primary {
  background: var(--vinho);
  color: var(--white);
  box-shadow: var(--glow-vinho);
}
.btn-primary:hover {
  background: var(--vinho-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(125,43,58,.30);
}

/* Teal */
.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--glow-teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--vinho);
  border: 1.5px solid var(--vinho);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--vinho);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--glow-vinho);
}

.btn-outline-white {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

/* White solid — usado em fundos escuros */
.btn-white {
  background: var(--white);
  color: var(--vinho);
  border: 1.5px solid var(--white);
}
.btn-white:hover {
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.92);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--gray-600);
  padding: 10px 18px;
}
.btn-ghost:hover { color: var(--vinho); background: var(--vinho-pale); }

/* Sizes */
.btn-lg { padding: 16px 34px; font-size: .975rem; }
.btn-sm { padding: 9px 18px; font-size: .82rem; }

/* ── NAVBAR ──────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(237,232,227,.6);
  transition: box-shadow var(--t-base);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.navbar__logo-mark,
.navbar__logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease-spring);
}
.navbar__logo:hover .navbar__logo-mark,
.navbar__logo:hover .navbar__logo-icon { transform: scale(1.08); }
.navbar__logo-mark img,
.navbar__logo-icon img { width: 42px; height: 42px; object-fit: contain; }

.navbar__logo-text { line-height: 1.15; }
.navbar__logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--vinho);
  display: block;
}
.navbar__logo-sub {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
}

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
}

.navbar__nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--t-fast);
  position: relative;
  padding-bottom: 3px;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vinho);
  border-radius: 1px;
  transition: width var(--t-base) var(--ease-out-expo);
}
.navbar__nav a:hover { color: var(--vinho); }
.navbar__nav a:hover::after,
.navbar__nav a.active::after { width: 100%; }
.navbar__nav a.active { color: var(--vinho); font-weight: 600; }

.navbar__actions { display: flex; align-items: center; gap: var(--s3); margin-left: var(--s4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 1px;
  transition: transform var(--t-base) var(--ease-out-expo), opacity var(--t-fast);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 12px 0 20px;
  border-top: 1px solid var(--gray-100);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: 12px clamp(16px, 4vw, 32px);
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--t-fast), background var(--t-fast);
  border-radius: var(--r-sm);
  margin: 0 clamp(8px, 2vw, 16px);
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--vinho);
  background: var(--vinho-pale);
}
.mobile-menu__cta {
  margin: var(--s4) clamp(16px, 4vw, 32px) 0;
}

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--vinho-dark) 0%, var(--vinho) 60%, var(--vinho-light) 100%);
  overflow: hidden;
  padding: clamp(64px, 9vw, 100px) 0 clamp(56px, 8vw, 88px);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* Hero background */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Hero grid */
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

/* Hero content */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-full);
  padding: 5px 14px 5px 6px;
  margin-bottom: var(--s5);
  backdrop-filter: blur(8px);
}
.hero__badge-dot {
  width: 22px;
  height: 22px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
.hero__badge-dot svg { width: 12px; height: 12px; fill: white; }
.hero__badge-text {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
}

@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(37,211,102,0); }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  line-height: 1.15;
  margin-bottom: var(--s5);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #FFD0D8 0%, #FFAAB8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lead {
  font-size: clamp(.95rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: var(--s7);
  max-width: 500px;
}

/* Pill tags */
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s8);
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-full);
  padding: 6px 13px;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: background var(--t-fast);
  backdrop-filter: blur(4px);
}
.hero__pill:hover { background: rgba(255,255,255,.14); }
.hero__pill svg { width: 12px; height: 12px; fill: var(--teal-light); flex-shrink: 0; }

/* CTA group */
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s3); }

/* Hero image */
.hero__visual {
  position: relative;
}
.hero__img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.08);
}
.hero__img-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease-out-expo);
}
.hero__visual:hover .hero__img-frame img { transform: scale(1.03); }

/* Floating badge on image */
.hero__float-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--s3);
  min-width: 180px;
  animation: float-badge 4s ease-in-out infinite;
}
@keyframes float-badge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.hero__float-badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--glow-teal);
}
.hero__float-badge-icon svg { width: 20px; height: 20px; fill: white; }
.hero__float-badge-label { line-height: 1.2; }
.hero__float-badge-label strong { display: block; font-size: .95rem; color: var(--dark); font-weight: 700; }
.hero__float-badge-label span { font-size: .72rem; color: var(--gray-400); }

/* Second float badge */
.hero__float-badge-2 {
  position: absolute;
  top: 24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--s2);
  animation: float-badge 5s ease-in-out infinite reverse;
}
.hero__float-badge-2-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--vinho), var(--vinho-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__float-badge-2-icon svg { width: 16px; height: 16px; fill: white; }
.hero__float-badge-2 span { font-size: .78rem; font-weight: 600; color: var(--dark); }

/* ── SECTION HEADERS ─────────────────────────── */
.section-header { margin-bottom: clamp(36px, 5vw, 56px); }
.section-header.centered {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.section-header.centered .eyebrow { justify-content: center; }
.section-header h2 { margin-bottom: var(--s4); color: var(--dark); }
.section-header p { font-size: 1.02rem; color: var(--gray-600); max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── CARDS ───────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base) var(--ease-out-expo), box-shadow var(--t-base);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s5);
}
.card__icon--vinho { background: var(--vinho-pale); }
.card__icon--teal  { background: var(--teal-pale); }
.card__icon--wa    { background: rgba(37,211,102,.1); }
.card__icon svg    { width: 24px; height: 24px; }
.card__icon--vinho svg { fill: var(--vinho); }
.card__icon--teal  svg { fill: var(--teal); }
.card__icon--wa    svg { fill: var(--whatsapp); }

.card h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: var(--s2); }
.card h4 { color: var(--dark); margin-bottom: var(--s2); }
.card p  { font-size: .9rem; line-height: 1.65; }

/* ── SYMPTOMS ────────────────────────────────── */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.symptom-item {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  transition: transform var(--t-base), box-shadow var(--t-base);
  cursor: default;
}
.symptom-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(125,43,58,.14);
}

/* Photo container */
.symptom-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.symptom-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .55s ease;
}
.symptom-item:hover .symptom-photo img {
  transform: scale(1.07);
}

/* Text block */
.symptom-text {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: 2px solid var(--vinho);
}
.symptom-text strong {
  font-size: .88rem;
  font-weight: 700;
  color: var(--vinho);
  line-height: 1.3;
}
.symptom-text span {
  font-size: .77rem;
  color: var(--gray-500, #7A6E6C);
  line-height: 1.45;
}

/* ── INCLUDE LIST ────────────────────────────── */
/* ── INCLUDE GRID (bloco "O que está incluso") ── */
.include-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
}

.include-card {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  padding: var(--s4) var(--s5);
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: all var(--t-base);
}
.include-card:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 18px rgba(61,139,135,.12);
  transform: translateY(-2px);
}

/* Ícone do card */
.include-card__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: all var(--t-base);
}
.include-card__icon svg { width: 20px; height: 20px; fill: currentColor; }
.include-card:hover .include-card__icon { background: var(--teal); color: var(--white); }

/* Texto do card */
.include-card__body { display: flex; flex-direction: column; gap: 3px; }
.include-card__body strong {
  font-size: .88rem;
  font-weight: 700;
  color: var(--gray-900, #2A1F1E);
  line-height: 1.3;
}
.include-card__body span {
  font-size: .78rem;
  color: var(--gray-500, #7A6E6C);
  line-height: 1.45;
}

/* Card destaque — 30 dias WhatsApp */
.include-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--vinho) 0%, #A03348 100%);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(125,43,58,.25);
  align-items: center;
  padding: var(--s5) var(--s6);
}
.include-card--featured .include-card__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(255,255,255,.18);
  color: var(--white);
  border-radius: 14px;
}
.include-card--featured .include-card__icon svg { width: 26px; height: 26px; }
.include-card--featured:hover .include-card__icon { background: rgba(255,255,255,.28); color: var(--white); }
.include-card--featured .include-card__body strong { font-size: 1rem; color: var(--white); }
.include-card--featured .include-card__body span { font-size: .85rem; color: rgba(255,255,255,.8); }
.include-card--featured:hover { border-color: transparent; box-shadow: 0 8px 28px rgba(125,43,58,.4); transform: translateY(-2px); }

/* Card final — protocolo de manutenção (full width) */
.include-card--closing {
  grid-column: 1 / -1;
  background: var(--vinho-pale);
  border-color: rgba(125,43,58,.15);
}
.include-card--closing .include-card__icon { background: rgba(125,43,58,.1); color: var(--vinho); }
.include-card--closing:hover { border-color: var(--vinho); box-shadow: 0 6px 18px rgba(125,43,58,.1); }
.include-card--closing:hover .include-card__icon { background: var(--vinho); color: var(--white); }
.include-card--closing .include-card__body strong { color: var(--vinho); }

/* Legacy (compat) */
.include-list { display: flex; flex-direction: column; gap: var(--s3); }
.include-item { display: flex; align-items: flex-start; gap: var(--s3); padding: var(--s4) var(--s5); background: var(--teal-pale); border-radius: var(--r-md); border-left: 3px solid var(--teal); }
.include-icon { width: 20px; height: 20px; fill: var(--teal); flex-shrink: 0; }
.include-item span { font-size: .9rem; color: var(--gray-700); line-height: 1.5; }

/* ── STEPS ───────────────────────────────────── */
/* ── JOURNEY / PASSO A PASSO ─────────────────── */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

/* linha conectora entre cards */
.journey::before {
  content: '';
  position: absolute;
  top: 68px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--vinho-pale) 0%, var(--vinho) 50%, rgba(61,139,135,.3) 100%);
  z-index: 0;
}

.journey-step {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-100);
  padding: 28px 22px 22px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  z-index: 1;
}

/* barra de acento no topo */
.journey-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vinho-dark), var(--vinho-light));
}
.journey-step--final::before {
  background: linear-gradient(90deg, var(--teal-dark, #2A6B68), var(--teal));
}

.journey-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(125,43,58,.1);
  border-color: var(--vinho-pale);
}
.journey-step--final:hover {
  box-shadow: 0 16px 40px rgba(61,139,135,.1);
  border-color: rgba(61,139,135,.25);
}

/* número watermark decorativo */
.journey-step__watermark {
  position: absolute;
  top: -6px;
  right: 14px;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--vinho);
  opacity: .06;
  line-height: 1;
  font-family: var(--font-display);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
}
.journey-step--final .journey-step__watermark { color: var(--teal); }

/* ícone */
.journey-step__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--vinho-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  transition: background var(--t-base), transform var(--t-base);
}
.journey-step__icon svg {
  width: 22px;
  height: 22px;
  color: var(--vinho);
}
.journey-step:hover .journey-step__icon { transform: scale(1.08); }
.journey-step--final .journey-step__icon {
  background: rgba(61,139,135,.1);
}
.journey-step--final .journey-step__icon svg { color: var(--teal); }

/* tag de etapa */
.journey-step__tag {
  display: inline-flex;
  align-items: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--vinho);
  background: var(--vinho-pale);
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: 12px;
}
.journey-step--final .journey-step__tag {
  color: var(--teal);
  background: rgba(61,139,135,.1);
}

/* conteúdo */
.journey-step h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.35;
}
.journey-step p {
  font-size: .855rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

/* footer */
.journey-step__footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--gray-100);
  display: flex;
  align-items: center;
  gap: 6px;
}
.journey-step__time {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 5px;
}
.journey-step__time::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vinho);
  opacity: .4;
}
.journey-step--final .journey-step__time::before { background: var(--teal); }

/* ── PROPOSTA BLOCK ──────────────────────────── */
.proposta-grid {
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.proposta-content h2 { margin-bottom: 20px; }

.proposta-insight {
  background: var(--vinho-pale);
  border-left: 3px solid var(--vinho);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 20px 24px;
  margin: 24px 0 32px;
}
.proposta-insight p { color: var(--gray-700); margin: 0; line-height: 1.7; }
.proposta-insight strong { color: var(--vinho); }

.proposta-pilares {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proposta-pilar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--gray-100);
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.proposta-pilar:hover {
  border-color: var(--vinho-pale);
  box-shadow: 0 6px 24px rgba(125,43,58,.08);
  transform: translateY(-2px);
}

.proposta-pilar__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--vinho);
  opacity: .18;
  line-height: 1;
  min-width: 40px;
  font-family: var(--font-display);
  letter-spacing: -.04em;
}

.proposta-pilar__body h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.proposta-pilar__body p {
  font-size: .875rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.65;
}

/* ── OBJECTION BLOCK ─────────────────────────── */
.objection {
  background: linear-gradient(135deg, var(--vinho-dark) 0%, var(--vinho) 60%, var(--vinho-light) 100%);
  padding: clamp(72px, 9vw, 112px) 0;
  position: relative;
  overflow: hidden;
}
.objection .container { position: relative; z-index: 1; }

/* header */
.objection-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}
.objection-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.objection-eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: rgba(255,255,255,.35);
}
.objection__q {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: rgba(255,255,255,.97);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 16px;
}
.objection__lead {
  color: rgba(255,255,255,.55);
  font-size: clamp(.875rem, 1.4vw, .975rem);
  line-height: 1.85;
  margin: 0;
  font-weight: 400;
}

/* ── BENTO GRID ──────────────────────────────── */
.obj-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.obj-bento__card--a { grid-column: 1; }
.obj-bento__card--b { grid-column: 2; }
.obj-bento__card--c { grid-column: 3; }
.obj-bento__card--d { grid-column: 4; }
.obj-bento__closing { grid-column: 1 / -1; }

/* card */
.obj-bento__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: background var(--t-base), border-color var(--t-base),
              transform var(--t-base), box-shadow var(--t-base);
}
.obj-bento__card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
.obj-bento__glow { display: none; }

/* ícone circular, delicado */
.obj-bento__icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.1);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background var(--t-base);
}
.obj-bento__card:hover .obj-bento__icon { background: rgba(255,255,255,.16); }
.obj-bento__icon svg { color: rgba(255,255,255,.85); width: 18px; height: 18px; }

/* step tag */
.obj-bento__tag {
  display: inline-block;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}

/* título */
.obj-bento__card h4 {
  color: rgba(255,255,255,.9);
  font-size: .93rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* texto */
.obj-bento__card p {
  color: rgba(255,255,255,.52);
  font-size: .83rem;
  line-height: 1.75;
  margin: 0;
  flex: 1;
  font-weight: 400;
}

/* badge */
.obj-bento__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: .68rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  align-self: flex-start;
}
.obj-bento__badge::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  flex-shrink: 0;
}

/* ── CLOSING QUOTE ───────────────────────────── */
.obj-bento__closing {
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  position: relative;
}
.obj-bento__closing::before {
  content: '\201C';
  position: absolute;
  top: -12px; left: 40px;
  font-family: var(--font-display);
  font-size: 11rem;
  line-height: 1;
  color: rgba(255,255,255,.05);
  pointer-events: none;
  user-select: none;
}
.obj-bento__closing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 80px;
  position: relative;
}
.obj-bento__quot { display: none; }

.obj-bento__quote {
  font-family: var(--font-display);
  color: rgba(255,255,255,.82);
  font-size: clamp(.96rem, 1.5vw, 1.13rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.9;
  max-width: 640px;
  margin: 0 0 28px;
}
.obj-bento__quote::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: rgba(255,255,255,.2);
  margin: 24px auto 0;
}
.obj-bento__author {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0;
}

/* ── REGIONAL SECTION ───────────────────────── */
.regional-section {
  background: linear-gradient(135deg, var(--vinho-dark) 0%, var(--vinho) 60%, var(--vinho-light) 100%);
  padding: clamp(64px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
/* detalhe decorativo de fundo */
.regional-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(255,255,255,.04) 0%, transparent 60%);
  pointer-events: none;
}

.regional-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* conteúdo esquerdo */
.regional-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.3;
  margin: 12px 0 16px;
}
.regional-content p {
  color: rgba(255,255,255,.58);
  font-size: clamp(.875rem, 1.4vw, .975rem);
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 400;
}

/* cidades direita */
.regional-cities {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.regional-city {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  transition: background var(--t-base), border-color var(--t-base);
}
.regional-city:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
}
.regional-city svg {
  width: 18px; height: 18px;
  color: rgba(255,255,255,.45);
  flex-shrink: 0;
}
.regional-city span {
  color: rgba(255,255,255,.88);
  font-size: .95rem;
  font-weight: 600;
  flex: 1;
}
.regional-city small {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* responsive */
@media (max-width: 768px) {
  .regional-inner { grid-template-columns: 1fr; gap: 36px; }
  .regional-cities { flex-direction: row; flex-wrap: wrap; }
  .regional-city { flex: 1 1 140px; }
}

/* ── DOCTOR SECTION ──────────────────────────── */
.doctor__visual { position: relative; }
.doctor__frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 440px;
}
.doctor__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(125,43,58,.15));
  z-index: 1;
  pointer-events: none;
}
.doctor__frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
  transition: transform var(--t-slow) var(--ease-out-expo);
}
.doctor__visual:hover .doctor__frame img { transform: scale(1.04); }

.doctor__accent {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: -16px;
  border: 2px solid var(--vinho);
  border-radius: var(--r-xl);
  opacity: .2;
  pointer-events: none;
}

.doctor__badge {
  position: absolute;
  bottom: 24px;
  right: -24px;
  background: white;
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}
.doctor__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--vinho);
  line-height: 1;
}
.doctor__badge span { font-size: .72rem; color: var(--gray-400); letter-spacing: .06em; text-transform: uppercase; }

/* ── DRA SECTION (redesign index) ───────────── */
.dra-section { background: var(--cream); }

.dra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* Visual / foto */
.dra-visual {
  position: relative;
}
.dra-visual__frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.dra-visual__frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform var(--t-slow) var(--ease-out-expo);
}
.dra-visual:hover .dra-visual__frame img { transform: scale(1.03); }
.dra-visual__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(20,8,10,.45));
  pointer-events: none;
}

/* Borda decorativa atrás */
.dra-visual__border {
  position: absolute;
  top: -14px;
  left: -14px;
  right: 14px;
  bottom: -14px;
  border: 2px solid var(--vinho);
  border-radius: var(--r-xl);
  opacity: .18;
  pointer-events: none;
  z-index: 0;
}

/* Badge CRMV — canto inferior esquerdo */
.dra-visual__crmv {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: var(--r-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  z-index: 2;
}
.dra-visual__crmv svg {
  width: 28px;
  height: 28px;
  color: var(--vinho);
  flex-shrink: 0;
}
.dra-visual__crmv div { display: flex; flex-direction: column; gap: 1px; }
.dra-visual__crmv span { font-size: .8rem; font-weight: 700; color: var(--gray-900); line-height: 1; }
.dra-visual__crmv small { font-size: .68rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; }

/* Stat flutuante — canto superior direito */
.dra-visual__stat {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--vinho);
  color: white;
  border-radius: var(--r-lg);
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(125,43,58,.35);
  z-index: 2;
  line-height: 1;
}
.dra-visual__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.dra-visual__stat span {
  font-size: .68rem;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
  display: block;
}

/* Conteúdo de texto */
.dra-content { display: flex; flex-direction: column; gap: var(--s4); }
.dra-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin: 0;
}
.dra-content__role {
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: -8px 0 0;
}
.dra-content__bio {
  font-size: .97rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin: 0;
}

/* Pills de especialidade */
.dra-content__pills {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-top: var(--s2);
}
.dra-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--gray-700);
  font-weight: 500;
}
.dra-pill svg {
  width: 16px;
  height: 16px;
  fill: var(--teal);
  flex-shrink: 0;
}

/* Botões */
.dra-content__actions {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
  margin-top: var(--s3);
}

/* Responsive */
@media (max-width: 768px) {
  .dra-grid { grid-template-columns: 1fr; }
  .dra-visual__stat { right: 0; top: 16px; }
}

/* ── CITIES ──────────────────────────────────── */
.cities { display: flex; flex-wrap: wrap; gap: var(--s3); justify-content: center; }
.city-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-full);
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--t-base);
  cursor: default;
}
.city-tag:hover {
  border-color: var(--vinho);
  color: var(--vinho);
  background: var(--vinho-pale);
  transform: translateY(-2px);
}
.city-tag svg { width: 14px; height: 14px; fill: var(--vinho); }

/* ── FAQ ─────────────────────────────────────── */
.faq { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-radius: var(--r-md);
  border: 1px solid var(--gray-100);
  margin-bottom: var(--s3);
  overflow: hidden;
  transition: box-shadow var(--t-base);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--gray-200); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s5) var(--s6);
  cursor: pointer;
  font-size: .93rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  user-select: none;
  transition: background var(--t-fast);
}
.faq-q:hover { background: var(--cream); }

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-base), transform var(--t-base) var(--ease-spring);
}
.faq-chevron svg { width: 14px; height: 14px; fill: var(--gray-400); transition: fill var(--t-base); }
.faq-item.open .faq-chevron { background: var(--vinho); transform: rotate(180deg); }
.faq-item.open .faq-chevron svg { fill: white; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s var(--ease-out-expo), padding .22s;
  background: var(--white);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 var(--s6) var(--s5);
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── CTA BANNER ──────────────────────────────── */
.cta-banner {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--vinho-dark) 0%, var(--vinho) 60%, var(--vinho-light) 100%);
}
/* luz suave centralizada */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(255,255,255,.05) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* eyebrow */
.cta-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.cta-banner__eyebrow::before,
.cta-banner__eyebrow::after {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: rgba(255,255,255,.25);
}

/* título */
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* lead */
.cta-banner__lead {
  color: rgba(255,255,255,.58);
  font-size: clamp(.9rem, 1.5vw, 1rem);
  line-height: 1.85;
  max-width: 520px;
  font-weight: 400;
  margin-bottom: 36px;
}

/* trust pills */
.cta-banner__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-banner__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: 7px 14px;
  border-radius: var(--r-full);
}
.cta-banner__pill svg {
  width: 13px; height: 13px;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
}

/* ação */
.cta-banner__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* dois botões lado a lado (serviços) */
.cta-banner__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* nota abaixo do botão */
.cta-banner__note {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
  margin: 0;
}

/* ── BLOG CARDS ──────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 28px); }

.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base) var(--ease-out-expo), box-shadow var(--t-base);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.blog-card__thumb {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--vinho-pale), var(--sand));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out-expo);
}
.blog-card:hover .blog-card__thumb img { transform: scale(1.06); }

.blog-thumb-placeholder {
  width: 72px;
  height: 72px;
  opacity: .2;
}
.blog-thumb-placeholder svg { width: 100%; height: 100%; fill: var(--vinho); }

.blog-card__body { padding: clamp(16px, 2.5vw, 24px); flex: 1; display: flex; flex-direction: column; }
.blog-card__tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--vinho);
  margin-bottom: var(--s2);
}
.blog-card h3 {
  font-family: var(--font-body);
  font-size: .97rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--s3);
  line-height: 1.4;
}
.blog-card p { font-size: .85rem; color: var(--gray-400); flex: 1; line-height: 1.6; }

.blog-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  font-size: .82rem;
  font-weight: 600;
  color: var(--vinho);
  margin-top: var(--s4);
  transition: gap var(--t-base);
}
.blog-card__cta svg { width: 14px; height: 14px; fill: var(--vinho); transition: transform var(--t-base); }
.blog-card:hover .blog-card__cta { gap: var(--s2); }
.blog-card:hover .blog-card__cta svg { transform: translateX(3px); }

/* ── PAGE HERO ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--vinho-dark) 0%, var(--vinho) 60%, var(--vinho-light) 100%);
  padding: clamp(48px, 7vw, 80px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: white; margin-bottom: var(--s3); }
.page-hero p { color: rgba(255,255,255,.78); max-width: 520px; margin: 0 auto; }

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--s5);
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--t-fast); }
.breadcrumb a:hover { color: white; }
.breadcrumb svg { width: 12px; height: 12px; fill: rgba(255,255,255,.35); }

/* ── SERVICE CARDS ───────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}

.service-card__head {
  padding: clamp(28px, 4vw, 40px);
  background: linear-gradient(135deg, var(--vinho-dark), var(--vinho));
  color: white;
}
.service-card__head-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s5);
  font-size: 1.8rem;
}
.service-card__head h3 { color: white; font-size: 1.4rem; margin-bottom: var(--s2); }
.service-card__head p { color: rgba(255,255,255,.75); font-size: .9rem; margin: 0; }

.service-card--teal .service-card__head {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}

.service-card__body { padding: clamp(24px, 3.5vw, 36px); flex: 1; display: flex; flex-direction: column; }

/* ── CONTACT ─────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 4vw, 48px); }

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  padding: clamp(18px, 2.5vw, 26px);
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-100);
  transition: all var(--t-base);
}
.contact-info-card:hover { border-color: var(--vinho); box-shadow: var(--shadow-sm); }
.contact-info-icon {
  width: 46px;
  height: 46px;
  background: var(--vinho-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; fill: var(--vinho); }
.contact-info-card h4 { font-size: .88rem; margin-bottom: 3px; color: var(--dark); }
.contact-info-card p { font-size: .85rem; color: var(--gray-400); margin: 0; }

.contact-cta {
  background: linear-gradient(145deg, var(--vinho-dark), var(--vinho), var(--vinho-light));
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 52px) clamp(28px, 4vw, 40px);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s5);
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.contact-cta h3 { color: white; font-size: 1.6rem; position: relative; }
.contact-cta p { color: rgba(255,255,255,.75); max-width: 320px; position: relative; margin: 0; }
.contact-cta__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: #100C0A;
  padding: clamp(48px, 7vw, 72px) 0 clamp(24px, 3vw, 36px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  margin-bottom: clamp(36px, 5vw, 52px);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s5);
}
.footer__brand-mark {
  width: 38px;
  height: 38px;
  background: var(--vinho);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer__brand-mark svg { width: 20px; height: 20px; fill: white; }
.footer__brand-name { font-family: var(--font-display); font-size: .95rem; font-weight: 700; color: white; display: block; }
.footer__brand-sub  { font-size: .65rem; color: rgba(255,255,255,.35); letter-spacing: .06em; text-transform: uppercase; display: block; }

.footer p { color: rgba(255,255,255,.4); font-size: .85rem; line-height: 1.7; }

.footer h4 { color: rgba(255,255,255,.6); font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: var(--s4); }

.footer__links { display: flex; flex-direction: column; gap: var(--s3); }
.footer__links a { font-size: .88rem; color: rgba(255,255,255,.45); transition: color var(--t-fast); }
.footer__links a:hover { color: white; }

.footer__contact { display: flex; flex-direction: column; gap: var(--s3); }
.footer__contact-item { display: flex; align-items: flex-start; gap: var(--s2); font-size: .84rem; color: rgba(255,255,255,.45); }
.footer__contact-item svg { width: 14px; height: 14px; fill: var(--teal-light); flex-shrink: 0; margin-top: 3px; }

.footer__divider { height: 1px; background: rgba(255,255,255,.06); margin-bottom: var(--s6); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.22);
}

/* ── WHATSAPP FLOAT ──────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.wa-float__label {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 10px 16px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateX(12px);
  transition: opacity var(--t-base), transform var(--t-base) var(--ease-out-expo);
  pointer-events: none;
  white-space: nowrap;
}
.wa-float:hover .wa-float__label { opacity: 1; transform: translateX(0); }
.wa-float__btn {
  position: relative;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-wa);
  transition: transform var(--t-base) var(--ease-spring), background var(--t-base);
}
.wa-float__btn:hover { transform: scale(1.12); background: var(--whatsapp-dk); }
.wa-float__btn svg { width: 26px; height: 26px; fill: white; }
.wa-float__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: wa-ring 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes wa-ring {
  0%   { transform: scale(1); opacity: .5; }
  80%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ── SCROLL REVEAL ───────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease-out-expo), transform .6s var(--ease-out-expo);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* ── UTILITIES ───────────────────────────────── */
.divider { height: 1px; background: var(--gray-100); margin: var(--s6) 0; }
.note-box {
  background: var(--teal-pale);
  border-left: 3px solid var(--teal);
  border-radius: var(--r-md);
  padding: var(--s5) var(--s6);
  font-size: .9rem;
  color: var(--gray-600);
}

/* ── PAGE-HERO ENHANCEMENTS ──────────────────── */
.page-hero { padding-bottom: clamp(56px, 8vw, 90px); }
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--r-full);
  padding: 6px 16px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: var(--s4);
}
.page-hero__eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; display: block; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: 700px; margin: 0 auto var(--s4); }
.page-hero p { font-size: 1.05rem; }
.page-hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s5);
}
.page-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-full);
  padding: 8px 16px;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.92);
}
.page-hero__trust-item svg { width: 14px; height: 14px; fill: currentColor; opacity: .8; }
.page-hero__cta { margin-top: var(--s6); display: flex; gap: var(--s3); justify-content: center; flex-wrap: wrap; }

/* ── STATS BAR ───────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.stats-bar__inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 680px;
  margin: 0 auto;
}
.stats-bar__item {
  flex: 1;
  text-align: center;
  padding: 28px 24px;
  border-right: 1px solid var(--gray-100);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.stats-bar__num--vinho { color: var(--vinho); }
.stats-bar__num--teal { color: var(--teal); }
.stats-bar__label { font-size: .78rem; color: var(--gray-500); font-weight: 500; line-height: 1.45; }

/* ── TIMELINE ────────────────────────────────── */
.timeline {
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--vinho) 0%, var(--teal) 100%);
  opacity: .2;
  z-index: 0;
}
.timeline-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 24px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline__num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  z-index: 1;
  position: relative;
}
.timeline__num--vinho { background: var(--vinho); box-shadow: 0 4px 14px rgba(125,43,58,.35); }
.timeline__num--teal  { background: var(--teal);  box-shadow: 0 4px 14px rgba(61,139,135,.35); }
.timeline__card {
  flex: 1;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  transition: all var(--t-base);
  margin-top: 4px;
}
.timeline__card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.09); transform: translateX(4px); }
.timeline__card--featured {
  border-color: rgba(125,43,58,.25);
  background: var(--vinho-pale);
}
.timeline__card--featured:hover { border-color: var(--vinho); box-shadow: 0 6px 20px rgba(125,43,58,.12); }
.timeline__card h4 { font-size: .95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.timeline__card p { font-size: .88rem; color: var(--gray-600); line-height: 1.65; margin: 0; }
.timeline__card--featured h4 { color: var(--vinho); }
.timeline__card--featured p { color: var(--gray-700); }
.timeline__card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--vinho);
  color: white;
  border-radius: var(--r-full);
  padding: 4px 12px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-top: 10px;
}
.timeline__card__badge svg { width: 12px; height: 12px; fill: currentColor; }

/* ── FOR-WHOM CARDS ──────────────────────────── */
.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
.for-whom-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s6);
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.for-whom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--vinho);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.for-whom-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.09); }
.for-whom-card:hover::before { transform: scaleX(1); }
.for-whom-card__num {
  width: 32px;
  height: 32px;
  background: var(--vinho-pale);
  color: var(--vinho);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: var(--s4);
}
.for-whom-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: var(--s3); color: var(--gray-900); }
.for-whom-card p { font-size: .88rem; color: var(--gray-600); line-height: 1.6; margin: 0; }

/* ── SERVICES PAGE ───────────────────────────── */
.srv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  align-items: start;
}

/* Base card */
.srv-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t-base), transform var(--t-base);
  background: var(--white);
}
.srv-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.1); transform: translateY(-3px); }

/* Card header */
.srv-card__head {
  padding: 32px 32px 28px;
  position: relative;
}
.srv-card--online .srv-card__head {
  background: linear-gradient(135deg, var(--vinho-dark) 0%, var(--vinho) 60%, #A03348 100%);
  color: white;
}
.srv-card--presencial .srv-card__head {
  background: linear-gradient(135deg, #1E5F5D 0%, var(--teal) 100%);
  color: white;
}

/* Badge "Principal oferta" */
.srv-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--r-full);
  padding: 4px 12px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}
.srv-card__badge span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  display: block;
}

/* Icon no header */
.srv-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.15);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.srv-card__icon svg { width: 26px; height: 26px; fill: white; }

.srv-card__head h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.25;
}
.srv-card__head p { font-size: .88rem; color: rgba(255,255,255,.82); line-height: 1.6; margin: 0; }

/* Stat pills no header */
.srv-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.srv-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border-radius: var(--r-full);
  padding: 6px 12px;
  font-size: .76rem;
  font-weight: 600;
  color: white;
}
.srv-stat svg { width: 13px; height: 13px; fill: white; opacity: .9; }

/* Body do card */
.srv-card__body {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.srv-card__body-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: -4px;
}

/* Itens do include dentro do card de serviço */
.srv-include {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.srv-include-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.srv-include-item svg { width: 16px; height: 16px; fill: var(--teal); flex-shrink: 0; margin-top: 2px; }
.srv-include-item strong { color: var(--gray-900); }

/* Destaque WhatsApp dentro do card */
.srv-wa-highlight {
  background: var(--vinho-pale);
  border: 1px solid rgba(125,43,58,.15);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.srv-wa-highlight svg { width: 22px; height: 22px; fill: var(--vinho); flex-shrink: 0; }
.srv-wa-highlight div { display: flex; flex-direction: column; gap: 2px; }
.srv-wa-highlight strong { font-size: .88rem; color: var(--vinho); font-weight: 700; }
.srv-wa-highlight span { font-size: .78rem; color: var(--gray-500); }

/* Cities dentro do card presencial */
.srv-cities {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.srv-city {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: var(--r-md);
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-800);
}
.srv-city svg { width: 16px; height: 16px; fill: var(--teal); flex-shrink: 0; }

/* Botões do card */
.srv-card__actions { display: flex; gap: var(--s3); flex-wrap: wrap; margin-top: auto; padding-top: var(--s3); }

/* Nota */
.srv-note {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  border-left: 4px solid var(--teal);
  font-size: .88rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-top: var(--s5);
}
.srv-note strong { color: var(--gray-900); }

/* Decisão: qual escolher */
.decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
}
.decision-col {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.decision-col__head {
  padding: 20px 24px;
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.decision-col--online .decision-col__head { background: var(--vinho-pale); color: var(--vinho); }
.decision-col--presencial .decision-col__head { background: var(--teal-pale); color: var(--teal); }
.decision-col__head svg { width: 18px; height: 18px; fill: currentColor; }
.decision-col__list { padding: 20px 24px; display: flex; flex-direction: column; gap: 10px; }
.decision-col__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.decision-col--online .decision-col__item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vinho);
  flex-shrink: 0;
  margin-top: 7px;
}
.decision-col--presencial .decision-col__item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Condições tratadas — photo card style */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.condition-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.condition-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(125,43,58,.14);
}
.condition-card__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.condition-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .55s ease;
}
.condition-card:hover .condition-card__photo img {
  transform: scale(1.07);
}
.condition-card__body {
  padding: 16px 18px 22px;
  border-top: 2px solid var(--vinho);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.condition-card h3 { font-size: .88rem; font-weight: 700; color: var(--vinho); margin: 0; line-height: 1.3; }
.condition-card p  { font-size: .77rem; color: var(--gray-500); line-height: 1.55; margin: 0; }

/* Responsive */
@media (max-width: 768px) {
  .srv-grid { grid-template-columns: 1fr; }
  .decision-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .conditions-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .srv-card__head, .srv-card__body { padding-left: 20px; padding-right: 20px; }
}

/* ── WHY IT WORKS ────────────────────────────── */
.why-highlight {
  background: linear-gradient(135deg, var(--vinho) 0%, #9A3347 100%);
  border-radius: var(--r-lg);
  padding: var(--s6) var(--s8);
  color: white;
  text-align: center;
  margin-top: var(--s6);
}
.why-highlight p { color: rgba(255,255,255,.88); font-size: 1.05rem; line-height: 1.7; max-width: 560px; margin: 0 auto; }
.why-highlight strong { color: white; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 360px; gap: clamp(32px, 5vw, 48px); }
  .g-4         { grid-template-columns: repeat(2, 1fr); }
  .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
  .journey     { grid-template-columns: repeat(2, 1fr); }
  .journey::before { display: none; }
  .obj-bento { grid-template-columns: repeat(2, 1fr); }
  .obj-bento__card--a { grid-column: 1; }
  .obj-bento__card--b { grid-column: 2; }
  .obj-bento__card--c { grid-column: 1; }
  .obj-bento__card--d { grid-column: 2; }
  .blog-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar__nav,
  .navbar__actions { display: none; }
  .hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: block; margin-top: 28px; }
  .hero__img-frame img { aspect-ratio: 4/3; object-position: center 15%; }
  .hero__float-badge,
  .hero__float-badge-2 { display: none; }

  .g-2, .g-2--65, .g-3, .contact-grid { grid-template-columns: 1fr; }
  .proposta-grid { grid-template-columns: 1fr; }
  .obj-bento { grid-template-columns: 1fr; }
  .obj-bento__card--a,
  .obj-bento__card--b,
  .obj-bento__card--c,
  .obj-bento__card--d,
  .obj-bento__closing { grid-column: 1; }
  .obj-bento__closing-inner { padding: 36px 28px; }
  .g-4 { grid-template-columns: 1fr 1fr; }
  .symptoms-grid { grid-template-columns: 1fr 1fr; }
  .journey { grid-template-columns: 1fr 1fr; }

  /* Atendimento online responsive */
  .stats-bar__inner { flex-direction: column; }
  .stats-bar__item { border-right: none; border-bottom: 1px solid var(--gray-100); padding: 20px; }
  .stats-bar__item:last-child { border-bottom: none; }
  .for-whom-grid { grid-template-columns: 1fr; }
  .page-hero__trust { flex-direction: column; align-items: center; }
  .include-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--s8); }
  .footer__bottom { flex-direction: column; gap: var(--s2); text-align: center; }

  .doctor__badge { right: 0; bottom: -20px; }
  .hero__float-badge { left: 0; }
  .hero__float-badge-2 { right: 0; top: 16px; }
}

@media (max-width: 480px) {
  .g-4 { grid-template-columns: 1fr; }
  .symptoms-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .journey { grid-template-columns: 1fr; }
  .hero__pills { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .cities { flex-direction: column; align-items: center; }
  .wa-float { bottom: 16px; right: 16px; }
}

/* ── COMPAT ALIASES (v1 → v2) ───────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 4vw, 48px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 32px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 2vw, 24px); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); box-shadow: var(--glow-wa); display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; border-radius: var(--r-full); font-size: .9rem; font-weight: 600; transition: all var(--t-base); }
.btn-whatsapp:hover { background: var(--whatsapp-dk); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,.35); }
.section-header.text-center { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-header { margin-bottom: clamp(36px, 5vw, 56px); }
.section-header h2 { margin-bottom: var(--s4); color: var(--dark); }
.doctor__img-wrap { position: relative; }
.doctor__img-wrap img { border-radius: var(--r-xl); width: 100%; max-width: 440px; box-shadow: var(--shadow-xl); object-fit: cover; }
.doctor__img-accent { position: absolute; top: -16px; left: -16px; right: 16px; bottom: -16px; border: 2px solid var(--vinho); border-radius: var(--r-xl); opacity: .2; pointer-events: none; }
.service-card__header { padding: clamp(28px, 4vw, 40px); background: linear-gradient(135deg, var(--vinho-dark), var(--vinho)); color: white; }
.service-card--teal .service-card__header { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
.service-card__header h3 { color: white; font-size: 1.4rem; margin-bottom: var(--s2); }
.service-card__header p { color: rgba(255,255,255,.75); font-size: .9rem; margin: 0; }
.service-card__body { padding: clamp(24px, 3.5vw, 36px); flex: 1; display: flex; flex-direction: column; }
.contact-info-item { display: flex; align-items: flex-start; gap: var(--s4); padding: clamp(18px, 2.5vw, 26px); background: var(--white); border-radius: var(--r-md); border: 1px solid var(--gray-100); transition: all var(--t-base); }
.contact-info-item:hover { border-color: var(--vinho); box-shadow: var(--shadow-sm); }
.contact-info-icon { width: 46px; height: 46px; background: var(--vinho-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; fill: var(--vinho); }
.contact-info-item h4 { font-size: .88rem; margin-bottom: 3px; color: var(--dark); }
.contact-info-item p { font-size: .85rem; color: var(--gray-400); margin: 0; }
.contact-cta-card { background: linear-gradient(145deg, var(--vinho-dark), var(--vinho)); border-radius: var(--r-xl); padding: clamp(36px, 5vw, 52px) clamp(28px, 4vw, 40px); color: white; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--s5); }
.contact-cta-card h3 { color: white; }
.contact-cta-card p { color: rgba(255,255,255,.75); max-width: 320px; margin: 0; }
.blog-hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; margin-bottom: 28px; }
.blog-hero-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gray-100); transition: all var(--t-base); }
.blog-hero-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-hero-card__thumb { height: 280px; background: linear-gradient(135deg, var(--vinho), var(--vinho-light)); display: flex; align-items: center; justify-content: center; }
.blog-hero-card__thumb svg { width: 80px; height: 80px; fill: rgba(255,255,255,.25); }
.blog-hero-card__body { padding: 28px; }
.blog-hero-card__tag { font-size: .73rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--vinho); margin-bottom: 10px; }
.blog-hero-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.blog-card__link { display: inline-flex; align-items: center; gap: 4px; font-size: .82rem; font-weight: 600; color: var(--vinho); margin-top: 16px; }
.blog-card__link svg { width: 14px; height: 14px; fill: var(--vinho); transition: transform var(--t-base); }
.blog-card:hover .blog-card__link svg { transform: translateX(3px); }
@media (max-width: 768px) {
  .blog-hero-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) { .grid-4 { grid-template-columns: 1fr; } }
