﻿
/* ===== reset.css ===== */
/* ==========================================================================
   Reset / Normalize mÃ­nimo â€” LabLAAE Franquia LP
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--color-primary-500);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection {
  background: var(--color-primary-700);
  color: var(--color-white);
}


/* ===== variables.css ===== */
/* ==========================================================================
   Design Tokens â€” LabLAAE Franquia LP
   Paleta inspirada em lablaae.com.br (azul corporativo, clean, profissional)
   ========================================================================== */
:root {
  /* ===== Cores ===== */
  --color-primary-900: #0A2A5E;   /* azul institucional escuro (heading destaque) */
  --color-primary-700: #134B9C;   /* azul corporativo principal (CTA, links) */
  --color-primary-500: #1E6BD6;   /* azul claro (hover, elementos vivos) */
  --color-primary-300: #4F8FE0;
  --color-primary-100: #E6F0FB;   /* azul muito claro (fundos sutis, badges) */
  --color-primary-50:  #F4F8FD;

  --color-accent: #00B4D8;        /* ciano para detalhes e gradientes */

  --color-neutral-900: #0F172A;   /* texto principal */
  --color-neutral-800: #1E293B;
  --color-neutral-700: #334155;   /* texto corpo */
  --color-neutral-500: #64748B;   /* texto secundÃ¡rio */
  --color-neutral-400: #94A3B8;
  --color-neutral-300: #CBD5E1;   /* bordas sutis */
  --color-neutral-200: #E2E8F0;
  --color-neutral-100: #F1F5F9;   /* section--alt background */
  --color-neutral-50:  #F8FAFC;
  --color-white: #FFFFFF;

  --color-success: #16A34A;
  --color-danger:  #DC2626;

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

  --fs-xs:   0.75rem;   /* 12 */
  --fs-sm:   0.875rem;  /* 14 */
  --fs-base: 1rem;      /* 16 */
  --fs-md:   1.125rem;  /* 18 */
  --fs-lg:   1.25rem;   /* 20 */
  --fs-xl:   1.5rem;    /* 24 */
  --fs-2xl:  1.875rem;  /* 30 */
  --fs-3xl:  2.25rem;   /* 36 */
  --fs-4xl:  3rem;      /* 48 */
  --fs-hero: clamp(2rem, 5vw, 3.5rem);

  --fw-regular:    400;
  --fw-medium:     500;
  --fw-semibold:   600;
  --fw-bold:       700;
  --fw-extrabold:  800;

  --lh-tight:   1.15;
  --lh-snug:    1.3;
  --lh-normal:  1.5;
  --lh-relaxed: 1.65;

  /* ===== EspaÃ§amento (escala de 4px) ===== */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* ===== Layout ===== */
  --container-max: 1200px;
  --container-pad: var(--sp-5);

  /* ===== Border radius ===== */
  --radius-xs:   4px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 999px;

  /* ===== Sombras ===== */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, .08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, .10);
  --shadow-xl: 0 20px 48px rgba(15, 23, 42, .14);

  /* ===== TransiÃ§Ãµes ===== */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms ease;

  /* ===== Z-index ===== */
  --z-header:   100;
  --z-overlay:  200;

  /* ===== Header ===== */
  --header-h:   80px;
}


/* ===== base.css ===== */
/* ==========================================================================
   Base â€” tipografia, body, utilidades
   ========================================================================== */
body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-neutral-700);
  background: var(--color-white);
}

h1 {
  font-size: var(--fs-hero);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  color: var(--color-primary-900);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.625rem, 3vw, var(--fs-3xl));
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--color-primary-900);
  letter-spacing: -0.015em;
}

h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-neutral-900);
}

h4 {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--color-neutral-900);
}

p {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-neutral-700);
}

a {
  color: var(--color-primary-700);
  transition: color var(--t-fast);
}

a:hover {
  color: var(--color-primary-500);
}

strong {
  font-weight: var(--fw-semibold);
  color: var(--color-neutral-900);
}

/* ===== Layout helpers ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding: var(--sp-16) 0;
}

.section--alt {
  background: var(--color-neutral-100);
}

.section__head {
  max-width: 800px;
  margin: 0 auto var(--sp-12);
  text-align: left;
}

.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__head h2 + p,
.section__head .eyebrow + h2 {
  margin-top: var(--sp-4);
}

.section__head p {
  font-size: var(--fs-md);
  color: var(--color-neutral-700);
}

.section__footnote {
  margin-top: var(--sp-8);
  font-size: var(--fs-sm);
  color: var(--color-neutral-500);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-500);
  margin-bottom: var(--sp-3);
}

/* ===== Grid utilities ===== */
.grid {
  display: grid;
  gap: var(--sp-6);
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

/* ===== Acessibilidade ===== */
.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;
}

/* ===== Skip link ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--color-primary-900);
  color: var(--color-white);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  z-index: var(--z-overlay);
  transition: top var(--t-fast);
}

.skip-link:focus {
  top: 8px;
  color: var(--color-white);
}

/* ===== Scroll reveal (acionado por main.js) ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}

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

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


/* ===== components.css ===== */
/* ==========================================================================
   Components â€” botÃµes, cards, badges, navbar, accordion, float buttons
   ========================================================================== */

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-md);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  text-decoration: none;
  text-align: center;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  cursor: pointer;
  border: 0;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary-700);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--color-primary-900);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn--ghost:hover {
  background: var(--color-primary-100);
  color: var(--color-primary-900);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-primary-900);
}

.btn--white:hover {
  background: var(--color-neutral-100);
  color: var(--color-primary-900);
  transform: translateY(-1px);
}

.btn--lg {
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--fs-md);
  min-height: 52px;
}

.btn--block {
  display: flex;
  width: 100%;
}

/* ===== Badge ===== */
.badge {
  display: inline-block;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--color-primary-100);
  color: var(--color-primary-700);
  border-radius: var(--radius-pill);
}

.badge--success {
  background: rgba(22, 163, 74, 0.12);
  color: var(--color-success);
}

.badge--white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  backdrop-filter: blur(8px);
}

/* ===== Cards ===== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-neutral-200);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.card ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.card li {
  position: relative;
  padding-left: var(--sp-8);
  line-height: var(--lh-relaxed);
}

.card--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-success);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.card--x li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-danger);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}


/* ===== Header ===== */
.site-header {
  /* Mobile-first: header oculto. Liberado em >=768px no responsive.css */
  display: none;
  position: sticky;
  top: 0;
  background: var(--color-white);
  z-index: var(--z-header);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-neutral-200);
}

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

.header__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.header__logo img {
  height: 60px;
  width: auto;
  max-width: 100%;
}

.header__nav {
  display: none;
}

.header__nav ul {
  display: flex;
  gap: var(--sp-6);
}

.header__nav a {
  color: var(--color-neutral-700);
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  transition: color var(--t-fast);
}

.header__nav a:hover {
  color: var(--color-primary-700);
}

.header__cta {
  display: none;
}

.header__toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary-900);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-neutral-200);
  padding: var(--sp-4) var(--container-pad) var(--sp-8);
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  transition:
    transform var(--t-base),
    visibility 0s linear var(--t-base);
  z-index: calc(var(--z-header) - 1);
  box-shadow: var(--shadow-lg);
}

.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition:
    transform var(--t-base),
    visibility 0s linear 0s;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.mobile-menu a {
  display: block;
  padding: var(--sp-4);
  color: var(--color-neutral-900);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
}

.mobile-menu a:hover {
  background: var(--color-primary-100);
  color: var(--color-primary-900);
}

.mobile-menu .btn {
  margin-top: var(--sp-4);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-primary-900);
  color: var(--color-neutral-300);
  padding: var(--sp-16) 0 var(--sp-6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer h4 {
  color: var(--color-white);
  margin-bottom: var(--sp-3);
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer p,
.site-footer a {
  color: var(--color-neutral-300);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

.site-footer a:hover {
  color: var(--color-white);
}

.footer__brand p {
  margin-top: var(--sp-4);
}

.footer__logo {
  display: block;
  height: 80px;
  width: auto;
}

.footer__bottom {
  padding-top: var(--sp-6);
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--color-neutral-400);
}

/* ===== Accordion (FAQ) ===== */
.accordion {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 820px;
  margin: 0 auto;
}

.accordion details {
  background: var(--color-white);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.accordion details[open] {
  border-color: var(--color-primary-300);
  box-shadow: var(--shadow-sm);
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-5) var(--sp-6);
  font-weight: var(--fw-semibold);
  color: var(--color-neutral-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-size: var(--fs-md);
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-primary-100);
  color: var(--color-primary-700);
  border-radius: 50%;
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  transition: transform var(--t-fast), background var(--t-fast);
  flex-shrink: 0;
}

.accordion details[open] summary::after {
  content: "âˆ’";
  background: var(--color-primary-700);
  color: var(--color-white);
}

.accordion details > p {
  padding: 0 var(--sp-6) var(--sp-6);
  color: var(--color-neutral-700);
  line-height: var(--lh-relaxed);
}



/* ===== sections.css ===== */
/* ==========================================================================
   Sections â€” estilos especÃ­ficos por bloco da LP
   ========================================================================== */

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: var(--sp-16) 0 var(--sp-20);
  background: linear-gradient(180deg, var(--color-primary-50) 0%, var(--color-white) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 107, 214, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
  position: relative;
}

.hero__content > .badge {
  margin-bottom: var(--sp-5);
}

.hero h1 {
  margin-bottom: var(--sp-5);
}

.hero__sub {
  font-size: var(--fs-md);
  color: var(--color-neutral-700);
  margin-bottom: var(--sp-8);
  max-width: 560px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--color-neutral-200);
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-neutral-700);
}

.hero__trust li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-primary-500);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Variante para hospedar formulÃ¡rio RD Station */
.hero__media--form {
  background: var(--color-white);
  overflow: visible;
  padding: var(--sp-8) var(--sp-6);
  border: 1px solid var(--color-neutral-200);
  /* Reserva espaÃ§o para o form RD que carrega async, evitando CLS */
  min-height: 620px;
}

.hero__media--form > div[role="main"] {
  width: 100%;
  min-height: 560px;
}

/* Placeholder visÃ­vel enquanto o form RD nÃ£o renderiza */
.hero__media--form > div[role="main"]:empty::before {
  content: "Carregando formulÃ¡rioâ€¦";
  display: block;
  text-align: center;
  padding: var(--sp-16) var(--sp-4);
  color: var(--color-neutral-500);
  font-size: var(--fs-sm);
}

/* ===== Stats (mercado) ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}

.stat {
  background: var(--color-white);
  padding: var(--sp-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-neutral-200);
  text-align: left;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat strong {
  display: block;
  font-size: clamp(1.875rem, 3vw, var(--fs-4xl));
  font-weight: var(--fw-extrabold);
  color: var(--color-primary-700);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}

.stat span {
  font-size: var(--fs-sm);
  color: var(--color-neutral-700);
  line-height: var(--lh-snug);
}

/* ===== Pillars ===== */
.pillar {
  background: var(--color-white);
  padding: var(--sp-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-neutral-200);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-300);
}

.pillar__icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary-100);
  color: var(--color-primary-700);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}

.pillar__icon svg {
  width: 28px;
  height: 28px;
}

.pillar h3 {
  margin-bottom: var(--sp-3);
  color: var(--color-primary-900);
}

.pillar p {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

/* ===== Check list ===== */
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.check-list li {
  position: relative;
  padding-left: var(--sp-8);
  line-height: var(--lh-relaxed);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary-700);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== Sobre / 2 col ===== */
.section__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
}

.section__split figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.section__split figure img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

/* ===== Support list (10 frentes) ===== */
.support-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  counter-reset: support;
  list-style: none;
}

.support-list li {
  position: relative;
  background: var(--color-white);
  padding: var(--sp-5) var(--sp-5) var(--sp-5) var(--sp-16);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-neutral-200);
  line-height: var(--lh-relaxed);
  counter-increment: support;
}

.support-list li::before {
  content: counter(support, decimal-leading-zero);
  position: absolute;
  left: var(--sp-5);
  top: var(--sp-5);
  font-size: var(--fs-md);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary-500);
  font-variant-numeric: tabular-nums;
}

/* ===== Investimento â€” destaques (cards grandes) ===== */
.invest-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-12);
}

.invest-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-xl);
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
  overflow: hidden;
}

.invest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.invest-card__label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-500);
  margin-bottom: var(--sp-3);
}

.invest-card__value {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  color: var(--color-primary-900);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-3);
}

.invest-card__hint {
  display: block;
  font-size: var(--fs-sm);
  color: var(--color-neutral-500);
  line-height: var(--lh-snug);
  max-width: 36ch;
  margin: 0 auto;
}

.invest-card--primary {
  background: linear-gradient(135deg, var(--color-primary-900) 0%, var(--color-primary-700) 100%);
  border-color: transparent;
  color: var(--color-white);
}

.invest-card--primary::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.invest-card--primary .invest-card__label {
  color: rgba(255, 255, 255, 0.7);
}

.invest-card--primary .invest-card__value {
  color: var(--color-white);
}

.invest-card--primary .invest-card__hint {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Investimento â€” bloco da lista (o que estÃ¡ incluso) ===== */
.invest-includes {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-neutral-200);
  padding: var(--sp-10) var(--sp-6);
  box-shadow: var(--shadow-sm);
}

.invest-includes h3 {
  text-align: center;
  font-size: var(--fs-xl);
  color: var(--color-primary-900);
  margin-bottom: var(--sp-8);
}

/* ===== Includes list ===== */
.includes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-3);
  list-style: none;
}

.includes li {
  position: relative;
  padding: var(--sp-4) var(--sp-4) var(--sp-4) var(--sp-10);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-neutral-200);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-neutral-900);
}

.includes li::before {
  content: "";
  position: absolute;
  left: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary-500);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== Timeline (prÃ³ximos passos) ===== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  counter-reset: step;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.timeline li {
  position: relative;
  background: var(--color-white);
  padding: var(--sp-5) var(--sp-5) var(--sp-5) var(--sp-16);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-neutral-200);
  counter-increment: step;
}

.timeline li::before {
  content: counter(step);
  position: absolute;
  left: var(--sp-4);
  top: var(--sp-5);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-700);
  color: var(--color-white);
  border-radius: 50%;
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
}

.timeline li h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--sp-1);
  color: var(--color-primary-900);
}

.timeline li p {
  font-size: var(--fs-sm);
  margin: 0;
}

/* ===== Final CTA ===== */
.cta-final {
  background: linear-gradient(135deg, var(--color-primary-900) 0%, var(--color-primary-700) 100%);
  color: var(--color-white);
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta-final .container {
  position: relative;
  text-align: center;
}

.cta-final .badge {
  margin-bottom: var(--sp-6);
}

.cta-final h2 {
  color: var(--color-white);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  max-width: 760px;
  margin: 0 auto var(--sp-5);
}

.cta-final p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-md);
  max-width: 600px;
  margin: 0 auto var(--sp-10);
}

/* ==========================================================================
   PÃ¡gina de Obrigado (obrigado.html)
   Layout: card Ãºnico centralizado com logo, badge, headline, CTA e nota
   ========================================================================== */

.page--thanks {
  background: linear-gradient(180deg, var(--color-primary-50) 0%, var(--color-neutral-100) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks {
  width: 100%;
  padding: var(--sp-10) 0;
}

.thanks-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-neutral-200);
  box-shadow: var(--shadow-lg);
  padding: clamp(var(--sp-10), 6vw, var(--sp-20)) clamp(var(--sp-6), 5vw, var(--sp-16));
  text-align: center;
}

/* ===== Badge "SolicitaÃ§Ã£o recebida com sucesso" ===== */
.thanks-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-5) var(--sp-2) var(--sp-2);
  background: var(--color-primary-100);
  color: var(--color-primary-700);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-6);
}

.thanks-badge__icon {
  width: 24px;
  height: 24px;
  background: var(--color-primary-700);
  color: var(--color-white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.thanks-badge__icon svg {
  width: 14px;
  height: 14px;
}

/* ===== Headline ===== */
.thanks-card h1 {
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary-900);
  letter-spacing: -0.025em;
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-6);
}

.thanks-card__lead {
  font-size: var(--fs-md);
  color: var(--color-neutral-700);
  line-height: var(--lh-relaxed);
  max-width: 560px;
  margin: 0 auto var(--sp-10);
}

/* ===== BotÃ£o pill com seta circular ===== */
.btn-thanks {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-3) var(--sp-3) var(--sp-8);
  background: var(--color-primary-700);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 8px 20px rgba(19, 75, 156, 0.25);
}

/* Anel pulsante para chamar atenÃ§Ã£o */
.btn-thanks::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  animation: btn-thanks-ring 2s ease-out infinite;
  pointer-events: none;
}

@keyframes btn-thanks-ring {
  0%   { box-shadow: 0 0 0 0   rgba(30, 107, 214, 0.55); }
  100% { box-shadow: 0 0 0 18px rgba(30, 107, 214, 0);    }
}

.btn-thanks:hover {
  background: var(--color-primary-900);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(19, 75, 156, 0.32);
}

.btn-thanks__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transition: background var(--t-fast);
  flex-shrink: 0;
  animation: btn-thanks-arrow-nudge 1.8s ease-in-out infinite;
}

@keyframes btn-thanks-arrow-nudge {
  0%, 70%, 100% { transform: translateX(0); }
  35%           { transform: translateX(4px); }
}

.btn-thanks:hover .btn-thanks__arrow {
  background: rgba(255, 255, 255, 0.28);
}

.btn-thanks__arrow svg {
  width: 18px;
  height: 18px;
}

@media (prefers-reduced-motion: reduce) {
  .btn-thanks::before,
  .btn-thanks__arrow {
    animation: none;
  }
}

/* ===== Caixa de nota inferior ===== */
.thanks-card__note {
  margin-top: var(--sp-10);
  padding: var(--sp-5) var(--sp-6);
  background: var(--color-neutral-50);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  color: var(--color-neutral-700);
  line-height: var(--lh-relaxed);
}


/* ===== responsive.css ===== */
/* ==========================================================================
   Responsive â€” mobile-first overrides
   sm: 480px / md: 768px / lg: 1024px / xl: 1280px
   ========================================================================== */

/* ===== >= 768px (tablet) ===== */
@media (min-width: 768px) {
  :root {
    --container-pad: var(--sp-8);
  }

  .section {
    padding: var(--sp-20) 0;
  }

  .section__head {
    margin-bottom: var(--sp-16);
  }

  /* Header â€” visÃ­vel a partir de tablet */
  .site-header { display: block; }
  .header__nav { display: block; }
  .header__cta { display: inline-flex; }
  .header__toggle { display: none; }
  .mobile-menu { display: none !important; }

  /* Grids */
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }

  /* Hero */
  .hero {
    padding: var(--sp-20) 0 var(--sp-24);
  }
  .hero__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--sp-16);
  }

  /* Sobre 2 col */
  .section__split {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--sp-16);
  }

  /* Support list (10 frentes) â†’ 2 colunas */
  .support-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Investimento â€” destaques lado a lado */
  .invest-highlights {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }

  .invest-includes {
    padding: var(--sp-12) var(--sp-10);
  }

  /* Footer 2 col */
  .footer__grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

/* ===== >= 1024px (desktop) ===== */
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }

  .hero h1 {
    max-width: 580px;
  }

  /* Stats: 3-col em telas largas para distribuir 6 itens em 2 linhas */
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Includes: 3-col */
  .includes {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== >= 1280px ===== */
@media (min-width: 1280px) {
  .hero__grid {
    gap: var(--sp-20);
  }
}

/* ===== Print ===== */
@media print {
  .site-header, .cta-final, .mobile-menu { display: none !important; }
  body { color: #000; background: #fff; }
}

