
/* ============================================
   PALETA APOMETRIA 360°
   --space-blue: #111A31  (fundo escuro, textos)
   --teal-dark:  #1E5A63  (verde esmeralda/teal)
   --cyan:       #6BC4C0  (ciano brilhante)
   --cyan-light: #A0E8E1  (ciano claro)
   --white:      #FFFFFF  (branco estelar)
   ============================================ */
:root {
  --space-blue: #111A31;
  --space-blue-mid: #162240;
  --teal-dark: #1E5A63;
  --teal-mid: #267A85;
  --cyan: #6BC4C0;
  --cyan-light: #A0E8E1;
  --cyan-glow: rgba(107, 196, 192, 0.35);
  --white: #FFFFFF;
  --off-white: #E8F4F3;
  --body-text: #2C3E50;
  --muted: #6B8A8D;
  --light-bg: #F0F8F7;
  --section-alt: #F5FBFA;
  --card-bg: #FFFFFF;
  --red-accent: #E53935;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--body-text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 { line-height: 1.2; }

.section-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
}

/* ============================================
   BUTTONS
   ============================================ */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
  color: var(--space-blue);
  font-size: 18px;
  font-weight: 800;
  padding: 18px 48px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px var(--cyan-glow);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(107, 196, 192, 0.5);
}

.cta-sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-top: 8px;
  color: var(--muted);
}

/* ============================================
   SECTION 1: HERO
   ============================================ */
.hero {
  background: var(--space-blue);
  padding: 32px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Cosmic radial glow behind hero content */
.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(107,196,192,0.08) 0%, rgba(30,90,99,0.04) 40%, transparent 70%);
  pointer-events: none;
}

/* Thin cyan accent line at top */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.hero-company-logo {
  width: 180px;
  margin-bottom: 28px;
  opacity: 0.85;
}

.hero-pre {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(30px, 5.5vw, 50px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
}

.hero h1 span {
  color: var(--cyan-light);
}

.hero-sub {
  font-size: clamp(17px, 3vw, 22px);
  color: var(--cyan);
  font-weight: 400;
  margin-bottom: 28px;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 36px;
  flex-wrap: wrap;
  position: relative;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--cyan-light);
}

.hero-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(160, 232, 225, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ============================================
   SECTION 2: VIDEO
   ============================================ */
.video-section {
  background: var(--space-blue);
  padding: 0 0 56px;
  text-align: center;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 60px rgba(107,196,192,0.08);
  border: 1px solid rgba(107,196,192,0.15);
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.video-placeholder {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--space-blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 16px;
}

/* ============================================
   SECTION 3: PROBLEMA (Agitação)
   ============================================ */
.problema {
  padding: 72px 0;
  background: var(--white);
}

.problema h2 {
  text-align: center;
  color: var(--space-blue);
}

.problema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.problema-card {
  background: var(--light-bg);
  border-left: 4px solid var(--space-blue);
  padding: 24px;
  border-radius: 0 8px 8px 0;
}

.problema-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--space-blue);
  margin-bottom: 8px;
}

.problema-card p {
  font-size: 15px;
  color: var(--muted);
}

/* ============================================
   SECTION 4: DIAGRAMA (Causa / Ação / Consequência)
   ============================================ */
.diagrama {
  padding: 72px 0;
  background: var(--space-blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle cosmic glow */
.diagrama::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,196,192,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.diagrama h2 {
  text-align: center;
  color: var(--white);
}

.diagrama-subtitle {
  text-align: center;
  color: rgba(160,232,225,0.5);
  font-size: 17px;
  margin-bottom: 48px;
}

.diagrama-layers {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.diagrama-layer {
  padding: 28px 32px;
  position: relative;
}

.diagrama-layer:nth-child(1) {
  background: rgba(229, 57, 53, 0.12);
  border: 1px solid rgba(229, 57, 53, 0.25);
  border-radius: 12px 12px 0 0;
}

.diagrama-layer:nth-child(3) {
  background: rgba(107, 196, 192, 0.08);
  border-left: 1px solid rgba(107, 196, 192, 0.2);
  border-right: 1px solid rgba(107, 196, 192, 0.2);
}

.diagrama-layer:nth-child(5) {
  background: rgba(30, 90, 99, 0.25);
  border: 1px solid rgba(107, 196, 192, 0.3);
  border-radius: 0 0 12px 12px;
}

.diagrama-layer-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.diagrama-layer:nth-child(1) .diagrama-layer-tag { color: var(--red-accent); }
.diagrama-layer:nth-child(3) .diagrama-layer-tag { color: var(--cyan); }
.diagrama-layer:nth-child(5) .diagrama-layer-tag { color: var(--cyan-light); }

.diagrama-layer h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
}

.diagrama-layer p {
  font-size: 15px;
  color: rgba(200,240,235,0.75);
  line-height: 1.7;
}

.diagrama-arrow {
  text-align: center;
  font-size: 24px;
  color: var(--cyan);
  padding: 8px 0;
}

.diagrama-insight {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: center;
  padding: 24px;
  border: 2px solid var(--cyan);
  border-radius: 8px;
  background: rgba(107, 196, 192, 0.05);
}

.diagrama-insight p {
  font-size: 18px;
  font-weight: 600;
  color: var(--cyan-light);
}

/* ============================================
   SECTION 5: SOLUÇÃO (Apometria 360°)
   ============================================ */
.solucao {
  padding: 72px 0;
  background: var(--white);
}

.solucao h2 {
  text-align: center;
  color: var(--space-blue);
}

.solucao-logo {
  display: block;
  max-width: 280px;
  margin: 24px auto 8px;
}

.solucao-tagline {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pilares {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pilar {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  border-top: 4px solid var(--teal-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pilar:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(30,90,99,0.12);
}

.pilar-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal-dark), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.pilar-icon svg { width: 28px; height: 28px; }

.pilar h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--space-blue);
  margin-bottom: 12px;
}

.pilar p {
  font-size: 15px;
  color: var(--muted);
}

/* ============================================
   SECTION 6: O QUE ESTÁ INCLUSO (Stack)
   ============================================ */
.stack {
  padding: 72px 0;
  background: var(--section-alt);
}

.stack h2 {
  text-align: center;
  color: var(--space-blue);
}

.stack-items {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stack-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.stack-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--teal-dark), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.stack-check svg { width: 14px; height: 14px; fill: var(--white); }

.stack-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--space-blue);
  margin-bottom: 4px;
}

.stack-item p {
  font-size: 14px;
  color: var(--muted);
}

/* Acordeão / Sanfona dos Cursos */
.curso-acordeao {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.curso-acordeao-item {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid rgba(107,196,192,0.15);
  transition: box-shadow 0.3s;
}

.curso-acordeao-item:hover {
  box-shadow: 0 4px 20px rgba(107,196,192,0.18);
}

.curso-acordeao-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.curso-acordeao-header:hover {
  background: var(--light-bg);
}

.curso-acordeao-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--teal-dark), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s;
}

.curso-acordeao-item.aberto .curso-acordeao-icon {
  transform: rotate(45deg);
}

.curso-acordeao-title {
  flex: 1;
}

.curso-acordeao-title h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--space-blue);
  margin: 0;
  line-height: 1.4;
}

.curso-acordeao-title span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

.curso-acordeao-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.curso-acordeao-item.aberto .curso-acordeao-body {
  max-height: 8000px;
  transition: max-height 0.6s ease;
}

.curso-acordeao-content {
  padding: 0 24px 24px 72px;
}

.curso-acordeao-content .curso-intro {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.curso-acordeao-content .nucleo-header {
  background: linear-gradient(135deg, var(--space-blue), var(--space-blue-mid));
  color: var(--white);
  padding: 12px 16px;
  border-radius: 6px;
  margin: 20px 0 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.curso-acordeao-content .nucleo-header small {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--cyan-light);
  margin-top: 4px;
}

.curso-acordeao-content .modulo-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(107,196,192,0.12);
}

.curso-acordeao-content .modulo-item:last-child {
  border-bottom: none;
}

.curso-acordeao-content .modulo-item h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-dark);
  margin: 0 0 4px;
}

.curso-acordeao-content .modulo-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.curso-acordeao-content .area-header {
  background: var(--light-bg);
  padding: 10px 14px;
  border-radius: 6px;
  margin: 16px 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-dark);
  border-left: 3px solid var(--cyan);
}

@media (max-width: 600px) {
  .curso-acordeao-header { padding: 16px; gap: 12px; }
  .curso-acordeao-content { padding: 0 16px 20px 16px; }
  .curso-acordeao-title h4 { font-size: 14px; }
  .curso-acordeao-icon { width: 28px; height: 28px; font-size: 18px; }
}

/* Countdown Timer */
.countdown-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 20px auto;
  max-width: 500px;
}

.countdown-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.countdown-label--bonus {
  color: var(--red-accent);
}

.countdown-label--preco {
  color: var(--cyan);
}

.countdown-label--cta {
  color: var(--cyan);
}

.countdown-digits {
  display: flex;
  gap: 8px;
  align-items: center;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}

.countdown-block .cd-num {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 8px;
  min-width: 56px;
  text-align: center;
}

.countdown-block .cd-unit {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Variantes de cor */
.countdown-bar--bonus .cd-num {
  background: rgba(229, 57, 53, 0.1);
  color: var(--red-accent);
}
.countdown-bar--bonus .cd-unit { color: var(--muted); }
.countdown-bar--bonus .countdown-sep { color: var(--red-accent); }

.countdown-bar--preco .cd-num {
  background: rgba(107, 196, 192, 0.12);
  color: var(--cyan-light);
}
.countdown-bar--preco .cd-unit { color: rgba(160,232,225,0.5); }
.countdown-bar--preco .countdown-sep { color: var(--cyan); }

.countdown-bar--cta .cd-num {
  background: rgba(107, 196, 192, 0.12);
  color: var(--cyan-light);
}
.countdown-bar--cta .cd-unit { color: rgba(160,232,225,0.5); }
.countdown-bar--cta .countdown-sep { color: var(--cyan); }

.countdown-sep {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 16px;
}

.countdown-expired {
  font-size: 18px;
  font-weight: 700;
  color: var(--red-accent);
  text-align: center;
  padding: 12px;
}

@media (max-width: 400px) {
  .countdown-block { min-width: 48px; }
  .countdown-block .cd-num { font-size: 24px; padding: 6px 8px; min-width: 48px; }
  .countdown-sep { font-size: 22px; }
}

/* ============================================
   SECTION 7: BÔNUS
   ============================================ */
.bonus {
  padding: 72px 0;
  background: var(--white);
}

.bonus h2 {
  text-align: center;
  color: var(--space-blue);
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-card {
  border: 2px solid var(--cyan);
  border-radius: 12px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-dark), var(--cyan), var(--cyan-light));
}

.bonus-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
  color: var(--space-blue);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--space-blue);
  margin-bottom: 12px;
}

.bonus-card p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
}

.bonus-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-dark);
}

.bonus-deadline {
  display: inline-block;
  background: var(--red-accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 8px;
}

/* ============================================
   SECTION 8: DEPOIMENTOS
   ============================================ */
.depoimentos {
  padding: 72px 0;
  background: var(--section-alt);
}

.depoimentos h2 {
  text-align: center;
  color: var(--space-blue);
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.depo-card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  border-top: 3px solid var(--cyan);
}

.depo-stars {
  color: var(--cyan);
  font-size: 18px;
  margin-bottom: 12px;
}

.depo-text {
  font-size: 15px;
  color: var(--body-text);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}

.depo-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--space-blue);
}

.depo-more {
  text-align: center;
  margin-top: 32px;
}

.depo-more a {
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================
   SECTION 9: PARA QUEM É
   ============================================ */
.para-quem {
  padding: 72px 0;
  background: var(--white);
}

.para-quem h2 {
  text-align: center;
  color: var(--space-blue);
}

.check-list {
  max-width: 640px;
  margin: 32px auto 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  font-size: 17px;
  border-bottom: 1px solid #E0EEEC;
}

.check-list li:last-child { border-bottom: none; }

.check-list li svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

/* ============================================
   SECTION 10: PREÇO + CTA PRINCIPAL
   ============================================ */
.preco {
  padding: 72px 0;
  background: var(--space-blue);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Cosmic glow behind price box */
.preco::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,196,192,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.preco h2 { color: var(--white); }

.preco-box {
  max-width: 500px;
  margin: 32px auto;
  background: rgba(22, 34, 64, 0.8);
  border: 2px solid var(--cyan);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 0 60px rgba(107,196,192,0.1);
}

.preco-label {
  font-size: 16px;
  color: rgba(160,232,225,0.5);
  margin-bottom: 8px;
}

.preco-valor {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 900;
  color: var(--cyan-light);
  line-height: 1;
}

.preco-tipo {
  font-size: 18px;
  color: var(--white);
  margin-top: 8px;
}

.preco-parcelas {
  font-size: 16px;
  color: rgba(160,232,225,0.45);
  margin-top: 4px;
  margin-bottom: 24px;
}

.preco-includes {
  text-align: left;
  max-width: 380px;
  margin: 24px auto;
  padding: 16px 0;
  border-top: 1px solid rgba(107,196,192,0.15);
}

.preco-includes li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(160,232,225,0.7);
  padding: 6px 0;
}

.preco-includes li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: var(--cyan);
}

/* ============================================
   SECTION 11: GARANTIA
   ============================================ */
.garantia {
  padding: 64px 0;
  background: var(--section-alt);
  text-align: center;
}

.garantia-box {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border: 2px solid var(--cyan);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(107,196,192,0.10);
}

.garantia-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--teal-dark), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.garantia-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--white);
}

.garantia-box h4 {
  font-size: 24px;
  font-weight: 800;
  color: var(--space-blue);
  margin-bottom: 4px;
}

.garantia-box p {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.7;
  max-width: 480px;
}

/* ============================================
   SECTION 12: FAQ
   ============================================ */
.faq {
  padding: 72px 0;
  background: var(--section-alt);
}

.faq h2 {
  text-align: center;
  color: var(--space-blue);
}

.faq-items {
  max-width: 700px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid #D0E8E6;
  padding: 20px 0;
}

.faq-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--space-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.faq-q::after {
  content: '+';
  font-size: 24px;
  color: var(--teal-dark);
  font-weight: 300;
  transition: transform 0.2s;
}

.faq-item.active .faq-q::after {
  content: '\2212';
}

.faq-a {
  font-size: 15px;
  color: var(--muted);
  padding-top: 12px;
  display: none;
  line-height: 1.7;
}

.faq-item.active .faq-a {
  display: block;
}

/* ============================================
   SECTION 13: CTA FINAL
   ============================================ */
.cta-final {
  padding: 72px 0;
  background: var(--space-blue);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107,196,192,0.3), transparent);
}

.cta-final h2 {
  color: var(--white);
  font-size: clamp(24px, 4vw, 36px);
}

.cta-final p {
  color: rgba(160,232,225,0.5);
  font-size: 17px;
  margin: 16px 0 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 24px 0;
  background: #0B1220;
  text-align: center;
  font-size: 13px;
  color: rgba(107,196,192,0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero-stats { gap: 24px; }
  .diagrama-layer { padding: 20px; }
  .garantia-box { padding: 28px 20px; }
  .preco-box { padding: 32px 20px; }
  .pilar { padding: 24px 20px; }
  .solucao-logo { max-width: 200px; }
}
