/* ==========================================
   CaixaFlow Landing Page — CSS
   ========================================== */

:root {
  --azul: #1A365D;
  --azul-medio: #2952A3;
  --verde: #27AE60;
  --verde-escuro: #1e8449;
  --vermelho: #C0392B;
  --amarelo: #F39C12;
  --cinza-claro: #F5F7FA;
  --cinza-medio: #E2E8F0;
  --texto: #1A202C;
  --texto-suave: #4A5568;
  --branco: #FFFFFF;
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.14);
  --shadow-verde: 0 8px 32px rgba(39,174,96,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--texto);
  line-height: 1.6;
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---- ANIMAÇÕES DE ENTRADA ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(243,156,18,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(243,156,18,0); }
}
@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- HEADER ---- */
.header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cinza-medio);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}
.header .container { display: flex; align-items: center; justify-content: space-between; }
.header-logo img { display: block; }
.btn-header {
  background: transparent;
  color: var(--azul);
  padding: 9px 22px;
  border-radius: 8px;
  border: 1.5px solid var(--azul);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-header:hover { background: var(--azul); color: white; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--azul);
  color: var(--branco);
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
}
.topbar a { color: #90CDF4; text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(140deg, #0f2550 0%, #1A365D 40%, #2C5282 75%, #1e3a5f 100%);
  color: var(--branco);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(41,82,163,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-bottom: 32px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}
.highlight {
  color: #7DD3FC;
  position: relative;
}
.hero .subtitle,
.highlight-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.65;
}
.highlight-sub {
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}
.hero-meta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
  font-weight: 500;
}

/* ---- HERO GRID ---- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}
.hero-content .badge { margin-bottom: 24px; }
.hero-content h1 {
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-bullets li {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.hero-meta { justify-content: flex-start; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-video-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.hero-video-container iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
}
.hero-unmute-btn {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(0,0,0,0.72);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.82rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  z-index: 10;
}
.hero-unmute-btn:hover { background: rgba(0,0,0,0.92); }
.hero-screen {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-meta { justify-content: center; }
  .hero-content h1 { margin-left: auto; margin-right: auto; }
  .hero-visual { display: flex; margin-top: 24px; }
  .hero-video-thumb, #heroVideoIframe { max-width: 100%; }
  .hero-bullets { align-items: center; }
}

/* ---- DEPOIMENTOS ---- */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 0;
}
.depo-card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--azul-medio);
  margin: 0;
}
.depo-card p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--texto);
  margin-bottom: 16px;
  font-style: italic;
}
.depo-card footer {
  font-size: 0.85rem;
  color: var(--texto-suave);
  font-weight: 600;
  font-style: normal;
}

/* ---- ROTINA (ANTI-ABANDONO) ---- */
.section-rotina { background: var(--cinza-claro); text-align: center; }
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.rotina-item {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.rotina-num { font-size: 2rem; margin-bottom: 4px; }
.rotina-item strong { color: var(--azul); font-size: 0.97rem; font-weight: 700; }
.rotina-item span { color: var(--texto-suave); font-size: 0.88rem; line-height: 1.5; }

/* ---- TENSÃO EMOCIONAL ---- */
.section-tensao {
  background: #0f2550;
  color: var(--branco);
  padding: 64px 0;
  text-align: center;
}
.tensao-frase {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
  max-width: 640px;
  margin: 0 auto 52px;
  letter-spacing: -0.01em;
}
.tensao-frase::before { content: '"'; }
.tensao-frase::after { content: '"'; }
.tensao-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.tensao-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
}
.tensao-item strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: #7DD3FC;
  line-height: 1;
}
.tensao-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

/* ---- RESULTADO VISUAL ---- */
.section-resultado {
  background: #0a1f44;
  padding: 80px 0;
  color: #fff;
  text-align: center;
}
.resultado-topo { margin-bottom: 48px; }
.badge-escuro {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.85);
}
.section-resultado h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 12px;
}
.resultado-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}
.dashboards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 700px) {
  .dashboards-grid { grid-template-columns: 1fr; }
}
.dashboard-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}
.dashboard-item--destaque {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
}
.dashboard-label {
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-align: left;
  letter-spacing: 0.3px;
  background: rgba(0,0,0,0.2);
}
.dashboard-img {
  width: 100%;
  display: block;
}
.resultado-rodape {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.resultado-rodape .seta { color: rgba(255,255,255,0.3); font-size: 1.2rem; }

/* ---- SIMPLICIDADE TAGS ---- */
.simplicidade-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -20px auto 28px;
}
.simplicidade-tags span {
  background: #EBF4FF;
  color: #1A365D;
  border: 1px solid #BFDBFE;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ---- ANTI-ABANDONO ---- */
.section-abandono { background: var(--branco); }
.section-abandono h2 { text-align: center; }
.section-abandono .lead { text-align: center; }
.abandono-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 48px 0 52px;
}
.abandono-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  border: 1px solid var(--cinza-medio);
  border-radius: var(--radius);
  background: var(--cinza-claro);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.abandono-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--azul-medio);
}
.abandono-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.abandono-text { display: flex; flex-direction: column; gap: 6px; }
.abandono-text strong { color: var(--azul); font-size: 1rem; font-weight: 700; }
.abandono-text span { color: var(--texto-suave); font-size: 0.9rem; line-height: 1.6; }
.abandono-frase {
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--azul);
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto;
  padding: 36px 32px;
  background: linear-gradient(135deg, #EBF4FF, #DBEAFE);
  border-radius: var(--radius);
  border-left: 5px solid var(--azul-medio);
}

/* ---- CTA REASSURANCE ---- */
.cta-reassurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.cta-reassurance--dark {
  justify-content: center;
  color: var(--texto-suave);
}
.cta-reassurance--light {
  justify-content: center;
  color: rgba(255,255,255,0.7);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #27AE60, #1e8449);
  color: var(--branco);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 17px 38px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-verde);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 36px rgba(39,174,96,0.5);
}
.btn-primary:hover::after {
  opacity: 1;
  animation: shimmer 0.8s ease;
}
.btn-large { font-size: 1.15rem; padding: 20px 52px; }

/* ---- SECTIONS ---- */
section { padding: 88px 0; }
section h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 52px;
  color: var(--azul);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ---- DORES ---- */
.section-dores { background: var(--cinza-claro); }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.dor-card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 3px solid transparent;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.dor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--azul-medio);
}
.dor-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #EBF4FF, #DBEAFE);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.dor-icon svg { width: 28px; height: 28px; color: var(--azul-medio); }
.dor-card h3 { font-size: 1.05rem; margin-bottom: 12px; color: var(--azul); font-weight: 700; }
.dor-card p { color: var(--texto-suave); font-size: 0.93rem; line-height: 1.65; }

/* ---- SOLUÇÃO ---- */
.badge-dark {
  display: inline-block;
  background: var(--azul);
  color: var(--branco);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-solucao { text-align: center; }
.lead {
  font-size: 1.1rem;
  color: var(--texto-suave);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.demo-box {
  background: var(--cinza-claro);
  border: 1px solid var(--cinza-medio);
  border-radius: var(--radius);
  padding: 44px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.demo-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--texto-suave);
  margin-bottom: 28px;
  font-weight: 600;
}
.steps { display: flex; flex-direction: column; gap: 28px; }
.step { display: flex; align-items: flex-start; gap: 20px; }
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul), var(--azul-medio));
  color: var(--branco);
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,54,93,0.3);
}
.step-text { display: flex; flex-direction: column; gap: 4px; padding-top: 8px; }
.step-text strong { font-size: 1rem; color: var(--azul); font-weight: 700; }
.step-text span { font-size: 0.9rem; color: var(--texto-suave); line-height: 1.6; }

/* ---- PRODUTO EM AÇÃO ---- */
.section-produto { background: #FFFFFF; }
.section-produto .lead { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.screen-item { display: flex; flex-direction: column; gap: 16px; }
.screen-step {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--azul), var(--azul-medio));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.screen-img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--cinza-medio);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.screen-img:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.screen-caption { display: flex; flex-direction: column; gap: 4px; }
.screen-caption strong { font-size: 15px; color: var(--texto); font-weight: 700; }
.screen-caption span { font-size: 13px; color: var(--texto-suave); line-height: 1.55; }

@media (max-width: 768px) { .screens-grid { grid-template-columns: 1fr; } }

/* ---- PARA QUEM É ---- */
.section-paraQuem { background: var(--cinza-claro); }
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.paraQuem-sim {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--verde);
}
.paraQuem-nao {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border-top: 4px solid #E2E8F0;
}
.paraQuem-sim h3 { color: var(--verde); margin-bottom: 20px; font-size: 1.05rem; font-weight: 700; }
.paraQuem-nao h3 { color: var(--texto-suave); margin-bottom: 20px; font-size: 1.05rem; font-weight: 700; }
.paraQuem-sim ul, .paraQuem-nao ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.paraQuem-sim li, .paraQuem-nao li {
  font-size: 0.95rem;
  color: var(--texto-suave);
  line-height: 1.5;
}

/* ---- PROVA SOCIAL ---- */
.depoimento {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--azul-medio);
  transition: transform 0.2s, box-shadow 0.2s;
}
.depoimento:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--amarelo); font-size: 1.1rem; margin-bottom: 12px; }
.depoimento p { color: var(--texto-suave); font-style: italic; margin-bottom: 16px; line-height: 1.65; }
.autor { font-size: 0.88rem; font-weight: 700; color: var(--azul); }

/* ---- ÂNCORA DE PREÇO ---- */
.pricing-anchor { display: flex; gap: 16px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.pricing-anchor-item { flex: 1; min-width: 220px; max-width: 300px; padding: 20px 24px; border-radius: 12px; text-align: center; display: flex; flex-direction: column; gap: 6px; }
.pricing-anchor-item--bad { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); }
.pricing-anchor-item--good { background: rgba(255,220,0,0.12); border: 2px solid var(--amarelo); }
.anchor-label { font-size: 0.85rem; opacity: 0.8; }
.anchor-price { font-size: 2rem; font-weight: 800; color: var(--branco); }
.pricing-anchor-item--good .anchor-price { color: var(--amarelo); }
.anchor-price small { font-size: 0.9rem; font-weight: 500; }
.anchor-note { font-size: 0.8rem; opacity: 0.7; }

/* ---- PREÇO ---- */
.section-preco { background: linear-gradient(140deg, #0f2550 0%, var(--azul) 50%, #1e3a5f 100%); color: var(--branco); }
.section-preco h2 { color: var(--branco); }
.pricing-card {
  background: var(--branco);
  border-radius: 20px;
  padding: 52px 48px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}
.pricing-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amarelo);
  color: #7B4F00;
  font-weight: 800;
  font-size: 12px;
  padding: 7px 28px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: pulse-badge 2.5s ease-in-out infinite;
}
.pricing-old { color: var(--texto-suave); font-size: 0.95rem; margin-bottom: 8px; }
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}
.preco-parcela-label { font-size: 1rem; font-weight: 600; color: var(--texto-suave); }
.preco-parcela-valor { font-size: 3.2rem; font-weight: 900; color: var(--azul); line-height: 1; letter-spacing: -0.03em; }
.pricing-avista { font-size: 0.9rem; color: var(--texto-suave); margin-bottom: 4px; }
.pricing-desc { color: var(--texto-suave); font-size: 0.85rem; margin-bottom: 28px; font-weight: 500; }
.pricing-list {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.pricing-list li { font-size: 0.95rem; color: var(--texto-suave); }
.garantia {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--texto-suave);
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 10px;
  padding: 14px 18px;
}

/* ---- FAQ ---- */
.section-faq { background: var(--cinza-claro); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--branco);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--cinza-medio); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--azul);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--texto-suave);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item p { padding: 0 24px 20px; color: var(--texto-suave); font-size: 0.93rem; line-height: 1.7; }

/* ---- VÍDEO DEPOIMENTO ---- */
.video-depoimento {
  max-width: 680px;
  margin: 0 auto 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cinza-medio);
}
.video-wrapper { position: relative; cursor: pointer; }
.video-thumb { width: 100%; display: block; }
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  cursor: pointer;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: transform 0.2s, background 0.2s;
  color: var(--azul);
  padding-left: 4px;
}
.video-play-btn:hover { transform: translate(-50%, -50%) scale(1.1); background: white; }
.video-depoimento video { width: 100%; display: block; }
.video-quote {
  padding: 22px 28px;
  background: var(--cinza-claro);
  border-top: 1px solid var(--cinza-medio);
}
.video-quote p { font-size: 1rem; font-weight: 600; color: var(--azul); font-style: italic; line-height: 1.55; }
.video-quote footer { margin-top: 8px; font-size: 0.85rem; color: var(--texto-suave); font-weight: 600; }

/* ---- CASOS DE CLIENTES ---- */
.casos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto 48px;
}
.caso-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.caso-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.caso-item img { width: 100%; height: auto; display: block; }
.caso-item span {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--texto-suave);
  padding: 10px;
  background: var(--cinza-claro);
  border-top: 1px solid var(--cinza-medio);
}

@media (max-width: 480px) {
  .casos-grid { gap: 10px; }
  .caso-item img { height: 110px; object-fit: cover; }
  .caso-item span { font-size: 11px; }
}

/* ---- AUTORIDADE CRIADOR ---- */
.section-criador { background: var(--cinza-claro); }
.criador-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: start;
}
.criador-foto {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid var(--branco);
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}
.criador-bio h3 { font-size: 1.5rem; font-weight: 800; color: var(--azul); margin-bottom: 4px; }
.criador-cargo { font-size: 0.9rem; font-weight: 600; color: var(--verde); margin-bottom: 16px; }
.criador-texto { font-size: 0.95rem; color: var(--texto-suave); line-height: 1.75; margin-bottom: 20px; }
.criador-credenciais { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.criador-credenciais li { font-size: 0.9rem; color: var(--texto-suave); }
.criador-social { display: flex; gap: 14px; margin-top: 20px; }
.criador-social a { color: var(--texto-suave); transition: color 0.2s; }
.criador-social a:hover { color: var(--verde); }
.criador-quote {
  background: linear-gradient(135deg, var(--azul), var(--azul-medio));
  border-radius: var(--radius);
  padding: 40px;
  border: none;
  margin: 0;
}
.criador-quote p { font-size: 1.05rem; color: rgba(255,255,255,0.92); font-style: italic; line-height: 1.75; margin-bottom: 20px; }
.criador-quote footer { font-size: 0.875rem; font-weight: 700; color: #7DD3FC; }

/* ---- LOGOS PARCEIROS ---- */
.logos-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--texto-suave);
  margin-bottom: 28px;
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.logo-item {
  background: var(--branco);
  border-radius: 10px;
  border: 1px solid var(--cinza-medio);
  height: 64px;
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.logo-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.logo-item img {
  max-height: 36px; max-width: 100%;
  object-fit: contain;
  filter: grayscale(50%);
  opacity: 0.75;
  transition: filter 0.2s, opacity 0.2s;
}
.logo-item:hover img { filter: grayscale(0%); opacity: 1; }

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

/* ---- CTA FINAL ---- */
.section-cta-final {
  background: linear-gradient(140deg, #0f2550 0%, #1A365D 50%, #1e3a5f 100%);
  color: var(--branco);
  text-align: center;
  padding: 110px 0;
}
.section-cta-final h2 { color: var(--branco); font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -0.02em; }
.section-cta-final p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

/* ---- FOOTER ---- */
.footer {
  background: #080F1E;
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 52px 0;
}
.footer-brand { font-size: 1.4rem; font-weight: 800; color: var(--branco); margin-bottom: 12px; }
.footer p { margin-bottom: 8px; font-size: 0.9rem; }
.footer strong { color: rgba(255,255,255,0.85); }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: var(--branco); }
.footer-social { display: flex; justify-content: center; gap: 12px; margin: 16px 0; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
  text-decoration: none;
}
.footer-social a:hover { border-color: white; color: white; background: rgba(255,255,255,0.1); }
.footer-small { font-size: 0.8rem; margin-top: 16px; }

/* ---- DEMO VIDEO ---- */
.section-demo-video { padding: 80px 0; background: var(--bg); }
.demo-video-wrap { margin-top: 32px; max-width: 800px; margin-left: auto; margin-right: auto; }
.demo-video-thumb {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}
.demo-video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.2s; }
.demo-video-thumb:hover img { opacity: 0.85; }
.demo-video-thumb .video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* ---- PÁGINAS LEGAIS ---- */
.section-legal { padding: 64px 0; min-height: 80vh; }
.container-narrow { max-width: 720px; }
.section-legal h1 { font-size: 2rem; color: var(--azul); margin-bottom: 8px; font-weight: 800; }
.legal-updated { font-size: 0.85rem; color: var(--texto-suave); margin-bottom: 40px; }
.section-legal h2 { font-size: 1.1rem; color: var(--azul); margin: 32px 0 12px; text-align: left; font-weight: 700; }
.section-legal p, .section-legal li { font-size: 0.95rem; line-height: 1.75; color: var(--texto); margin-bottom: 12px; }
.section-legal ul { padding-left: 20px; margin-bottom: 16px; }
.section-legal a { color: var(--azul-medio); font-weight: 600; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero { padding: 72px 0 64px; }
  .hero-meta { gap: 12px; }
  .demo-box { padding: 28px 20px; }
  .pricing-card { padding: 44px 24px; }
  .preco-parcela-valor { font-size: 2.6rem; }
}

/* ---- BLOG INDEX ---- */
.blog-index { max-width: 900px; margin: 0 auto; padding: 56px 24px 80px; }
.blog-index-header { margin-bottom: 48px; }
.blog-index-header h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; color: var(--azul); margin-bottom: 8px; }
.blog-index-header p { color: var(--texto-suave); font-size: 1rem; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--branco);
  border: 1px solid var(--cinza-medio);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--azul-medio); }
.blog-card-tag {
  display: inline-block;
  background: #EBF4FF;
  color: var(--azul-medio);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.blog-card-title { font-size: 1.05rem; font-weight: 700; color: var(--azul); line-height: 1.4; margin-bottom: 10px; }
.blog-card-desc { font-size: 0.9rem; color: var(--texto-suave); line-height: 1.6; margin-bottom: 16px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; font-size: 0.82rem; color: #999; }
.blog-card-meta span { display: flex; align-items: center; gap: 4px; }
@media (max-width: 680px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---- BLOG ARTIGO ---- */
.blog-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--verde), var(--azul-medio));
  z-index: 9999; width: 0%; transition: width 0.1s linear;
}
.blog-hero {
  background: linear-gradient(140deg, #0f2550 0%, var(--azul) 60%, #1e3a5f 100%);
  color: var(--branco);
  padding: 64px 24px 56px;
  text-align: center;
}
.blog-breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.blog-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.blog-breadcrumb a:hover { color: white; }
.blog-breadcrumb-sep { opacity: 0.4; }
.blog-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800; line-height: 1.2;
  max-width: 760px; margin: 0 auto 20px;
  letter-spacing: -0.02em;
}
.blog-hero-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
}
.blog-hero-meta strong { color: rgba(255,255,255,0.9); }
.blog-body { max-width: 740px; margin: 0 auto; padding: 56px 24px 80px; }
.blog-body p { font-size: 1.05rem; line-height: 1.85; color: #2D3748; margin-bottom: 24px; }
.blog-body h2 {
  font-size: 1.5rem; font-weight: 800; color: var(--azul);
  margin: 52px 0 16px; padding-top: 8px;
  border-top: 2px solid var(--cinza-medio);
}
.blog-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--azul); margin: 32px 0 12px; }
.blog-body ul, .blog-body ol { padding-left: 24px; margin-bottom: 24px; }
.blog-body li { font-size: 1.05rem; line-height: 1.8; color: #2D3748; margin-bottom: 8px; }
.blog-body strong { color: var(--texto); }
.blog-body table { width: 100%; border-collapse: collapse; margin: 28px 0; border-radius: 8px; overflow: hidden; }
.blog-body th { background: var(--azul); color: white; padding: 12px 16px; text-align: left; font-size: 0.9rem; }
.blog-body td { border-bottom: 1px solid var(--cinza-medio); padding: 12px 16px; font-size: 0.95rem; color: #2D3748; }
.blog-body tr:last-child td { border-bottom: none; }
.blog-body tr:nth-child(even) td { background: var(--cinza-claro); }
.blog-cta {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 36px 32px;
  margin: 48px 0;
  text-align: center;
}
.blog-cta-title { font-size: 1.2rem; font-weight: 800; color: var(--azul); margin-bottom: 8px; }
.blog-cta p { font-size: 0.97rem; color: var(--texto-suave); margin-bottom: 20px; line-height: 1.6; }
.blog-cta-note { font-size: 0.82rem; color: #999; margin-top: 12px; margin-bottom: 0; }
.blog-author {
  background: var(--cinza-claro);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex; gap: 20px; align-items: flex-start;
  margin-top: 64px; border: 1px solid var(--cinza-medio);
}
.blog-author img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: top; flex-shrink: 0; }
.blog-author-name { font-size: 1rem; font-weight: 800; color: var(--azul); margin-bottom: 4px; }
.blog-author-role { font-size: 0.82rem; color: var(--verde); font-weight: 600; margin-bottom: 8px; }
.blog-author-bio { font-size: 0.9rem; color: var(--texto-suave); line-height: 1.65; margin: 0 0 12px; }
.blog-author-social { display: flex; gap: 14px; }
.blog-author-social a { color: var(--texto-suave); transition: color 0.2s; }
.blog-author-social a:hover { color: var(--azul); }

/* ---- BLOG SCREENSHOTS ---- */
.blog-screenshot {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  border: 1px solid var(--cinza-medio);
  margin: 32px 0;
  display: block;
}

/* ---- LEIA TAMBÉM ---- */
.blog-leia-mais {
  background: var(--cinza-claro);
  border-left: 4px solid var(--azul-medio);
  border-radius: 0 10px 10px 0;
  padding: 18px 20px;
  margin: 40px 0 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.blog-leia-mais strong {
  font-size: 0.88rem;
  color: var(--azul);
  font-weight: 700;
  white-space: nowrap;
}
.blog-leia-mais a {
  font-size: 0.88rem;
  color: var(--azul-medio);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.blog-leia-mais a:hover { border-bottom-color: var(--azul-medio); }
