/* ============================================================
   Inklo Pay — LP B2B para Prestadores
   Design system adaptado: paleta Inklo pura (roxo + dourado)
   Sem co-branding. Mobile-first | Cross-browser
   ============================================================ */

/* -------- Tokens -------- */
:root {
  /* Paleta Inklo — alinhada ao brandbook (inklo-tokens) */
  --inklo-purple: #79577A;        /* Roxo 500 */
  --inklo-purple-dark: #553D55;   /* Roxo 700 */
  --inklo-purple-deeper: #302331; /* Roxo 900 */
  --inklo-lilac: #B19EB2;         /* Roxo 300 */
  --inklo-lilac-soft: #E4DDE4;    /* Roxo 100 */
  --inklo-gold: #F2B84B;          /* dourado mantido como acento (fora do brandbook, decisão de design) */
  --inklo-gold-dark: #C58F2A;

  /* Semântico */
  --brand-primary: var(--inklo-purple);
  --brand-primary-dark: var(--inklo-purple-dark);
  --brand-accent: var(--inklo-gold);
  --brand-accent-dark: var(--inklo-gold-dark);

  /* Superfícies */
  --bg-main: #FFFFFF;            /* Neutral 0 */
  --bg-soft: #EEECEF;           /* Névoa (Neutral 100) */
  --bg-tint: #F5F5F5;           /* Cinza 96 (Neutral 50) */
  --surface: #FFFFFF;
  --border: #E7E7E7;            /* Cinza 91 (Neutral 200) */
  --border-strong: #C9C5CC;     /* Cinza 79 (Neutral 300) */
  --text-main: #1F1B24;         /* Tinta (Neutral 900) */
  --text-muted: #403B47;        /* Texto 25 (Neutral 700) */
  --text-soft: #6E6873;         /* Texto 43 (Neutral 500) */

  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-dark: #1DAE51;

  /* Sombras */
  --shadow-xs: 0 1px 2px rgba(60, 30, 80, 0.06);
  --shadow-sm: 0 2px 6px rgba(60, 30, 80, 0.08);
  --shadow: 0 6px 18px rgba(60, 30, 80, 0.10);
  --shadow-lg: 0 14px 36px rgba(60, 30, 80, 0.14);

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Tipografia */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --container-max: 1180px;
  --header-h-mobile: 60px;
  --header-h-desktop: 76px;
}

/* -------- Reset & base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-main);
  background: var(--bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-primary); text-decoration: none; }
a:hover { color: var(--brand-primary-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }
:focus-visible { outline: 3px solid var(--brand-primary); outline-offset: 2px; border-radius: var(--radius-xs); }

/* -------- Container -------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 24px; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h-mobile);
}
@media (min-width: 768px) { .site-header__inner { min-height: var(--header-h-desktop); gap: 20px; } }

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-header__logo {
  height: 24px;
  width: auto;
  display: block;
}
@media (min-width: 768px) { .site-header__logo { height: 28px; } }

.site-header__product-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: -0.01em;
}
.site-header__nav {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 1024px) { .site-header__nav { display: flex; } }
.site-header__nav a { color: var(--text-main); transition: color 0.18s; }
.site-header__nav a:hover { color: var(--brand-primary); }

.site-header .site-header__cta { display: none; }
@media (min-width: 768px) { .site-header .site-header__cta { display: inline-flex; } }

.site-header__menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 22px;
  color: var(--text-main);
  border-radius: var(--radius-xs);
}
@media (min-width: 1024px) { .site-header__menu-toggle { display: none; } }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h-mobile);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  z-index: 99;
  padding: 24px 20px;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.is-open { display: flex; }
@media (min-width: 768px) { .mobile-menu { top: var(--header-h-desktop); } }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 16px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: background-color 0.18s, color 0.18s, border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  text-decoration: none;
  cursor: pointer;
}
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  background-color: var(--brand-primary);
  color: #FFFFFF;
}
.btn--primary:hover, .btn--primary:focus-visible {
  background-color: var(--brand-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  color: #FFFFFF;
}

.btn--secondary {
  background-color: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.btn--secondary:hover { background-color: var(--bg-soft); color: var(--brand-primary-dark); }

.btn--whatsapp {
  background-color: var(--whatsapp);
  color: #FFFFFF;
}
.btn--whatsapp:hover { background-color: var(--whatsapp-dark); color: #FFFFFF; }

/* ============================================================
   HERO — com form inline
   ============================================================ */
.hero {
  background-color: var(--bg-soft);
  background-image: linear-gradient(135deg, var(--bg-soft) 0%, var(--inklo-lilac-soft) 60%, #FDF6E8 100%);
  padding: 40px 0 24px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 48px 0 32px; } }
@media (min-width: 1024px) { .hero { padding: 56px 0 40px; } }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1.15fr 0.85fr; gap: 56px; } }

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-primary);
  box-shadow: var(--shadow-xs);
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.hero__tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-accent);
}

.hero h1 {
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.12;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--brand-primary); }

.hero__subhead {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 560px;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-bottom: 24px;
}

.hero__metric {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hero__metric-value {
  font-size: 19px;
  font-weight: 700;
  color: var(--inklo-purple-dark);
}
.hero__metric-label {
  font-size: 12px;
  color: var(--text-muted);
}
.hero__metric-divider {
  width: 1px;
  height: 30px;
  background: var(--border-strong);
}
@media (max-width: 480px) { .hero__metric-divider { display: none; } }

.hero__microcopy {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 560px;
  margin: 0;
}

/* ============================================================
   SECTIONS BASE
   ============================================================ */
.section { padding: 56px 0; }
@media (min-width: 768px) { .section { padding: 72px 0; } }
@media (min-width: 1024px) { .section { padding: 88px 0; } }

.section--alt { background: var(--bg-soft); }

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 10px;
}

.section__title {
  font-size: clamp(22px, 3.5vw, 34px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.section__subtitle {
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   PAIN POINTS (dor do prestador)
   ============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .pain-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.pain-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: center;
}

.pain-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FDF0D5;
  color: var(--brand-accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.pain-card__icon svg {
  width: 26px;
  height: 26px;
}

.pain-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 8px;
}

.pain-card__copy {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   FEATURE HIGHLIGHTS (o que é o Inklo Pay)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-card__number {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.feature-card__number--gold { color: var(--brand-accent-dark); }

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 6px;
}

.feature-card__copy {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   PRODUCT SHOWCASE (imagem + texto lado a lado)
   ============================================================ */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 48px;
}
.product-showcase:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
  .product-showcase { grid-template-columns: 1.2fr 1fr; gap: 40px; margin-bottom: 64px; }
  .product-showcase--reverse { grid-template-columns: 1fr 1.2fr; }
  .product-showcase--reverse .product-showcase__visual { order: 2; }
  .product-showcase--reverse .product-showcase__content { order: 1; }
}

.product-showcase__visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

.product-showcase__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 8px;
}

.product-showcase__title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.product-showcase__copy {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 18px;
}

.product-showcase__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-showcase__list li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.45;
}
.product-showcase__list li::before {
  content: '✓';
  color: var(--brand-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   DARK SECTION (jornada mobile)
   ============================================================ */
.section--dark {
  background: var(--inklo-purple-deeper);
  background-image: linear-gradient(135deg, var(--inklo-purple-deeper) 0%, #302331 100%);
}
.section__eyebrow--light { color: var(--inklo-gold); }
.section__title--light { color: #FFFFFF; }
.section__subtitle--light { color: rgba(255,255,255,0.7); }

/* ============================================================
   MOBILE JOURNEY (5 telas lado a lado)
   ============================================================ */
.mobile-journey {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) { .mobile-journey { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .mobile-journey { grid-template-columns: repeat(5, 1fr); gap: 20px; } }

.mobile-journey__step {
  text-align: center;
}

.mobile-journey__phone {
  position: relative;
  width: 100%;
  max-width: 190px;
  margin: 0 auto 14px;
  background: #0d0d0d;
  border-radius: 28px;
  padding: 26px 7px 7px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.30), inset 0 0 0 1.5px #2c2c2c;
  transition: transform 0.2s;
}
.mobile-journey__step:hover .mobile-journey__phone { transform: scale(1.03); }
.mobile-journey__phone::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 13px;
  background: #000;
  border-radius: 7px;
  z-index: 2;
}
.mobile-journey__phone img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px 4px 18px 18px;
}

.mobile-journey__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 200px;
  margin: 0 auto;
}

.mobile-journey__number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--inklo-gold);
  color: var(--inklo-purple-deeper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.mobile-journey__text {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
}

.disclaimer-note--light {
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   BENEFITS (split prestador/paciente)
   ============================================================ */
.benefits-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1020px;
  margin: 0 auto;
}
@media (min-width: 768px) { .benefits-split { grid-template-columns: 1fr 1fr; gap: 24px; } }

.benefits-block {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
}
@media (min-width: 768px) { .benefits-block { padding: 36px 32px; } }

.benefits-block--prestador {
  background: var(--inklo-lilac-soft);
  border-color: var(--inklo-lilac);
}
.benefits-block--paciente {
  background: #FDF6E8;
  border-color: #EAD5A0;
}

.benefits-block__role {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.benefits-block--prestador .benefits-block__role { color: var(--brand-primary-dark); }
.benefits-block--paciente .benefits-block__role { color: var(--brand-accent-dark); }

.benefits-block__title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  margin: 0 0 16px;
}
.benefits-block--prestador .benefits-block__title { color: var(--brand-primary-dark); }
.benefits-block--paciente .benefits-block__title { color: var(--brand-accent-dark); }

.benefits-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.benefit-item:first-child { border-top: none; padding-top: 4px; }
.benefit-item__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.benefit-item__icon svg { width: 22px; height: 22px; }
.benefits-block--prestador .benefit-item__icon { background: var(--inklo-lilac-soft); color: var(--brand-primary); }
.benefits-block--paciente .benefit-item__icon { background: #FDF0D5; color: var(--brand-accent-dark); }
.benefit-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 2px;
  line-height: 1.3;
}
.benefit-item__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* ============================================================
   TRUST / SOCIAL PROOF
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 960px) { .trust-grid { grid-template-columns: repeat(5, 1fr); } }

.trust-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px 18px;
  border: 1px solid var(--border);
  text-align: center;
}

.trust-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--inklo-lilac-soft);
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.trust-card__icon svg {
  width: 24px;
  height: 24px;
}

.trust-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 6px;
}

.trust-card__copy {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Case callout */
.case-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  max-width: 780px;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .case-callout {
    flex-direction: row;
    text-align: left;
    padding: 28px 32px;
    gap: 24px;
  }
}

.case-callout--md {
  background: #E6F4F1;
  border-color: #D2ECE6;
}

.case-callout__logo {
  height: 36px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(24%) sepia(95%) saturate(1800%) hue-rotate(125deg) brightness(85%) contrast(95%);
}
@media (min-width: 768px) { .case-callout__logo { height: 42px; } }

.case-callout__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary-dark);
  background: var(--inklo-lilac-soft);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  margin-bottom: 8px;
}
.case-callout__badge--md {
  color: #026B62;
  background: #D2ECE6;
}

.case-callout__text {
  font-size: 15px;
  color: #6E6873;
  line-height: 1.55;
  margin: 0;
}
.case-callout--md .case-callout__text strong { color: #026B62; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  line-height: 1.4;
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--inklo-lilac-soft);
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item__answer-inner {
  padding: 0 0 20px 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.faq-item.is-open .faq-item__answer { max-height: 520px; }

/* ============================================================
   CTA INTERMEDIÁRIO (meio da página)
   ============================================================ */
.section--cta-mid {
  padding: 40px 0;
}
.cta-mid {
  background: var(--inklo-lilac-soft);
  border: 1px solid var(--inklo-lilac);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-mid {
    flex-direction: row;
    text-align: left;
    padding: 40px 40px;
    justify-content: space-between;
  }
}
.cta-mid h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--brand-primary-dark);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.cta-mid p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}
.cta-mid__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
  justify-content: center;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background-color: var(--brand-primary);
  background-image: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  padding: 48px 24px;
  border-radius: var(--radius-xl);
  text-align: center;
  color: #FFFFFF;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) { .final-cta { padding: 64px 32px; } }

.final-cta h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.final-cta p {
  font-size: clamp(14px, 1.3vw, 17px);
  margin: 0 0 24px;
  opacity: 0.92;
}

.final-cta__ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta .btn--primary {
  background-color: var(--brand-accent);
  color: var(--inklo-purple-dark);
}
.final-cta .btn--primary:hover { background-color: #FFFFFF; color: var(--brand-primary-dark); }

.final-cta .btn--secondary {
  background-color: rgba(255, 255, 255, 0.10);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.45);
}
.final-cta .btn--secondary:hover { background-color: rgba(255, 255, 255, 0.20); color: #FFFFFF; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--inklo-purple-deeper);
  color: #CCBFCC;
  padding: 48px 0 24px;
  font-size: 14px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; } }

.site-footer__logo {
  height: 26px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}
.site-footer__tagline {
  font-size: 13px;
  color: #B19EB2;
  line-height: 1.55;
  max-width: 280px;
  margin: 0;
}

.site-footer__title {
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li, .site-footer p { margin-bottom: 7px; }
.site-footer a { color: #CCBFCC; transition: color 0.18s; }
.site-footer a:hover { color: #FFFFFF; }

.site-footer__disclaimers {
  font-size: 12px;
  color: #B19EB2;
  line-height: 1.6;
  padding: 22px 0;
  border-top: 1px solid #553D55;
  border-bottom: 1px solid #553D55;
  margin-bottom: 18px;
}
.site-footer__disclaimers p { margin: 0 0 10px; }
.site-footer__disclaimers strong { color: #FFFFFF; }

.site-footer__copy {
  font-size: 12px;
  color: #B19EB2;
  text-align: center;
  margin: 0;
}

/* ============================================================
   STICKY CTA mobile + WhatsApp float
   ============================================================ */
.sticky-cta-mobile {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  background: var(--surface);
  box-shadow: 0 -4px 14px rgba(60, 30, 80, 0.10);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.sticky-cta-mobile .btn { flex: 1; }
@media (min-width: 768px) { .sticky-cta-mobile { display: none; } body { padding-bottom: 0; } }
@media (max-width: 767px) { body { padding-bottom: 76px; } }

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 88px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 98;
  transition: transform 0.18s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 26px; height: 26px; fill: #FFFFFF; }
@media (min-width: 768px) { .whatsapp-float { bottom: 24px; right: 24px; width: 56px; height: 56px; } .whatsapp-float svg { width: 28px; height: 28px; } }
/* No mobile a barra fixa já oferece WhatsApp; evita botão flutuante redundante e sobreposto. */
@media (max-width: 767px) { .whatsapp-float { display: none; } }

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-md { margin-top: 24px; }
.disclaimer-note {
  font-size: 12px;
  color: var(--text-soft);
  max-width: 720px;
  margin: 16px auto 0;
  text-align: center;
  line-height: 1.55;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .sticky-cta-mobile, .whatsapp-float, .final-cta { display: none !important; }
  body { color: #000; background: #FFF; }
}
