/* =========================================================================
   AMORIS CARE — LANDING PAGE
   Design System v1.0
   Brand tokens herdados do Manual Oficial de Identidade Visual
   ========================================================================= */

/* -------- 0. RESET -------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* Touch feedback consistente (mobile) */
a, button, summary, [role="button"] {
  -webkit-tap-highlight-color: rgba(30, 58, 95, .08);
}

/* Section anchor offset (mobile + desktop) */
section[id] { scroll-margin-top: 80px; }

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  background: transparent;
  border: 0;
}

/* -------- 1. DESIGN TOKENS -------- */
:root {
  /* Cores brand (do manual) */
  --navy:        #1E3A5F;
  --navy-soft:   #2A4A73;
  --blue:        #3F6E9A;
  --teal:        #4A9EB8;
  --teal-soft:   #8CC3D2;
  --gold:        #E8B75C;
  --gold-soft:   #F4D99A;
  --cream:       #F4E8D3;
  --paper:       #FAF6F1;
  --paper-2:     #F3ECE1;
  --ink:         #15233D;
  --ink-2:       #3A4A64;
  --ink-3:       #6B7888;
  --mist:        #E2D6C4;
  --line:        rgba(30, 58, 95, .14);
  --line-2:      rgba(30, 58, 95, .08);
  --line-3:      rgba(30, 58, 95, .05);

  /* WhatsApp brand */
  --wpp:         #25D366;
  --wpp-dark:    #128C7E;

  /* Gradientes oficiais (do manual) */
  --grad-warm:   linear-gradient(135deg, #1E3A5F 0%, #3F6E9A 40%, #4A9EB8 70%, #E8B75C 100%);
  --grad-cool:   linear-gradient(135deg, #1E3A5F 0%, #3F6E9A 55%, #4A9EB8 100%);
  --grad-sun:    linear-gradient(135deg, #4A9EB8 0%, #8CC3D2 45%, #E8B75C 100%);
  --grad-soft:   linear-gradient(135deg, #F4E8D3 0%, #FAF6F1 100%);

  /* Tipografia */
  --serif:       "Fraunces", ui-serif, Georgia, serif;
  --sans:        "Nunito", ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Spacing scale (do manual — 8pt base) */
  --space-1:  4px;
  --space-2:  8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;
  --space-9: 128px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Sombras (do manual) */
  --sh-xs: 0 2px 4px rgba(30, 58, 95, .06);
  --sh-sm: 0 6px 14px rgba(30, 58, 95, .10);
  --sh-md: 0 14px 28px rgba(30, 58, 95, .14);
  --sh-lg: 0 30px 60px -10px rgba(30, 58, 95, .25);
  --sh-card: 0 18px 50px -20px rgba(30, 58, 95, .22);

  /* Layout */
  --container: 1280px;
  --header-h: 76px;

  /* Motion */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* -------- 2. UTILITÁRIOS BASE -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-5); }
}

/* Typography helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.012em;
  text-wrap: balance;
}


h1 { font-size: clamp(36px, 5.2vw, 64px); line-height: 1.05; letter-spacing: -.022em; }
h2 { font-size: clamp(30px, 3.8vw, 48px); line-height: 1.1;  letter-spacing: -.018em; }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: 18px; font-weight: 700; }
h5 { font-size: 14px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); }

p { font-size: 16px; color: var(--ink-2); text-wrap: pretty; }

/* Italic display flourishes (Fraunces) */
h1 em, h2 em, h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: -.02em;
}

/* Eyebrow micro-label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-4);
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 183, 92, .22);
}

.eyebrow-light { color: var(--gold-soft); }
.eyebrow-light .dot { background: var(--gold); box-shadow: 0 0 0 3px rgba(232, 183, 92, .3); }

/* Section header common */
.section-header {
  max-width: 720px;
  margin: 0 auto var(--space-6);
  text-align: center;
}
.section-header h2 { margin-bottom: var(--space-3); }
.section-header .section-sub {
  font-size: 17px;
  color: var(--ink-2);
}

/* -------- 3. BOTÕES -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
  user-select: none;
}

.btn .arrow,
.btn .ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .25s var(--ease);
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--sh-sm);
}

.btn-primary-large {
  background: var(--gold);
  color: var(--navy);
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 12px 40px -8px rgba(232, 183, 92, .55);
}

.btn-wpp {
  background: var(--wpp);
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
}

.btn-wpp-light {
  background: #fff;
  color: var(--wpp-dark);
  border: 1.5px solid var(--wpp);
}

.btn-wpp-large {
  background: var(--wpp);
  color: #fff;
  padding: 18px 32px;
  font-size: 16px;
  box-shadow: 0 12px 40px -8px rgba(37, 211, 102, .55);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

/* Hover effects: only on devices that actually support hover (skips touch) */
@media (hover: hover) {
  .btn:hover .arrow { transform: translateX(3px); }
  .btn-primary:hover {
    background: var(--ink);
    transform: translateY(-1px);
    box-shadow: var(--sh-md);
  }
  .btn-primary-large:hover {
    background: var(--gold-soft);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 18px 50px -10px rgba(232, 183, 92, .75);
  }
  .btn-wpp:hover {
    background: var(--wpp-dark);
    transform: translateY(-1px);
  }
  .btn-wpp-light:hover {
    background: var(--wpp);
    color: #fff;
    transform: translateY(-1px);
  }
  .btn-wpp-large:hover {
    background: var(--wpp-dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 50px -10px rgba(37, 211, 102, .65);
  }
  .btn-ghost-dark:hover {
    background: var(--navy);
    color: #fff;
  }
}

/* Touch feedback (active state) — devices sem hover */
@media (hover: none) {
  .btn:active { transform: scale(.97); }
}

/* -------- 4. HEADER -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 241, .82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(250, 246, 241, .94);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px -10px rgba(30, 58, 95, .15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--space-4);
}

.brand img {
  width: auto;
  height: 44px;
}

.nav-desktop {
  display: none;
  gap: var(--space-5);
}

.nav-desktop a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}

@media (hover: hover) {
  .nav-desktop a:hover { color: var(--navy); }
  .nav-desktop a:hover::after { transform: scaleX(1); }
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

/* Mobile menu */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: 0 var(--space-4);
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height .35s var(--ease), padding .3s var(--ease), visibility 0s .35s;
}

.nav-mobile.is-open {
  max-height: 500px;
  padding: var(--space-3) var(--space-4) var(--space-4);
  border-top: 1px solid var(--line);
  visibility: visible;
  transition: max-height .35s var(--ease), padding .3s var(--ease), visibility 0s;
}

@media (min-width: 1024px) {
  .nav-mobile { display: none; }
}

.nav-mobile a {
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--r-md);
}
.nav-mobile a:active { background: var(--paper-2); }
@media (hover: hover) {
  .nav-mobile a:hover { background: var(--paper-2); }
}
.nav-mobile .btn { margin-top: var(--space-2); justify-content: center; }

/* -------- 5. HERO -------- */
.hero {
  position: relative;
  padding: var(--space-7) 0 var(--space-8);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}

.hero-bg .blob-1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(232, 183, 92, .55), transparent 70%);
}

.hero-bg .blob-2 {
  width: 480px;
  height: 480px;
  bottom: -180px;
  left: -140px;
  background: radial-gradient(circle, rgba(74, 158, 184, .45), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr .95fr;
    gap: var(--space-7);
  }
}

.hero-text h1 {
  margin-bottom: var(--space-4);
  color: var(--navy);
}

.hero-text .lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: var(--space-5);
  max-width: 540px;
}

.hero-text .lead strong { color: var(--ink); font-weight: 700; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px dashed var(--line);
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
}

.hero-badges li strong {
  color: var(--ink);
  font-weight: 800;
}

.hero-badges svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
}

/* Hero image */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 5 / 6;
  border-radius: 220px 28px 28px 28px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background:
    /* SVG silhueta como fallback bonito */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 600' preserveAspectRatio='xMidYMid slice'><defs><radialGradient id='g' cx='50%25' cy='30%25'><stop offset='0%25' stop-color='%23f4d99a' stop-opacity='0.5'/><stop offset='100%25' stop-color='%231e3a5f' stop-opacity='0'/></radialGradient></defs><rect width='500' height='600' fill='url(%23g)'/><circle cx='250' cy='200' r='75' fill='%23ffffff' fill-opacity='0.18'/><path d='M120 600 Q120 400 250 400 Q380 400 380 600 Z' fill='%23ffffff' fill-opacity='0.18'/></svg>"),
    var(--grad-cool);
  background-size: cover;
  background-position: center;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 95, .25), rgba(232, 183, 92, .15));
  z-index: 1;
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
  /* Esconde texto alt caso a imagem não carregue (a silhueta de fallback aparece atrás) */
  color: transparent;
  font-size: 0;
}

.hero-floating-card {
  position: absolute;
  left: -10px;
  bottom: 60px;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: floatY 4s ease-in-out infinite;
}

.floating-avatars {
  display: flex;
}

.floating-avatars span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -10px;
}

.floating-avatars span:nth-child(1) { background: var(--grad-cool); }
.floating-avatars span:nth-child(2) { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); }
.floating-avatars span:nth-child(3) { background: var(--grad-sun); }

.hero-floating-card strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}
.hero-floating-card small {
  font-size: 11px;
  color: var(--ink-3);
}

.hero-floating-rating {
  position: absolute;
  right: -10px;
  top: 40px;
  background: #fff;
  padding: 12px 16px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  z-index: 2;
  animation: floatY 4s ease-in-out infinite reverse;
}

.hero-floating-rating .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.hero-floating-rating small {
  font-size: 11px;
  color: var(--ink-3);
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* -------- 6. TRUST SECTION -------- */
.trust-section {
  padding: var(--space-7) 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 1024px) {
  .trust-grid { grid-template-columns: 1fr 1.1fr; gap: var(--space-7); }
}

.trust-text h2 { margin-bottom: var(--space-4); color: var(--navy); }
.trust-text p { font-size: 17px; max-width: 520px; }
.trust-text strong { color: var(--ink); font-weight: 700; }

.trust-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .trust-numbers { grid-template-columns: repeat(4, 1fr); }
}

.num-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

@media (hover: hover) {
  .num-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
  }
}

.num-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 6px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}

.num-card .num small {
  font-size: 24px;
  color: var(--teal);
  font-style: italic;
}

.num-card .num-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* -------- 7. SERVIÇOS -------- */
.services {
  padding: var(--space-8) 0;
  background: var(--paper);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); } }

.service-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--space-5);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .25s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: var(--grad-warm);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}

@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-card);
    border-color: var(--line-2);
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover .service-icon { transform: rotate(-6deg) scale(1.08); }
}

.service-card.featured {
  background: linear-gradient(160deg, var(--cream) 0%, var(--paper) 100%);
  border-color: rgba(232, 183, 92, .3);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--cream), var(--gold-soft));
  color: var(--navy);
  margin-bottom: var(--space-3);
  transition: transform .35s var(--ease-out);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-weight: 800;
  margin-bottom: var(--space-2);
  color: var(--ink);
}

.service-card p {
  font-size: 15px;
  margin-bottom: var(--space-3);
  color: var(--ink-2);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .01em;
  transition: gap .2s var(--ease), color .2s;
}

@media (hover: hover) {
  .service-link:hover {
    color: var(--navy);
    gap: 10px;
  }
}

/* -------- 8. EMOCIONAL -------- */
.emotional {
  position: relative;
  padding: var(--space-8) 0;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.emotional::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(232, 183, 92, .25), transparent 60%);
  pointer-events: none;
}

.emotional::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(74, 158, 184, .3), transparent 60%);
  pointer-events: none;
}

.emotional-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 1024px) {
  .emotional-grid { grid-template-columns: .9fr 1fr; gap: var(--space-7); }
}

.emotional-image {
  position: relative;
}

.emotional-image img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  aspect-ratio: 5/6;
  object-fit: cover;
  color: transparent;
  font-size: 0;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 600' preserveAspectRatio='xMidYMid slice'><defs><radialGradient id='g' cx='50%25' cy='35%25'><stop offset='0%25' stop-color='%23f4d99a' stop-opacity='0.4'/><stop offset='100%25' stop-color='%231e3a5f' stop-opacity='0'/></radialGradient></defs><rect width='500' height='600' fill='url(%23g)'/><path d='M180 320 Q250 280 320 320 L320 380 Q280 410 250 410 Q220 410 180 380 Z' fill='%23ffffff' fill-opacity='0.2'/><circle cx='220' cy='280' r='32' fill='%23ffffff' fill-opacity='0.18'/><circle cx='285' cy='280' r='32' fill='%23ffffff' fill-opacity='0.18'/></svg>"),
    linear-gradient(135deg, #3F6E9A 0%, #4A9EB8 60%, #E8B75C 100%);
  background-size: cover;
}

.emotional-quote {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: #fff;
  color: var(--navy);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  max-width: 280px;
}

.emotional-quote .quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  line-height: 0;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
  margin-top: 22px;
}

.emotional-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  color: var(--navy);
  font-variation-settings: "SOFT" 100, "opsz" 32;
}

.emotional-text .eyebrow { color: var(--gold-soft); }
.emotional-text .eyebrow .dot { box-shadow: 0 0 0 3px rgba(232, 183, 92, .3); }

.emotional-text h2 {
  color: #fff;
  margin-bottom: var(--space-4);
}

.emotional-text h2 em { color: var(--gold-soft); }

.emotional-text p {
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  margin-bottom: var(--space-3);
  max-width: 520px;
}

.emotional-text p strong { color: #fff; font-weight: 700; }

.emotional-text .btn-ghost-dark {
  margin-top: var(--space-3);
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}

.emotional-text .btn-ghost-dark:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

/* -------- 9. DIFERENCIAIS -------- */
.differentials {
  padding: var(--space-8) 0;
  background: var(--paper);
}

.diff-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 768px) { .diff-list { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); } }

.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--line-2);
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}

@media (hover: hover) {
  .diff-list li:hover {
    border-color: var(--gold);
    transform: translateX(4px);
    box-shadow: var(--sh-sm);
  }
}

.check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px -2px rgba(74, 158, 184, .5);
}

.check svg { width: 18px; height: 18px; }

.diff-list h4 {
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2px;
}

.diff-list p {
  font-size: 14px;
  color: var(--ink-2);
}

/* -------- 10. DEPOIMENTOS -------- */
.testimonials {
  padding: var(--space-8) 0;
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--space-5);
  border: 1px solid var(--line-2);
  box-shadow: var(--sh-xs);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

@media (hover: hover) {
  .testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-card);
  }
}

.testimonial::before {
  content: "”";
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 60px;
  line-height: 1;
  color: var(--gold-soft);
  opacity: .8;
}

.testimonial .stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -.005em;
  font-variation-settings: "SOFT" 80, "opsz" 32;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line-2);
}

.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
}

.avatar-1 { background: var(--grad-cool); }
.avatar-2 { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--navy); }
.avatar-3 { background: var(--grad-sun); color: var(--navy); }

.testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

.testimonial-author small {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
}

/* -------- 11. SOBRE -------- */
.about {
  padding: var(--space-8) 0;
  background: linear-gradient(180deg, var(--paper) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
  margin-bottom: var(--space-6);
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: var(--space-7);
    margin-bottom: var(--space-7);
  }
}

.about-text h2 { color: var(--navy); margin-bottom: var(--space-4); }
.about-text p { font-size: 17px; margin-bottom: var(--space-3); max-width: 540px; }
.about-text p strong { color: var(--ink); font-weight: 700; }

.about-quote {
  margin: var(--space-5) 0 0;
  padding-left: var(--space-4);
  position: relative;
  max-width: 480px;
}

.about-quote .quote-line {
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-soft) 100%);
  border-radius: 2px;
}

.about-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--navy);
  margin: 0;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}

/* Visual side */
.about-visual {
  position: relative;
  isolation: isolate;
}

.about-shape {
  position: absolute;
  width: 78%;
  height: 78%;
  top: 28px;
  left: -22px;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  border-radius: 28px 220px 28px 28px;
  opacity: .35;
  z-index: 0;
}

.about-photo {
  position: relative;
  border-radius: 28px 220px 28px 28px;
  overflow: hidden;
  box-shadow: var(--sh-card);
  aspect-ratio: 5/6;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 600' preserveAspectRatio='xMidYMid slice'><defs><radialGradient id='g' cx='50%25' cy='30%25'><stop offset='0%25' stop-color='%23f4d99a' stop-opacity='0.45'/><stop offset='100%25' stop-color='%231e3a5f' stop-opacity='0'/></radialGradient></defs><rect width='500' height='600' fill='url(%23g)'/><circle cx='250' cy='220' r='80' fill='%23ffffff' fill-opacity='0.18'/><path d='M110 600 Q110 410 250 410 Q390 410 390 600 Z' fill='%23ffffff' fill-opacity='0.18'/></svg>"),
    var(--grad-cool);
  background-size: cover;
  z-index: 1;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  color: transparent;
  font-size: 0;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(30, 58, 95, .25));
  pointer-events: none;
}

.about-badge {
  position: absolute;
  right: -12px;
  bottom: 48px;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  max-width: 240px;
  animation: floatY 4s ease-in-out infinite;
}

.about-badge .badge-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  display: grid;
  place-items: center;
}

.about-badge .badge-icon svg {
  width: 22px;
  height: 22px;
}

.about-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.about-badge small {
  font-size: 11px;
  color: var(--ink-3);
}

/* Stat cards */
.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}

.stat-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 183, 92, .10) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}

@media (hover: hover) {
  .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: transparent;
  }
  .stat-card:hover::before { opacity: 1; }
}

.stat-icon {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px -4px rgba(232, 183, 92, .4);
}

.stat-icon svg {
  width: 26px;
  height: 26px;
}

.stat-body { min-width: 0; }

.stat-body strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: var(--blue);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-variant-numeric: tabular-nums;
}

.stat-body small {
  display: block;
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 600;
  letter-spacing: .02em;
  margin-top: 6px;
}

/* -------- 12. FAQ -------- */
.faq {
  padding: var(--space-8) 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq-item {
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--line-2);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--sh-sm);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  list-style: none;
  transition: color .2s;
}

.faq-item summary::-webkit-details-marker { display: none; }
@media (hover: hover) {
  .faq-item summary:hover { color: var(--blue); }
}

.faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 22px;
  height: 22px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--blue);
  border-radius: 2px;
  transition: transform .3s var(--ease-out);
}

.faq-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}

.faq-item[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg); }

.faq-body {
  padding: 0 var(--space-5) var(--space-4);
}

.faq-body p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* -------- 13. CTA FINAL -------- */
.cta-final {
  position: relative;
  padding: var(--space-8) 0;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-bg::before,
.cta-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cta-bg::before {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(74, 158, 184, .5), transparent 70%);
}

.cta-bg::after {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(232, 183, 92, .45), transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: #fff;
  margin-bottom: var(--space-3);
}

.cta-inner h2 em { color: var(--gold-soft); }

.cta-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, .82);
  margin-bottom: var(--space-5);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.cta-trust {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.cta-trust small {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .04em;
}

.cta-trust strong { color: #fff; font-weight: 700; }

/* -------- 14. FOOTER -------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .65);
  padding: var(--space-7) 0 var(--space-4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-6); } }

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: var(--space-3);
  filter: brightness(1.5);
}

.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(255, 255, 255, .75);
  max-width: 320px;
  margin-bottom: var(--space-4);
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: var(--space-2);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .8);
  transition: background .2s, color .2s, transform .2s;
}

@media (hover: hover) {
  .footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
  }
}

.footer-social svg { width: 18px; height: 18px; }

.footer-col h5 {
  color: #fff;
  font-size: 12px;
  letter-spacing: .22em;
  margin-bottom: var(--space-3);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li, .footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.5;
  transition: color .2s;
}

@media (hover: hover) {
  .footer-col a:hover { color: var(--gold); }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.footer-bottom small {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
}

.footer-credits {
  font-style: italic;
  font-family: var(--serif);
}

/* -------- 15. WHATSAPP FLOATING -------- */
.wpp-float {
  position: fixed;
  right: calc(16px + env(safe-area-inset-right, 0));
  bottom: calc(16px + env(safe-area-inset-bottom, 0));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wpp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -5px rgba(37, 211, 102, .55);
  z-index: 90;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

@media (hover: hover) {
  .wpp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 16px 40px -5px rgba(37, 211, 102, .7);
  }
}

.wpp-float svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}

.wpp-float.is-hidden {
  transform: scale(.6) translateY(20px);
  opacity: 0;
  pointer-events: none;
}

.wpp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wpp);
  animation: pulse 2s ease-out infinite;
  z-index: 0;
}

@keyframes pulse {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (min-width: 768px) {
  .wpp-float {
    right: 28px;
    bottom: 28px;
    width: 64px;
    height: 64px;
  }
  .wpp-float svg { width: 30px; height: 30px; }
}

/* --- Performance: paint sob demanda fora da fold (Global) --- */
.differentials,
.testimonials,
.about,
.faq,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* ====================================================================
   17. MOBILE OPTIMIZATIONS (≤ 767px)
   Performance, layout, touch targets e área segura para sticky CTA.
   ==================================================================== */
@media (max-width: 767px) {

  /* --- Tipografia mais compacta --- */
  h1 { font-size: clamp(28px, 7.5vw, 38px); line-height: 1.08; }
  h2 { font-size: clamp(26px, 6.2vw, 34px); }
  .section-header .section-sub { font-size: 16px; }
  .hero-text .lead { font-size: 17px; }
  .trust-text p, .about-text p, .emotional-text p { font-size: 16px; }

  /* --- Section paddings: 96px → 64px --- */
  .hero { padding: var(--space-6) 0 var(--space-7); }
  .services,
  .emotional,
  .differentials,
  .testimonials,
  .about,
  .faq,
  .cta-final { padding: var(--space-7) 0; }

  .trust-section { padding: var(--space-6) 0; }

  /* --- Performance: blobs custosos em GPU mobile --- */
  .hero-bg .blob,
  .cta-bg::before,
  .cta-bg::after { filter: blur(50px); opacity: .35; }

  .hero-bg .blob-1 { width: 360px; height: 360px; top: -100px; right: -80px; }
  .hero-bg .blob-2 { width: 320px; height: 320px; bottom: -120px; left: -100px; }

  .cta-bg::before { width: 380px; height: 380px; top: -120px; left: -100px; }
  .cta-bg::after  { width: 320px; height: 320px; bottom: -100px; right: -80px; }


  /* --- Hero: foto ligeiramente menos alta em mobile --- */
  .hero-photo {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 4 / 5;
    border-radius: 160px 24px 24px 24px;
  }

  /* Floating cards: mais discretos em mobile, alinhados às bordas */
  .hero-floating-card {
    left: 8px;
    bottom: 12px;
    padding: 10px 14px;
    gap: 10px;
    border-radius: var(--r-sm);
  }
  .hero-floating-card strong { font-size: 13px; }
  .hero-floating-card small { font-size: 10px; }
  .floating-avatars span { width: 26px; height: 26px; margin-right: -8px; }

  .hero-floating-rating {
    right: 8px;
    top: 12px;
    padding: 8px 12px;
    border-radius: var(--r-sm);
  }

  /* --- Hero CTAs full-width (área de toque generosa) --- */
  .hero-ctas { gap: var(--space-2); flex-direction: column; }
  .hero-ctas .btn { width: 100%; min-height: 52px; }

  /* --- Trust numbers respiram --- */
  .num-card { padding: var(--space-3); }
  .num-card .num { font-size: 36px; }
  .num-card .num small { font-size: 20px; }
  .num-card .num-label { font-size: 11px; letter-spacing: .08em; }

  /* --- Emocional: quote contida --- */
  .emotional-quote {
    right: 12px;
    bottom: -16px;
    max-width: calc(100% - 48px);
    padding: var(--space-3) var(--space-4);
  }
  .emotional-quote p { font-size: 16px; }
  .emotional-quote .quote-mark { font-size: 44px; margin-top: 18px; margin-bottom: 8px; }

  /* --- About: badge contida, shape discreto --- */
  .about-badge {
    right: 8px;
    bottom: 24px;
    padding: 12px 14px;
    max-width: 220px;
  }
  .about-shape { top: 16px; left: -12px; width: 70%; }
  .about-quote p { font-size: 18px; }
  .stat-body strong { font-size: 36px; }

  /* --- CTA final empilhado --- */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2);
  }
  .cta-buttons .btn { width: 100%; min-height: 56px; }
  .btn-primary-large,
  .btn-wpp-large { padding: 16px 24px; font-size: 15px; }
  .cta-sub { font-size: 16px; }

  /* --- FAQ touch-friendly --- */
  .faq-item summary {
    padding: var(--space-4);
    font-size: 16px;
    min-height: 56px;
  }
  .faq-body { padding: 0 var(--space-4) var(--space-3); }
  .faq-body p { font-size: 15px; }

  /* --- Footer empilhado e legível --- */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
  .footer-col li, .footer-col a { font-size: 15px; line-height: 1.7; }
  .footer-col a { display: inline-block; padding: 4px 0; }

  /* --- Header mobile --- */
  .brand img { height: 40px; }

  /* Service cards: padding reduzido + link com área de toque ampliada */
  .service-card { padding: var(--space-4); }
  .service-link { padding: 6px 0; min-height: 32px; }

  /* Diferenciais: respiração extra para leitura */
  .diff-list li { padding: var(--space-3); }

  /* Garante que o conteúdo não fique embaixo do sticky CTA bar */
  body { padding-bottom: 76px; }

  /* WhatsApp flutuante reposicionado acima do sticky CTA bar */
  .wpp-float {
    bottom: calc(88px + env(safe-area-inset-bottom, 0));
    right: 14px;
    width: 52px;
    height: 52px;
  }
  .wpp-float svg { width: 26px; height: 26px; }
}

/* --- Telas estreitas (≤ 480px): header mais limpo --- */
@media (max-width: 480px) {
  .header-cta .btn-wpp span { display: none; }
  .header-cta .btn-wpp { padding: 10px 12px; }
}

/* --- Telas muito estreitas (< 380px): refino extra --- */
@media (max-width: 379px) {
  .container { padding: 0 16px; }
  h1 { font-size: clamp(26px, 7vw, 32px); }
  .hero-floating-rating { top: 10px; padding: 6px 10px; }
  .hero-floating-rating .stars { font-size: 12px; }
  .hero-floating-rating small { font-size: 10px; }
  .hero-floating-card { padding: 8px 12px; }
  .num-card .num { font-size: 32px; }
  .num-card .num small { font-size: 18px; }
  .mobile-cta-bar .mcta span { font-size: 12px; }
}

/* ====================================================================
   18. STICKY MOBILE CTA BAR
   Barra fixa de conversão no rodapé do viewport mobile.
   ==================================================================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0));
  gap: 8px;
  box-shadow: 0 -10px 30px -10px rgba(30, 58, 95, .15);
  transform: translateY(110%);
  transition: transform .35s var(--ease-out), opacity .25s var(--ease);
}

.mobile-cta-bar.is-visible {
  transform: translateY(0);
}

.mobile-cta-bar.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.mobile-cta-bar .mcta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  padding: 10px 8px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--ink);
  transition: transform .15s var(--ease), background .2s var(--ease);
}

.mobile-cta-bar .mcta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mobile-cta-bar .mcta:active { transform: scale(.96); }

.mobile-cta-bar .mcta-wpp {
  background: var(--wpp);
  color: #fff;
}

.mobile-cta-bar .mcta-call {
  background: var(--paper-2);
  color: var(--navy);
  flex: 0 0 auto;
  padding: 10px 14px;
}

.mobile-cta-bar .mcta-primary {
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.mobile-cta-bar .mcta-primary svg { width: 16px; height: 16px; }

@media (max-width: 767px) {
  .mobile-cta-bar { display: flex; }
}

/* Esconde sticky bar quando o teclado virtual está provavelmente aberto
   (orientação landscape muito baixa) — evita cobrir inputs */
@media (max-width: 767px) and (max-height: 480px) and (orientation: landscape) {
  .mobile-cta-bar { display: none; }
  body { padding-bottom: 0; }
}

/* -------- 16. SCROLL REVEAL -------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* -------- 17. FOCUS STATES (acessibilidade) -------- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.faq-item summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -------- 18. SELECTION -------- */
::selection {
  background: var(--gold);
  color: var(--navy);
}

/* ====================================================================
   19. WHATSAPP LEAD MODAL
   Captura nome/email/telefone antes de abrir o WhatsApp.
   Integra UTMs e dispara webhook para n8n.
   ==================================================================== */
.wa-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 16px;
}
.wa-modal[hidden] { display: none; }

.wa-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 35, 61, .72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: waBackdropIn .22s var(--ease-out) both;
}

@keyframes waBackdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.wa-modal__box {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: var(--space-6) var(--space-5) var(--space-5);
  width: 100%;
  max-width: 440px;
  box-shadow: var(--sh-lg);
  animation: waModalIn .32s var(--ease-out) both;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
}

@keyframes waModalIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

.wa-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  color: var(--ink-3);
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}

@media (hover: hover) {
  .wa-modal__close:hover {
    background: var(--paper-2);
    color: var(--ink);
  }
}

.wa-modal__close:active { transform: scale(.92); }

.wa-modal__bar {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: var(--space-3);
}

.wa-modal__title {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.012em;
  line-height: 1.2;
  margin: 0 0 6px;
}

.wa-modal__lead {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0 0 var(--space-4);
}

.wa-modal__form { display: block; }

.wa-modal__input {
  display: block;
  width: 100%;
  background: var(--paper);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 12px;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  box-sizing: border-box;
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
}

.wa-modal__input::placeholder { color: var(--ink-3); }

.wa-modal__input:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(232, 183, 92, .15);
}

.wa-modal__input:invalid:not(:placeholder-shown) {
  border-color: #d94c4c;
}

.wa-modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  background: var(--wpp);
  color: #fff;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .25s var(--ease);
  margin-top: 6px;
  min-height: 52px;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, .5);
}

@media (hover: hover) {
  .wa-modal__submit:hover {
    background: var(--wpp-dark);
    transform: translateY(-1px);
    box-shadow: 0 14px 36px -8px rgba(37, 211, 102, .6);
  }
}

.wa-modal__submit:active { transform: scale(.98); }

.wa-modal__submit[disabled] {
  opacity: .65;
  cursor: progress;
  pointer-events: none;
}

.wa-modal__privacy {
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: var(--space-3) 0 0;
}

/* Mobile: padding interno reduzido */
@media (max-width: 480px) {
  .wa-modal { padding: 12px; }
  .wa-modal__box {
    padding: var(--space-5) var(--space-4) var(--space-4);
    border-radius: var(--r-md);
  }
  .wa-modal__title { font-size: 20px; }
  .wa-modal__lead { font-size: 14px; }
}

/* Acessibilidade: foco visível no botão close e submit */
.wa-modal__close:focus-visible,
.wa-modal__submit:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
