/* ========== VARIÁVEIS CSS (DESIGN TOKENS) ========== */
:root {
  /* PALETA DE CORES OTIMIZADA */
  --cor-primaria: #0D5F2D;
  --cor-primaria-claro: #0F7D3A;
  --cor-secundaria: #FFFFFF;
  --cor-accent: #0D5F2D;
  --cor-fundo-escuro: #0F172A;
  --cor-fundo-claro: #FFFFFF;
  --cor-texto-principal: #FFFFFF;
  --cor-texto-escuro: #0F172A;
  --cor-texto-destaque: #0D5F2D;
  --cor-cinza-claro: #F3F4F6;
  --cor-cinza-medio: #E5E7EB;
  --cor-cinza-escuro: #6B7280;
  --cor-sucesso: #10B981;
  --cor-info: #3B82F6;
  --cor-alerta: #F59E0B;
  
  /* TIPOGRAFIA */
  --font-primaria: 'Poppins', sans-serif;
  --font-secundaria: 'Inter', sans-serif;
  --peso-regular: 400;
  --peso-semibold: 600;
  --peso-bold: 700;
  
  /* TAMANHOS DE FONTE */
  --tamanho-h1: 3.5rem;
  --tamanho-h2: 2.5rem;
  --tamanho-h3: 1.875rem;
  --tamanho-body: 1rem;
  --tamanho-small: 0.875rem;
  
  /* ESPAÇAMENTOS */
  --espacamento-xs: 0.5rem;
  --espacamento-sm: 1rem;
  --espacamento-md: 1.5rem;
  --espacamento-lg: 2rem;
  --espacamento-xl: 3rem;
  --espacamento-2xl: 4rem;
  
  /* SOMBRAS */
  --sombra-leve: 0 1px 3px rgba(0, 0, 0, 0.1);
  --sombra-media: 0 4px 12px rgba(0, 0, 0, 0.15);
  --sombra-forte: 0 10px 30px rgba(0, 0, 0, 0.2);
  
  /* TRANSIÇÕES */
  --transicao: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transicao-rapida: all 0.15s ease-in-out;
}

/* ========== RESET E BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secundaria);
  color: var(--cor-texto-principal);
  background-color: var(--cor-fundo-escuro);
  line-height: 1.6;
  font-size: var(--tamanho-body);
  overflow-x: hidden;
}

/* ========== TIPOGRAFIA GLOBAL ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primaria);
  font-weight: var(--peso-bold);
  line-height: 1.2;
}

h1 {
  font-size: var(--tamanho-h1);
}

h2 {
  font-size: var(--tamanho-h2);
}

h3 {
  font-size: var(--tamanho-h3);
}

p {
  margin-bottom: var(--espacamento-md);
}

a {
  color: var(--cor-accent);
  text-decoration: none;
  transition: var(--transicao);
}

a:hover {
  opacity: 0.8;
}

strong {
  font-weight: var(--peso-bold);
}

/* ========== LAYOUT GLOBAL ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--espacamento-lg);
}

section {
  padding: var(--espacamento-2xl) 0;
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(135deg, var(--cor-fundo-escuro) 0%, #1a2a3a 100%);
  padding: 6rem var(--espacamento-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero__container {
  max-width: 900px;
  margin: 0 auto;
}

.hero__headline {
  font-size: var(--tamanho-h1);
  margin-bottom: var(--espacamento-lg);
  color: var(--cor-texto-principal);
  font-weight: var(--peso-bold);
}

.hero__highlight {
  color: var(--cor-accent);
  display: block;
}

.hero__subheadline {
  font-size: 1.25rem;
  margin-bottom: var(--espacamento-xl);
  color: var(--cor-cinza-claro);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--espacamento-md);
  margin-bottom: var(--espacamento-xl);
  align-items: center;
}

.hero__guarantee-text {
  color: var(--cor-sucesso);
  font-weight: var(--peso-semibold);
  margin-top: var(--espacamento-md);
}

.hero__badge {
  margin-top: var(--espacamento-xl);
}

/* ========== BOTÕES CTA ========== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--espacamento-md) var(--espacamento-xl);
  border-radius: 8px;
  font-family: var(--font-primaria);
  font-size: 1rem;
  font-weight: var(--peso-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transicao);
  border: none;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-button--primary {
  background-color: var(--cor-secundaria);
  color: var(--cor-texto-escuro);
  border: 3px solid var(--cor-accent);
  box-shadow: var(--sombra-media);
}

.cta-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-forte);
  background-color: var(--cor-cinza-claro);
}

.cta-button--primary:active {
  transform: translateY(0);
}

.cta-button--secondary {
  background-color: var(--cor-accent);
  color: var(--cor-texto-principal);
  box-shadow: var(--sombra-media);
}

.cta-button--secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-forte);
  background-color: var(--cor-primaria-claro);
}

.cta-button--secondary:active {
  transform: translateY(0);
}

.cta-button--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  min-width: 280px;
}

.cta-button:focus {
  outline: 2px solid var(--cor-accent);
  outline-offset: 2px;
}

/* ========== BADGES ========== */
.badge {
  display: inline-block;
  padding: var(--espacamento-xs) var(--espacamento-md);
  border-radius: 20px;
  font-size: var(--tamanho-small);
  font-weight: var(--peso-semibold);
  text-transform: uppercase;
}

.badge--success {
  background-color: var(--cor-sucesso);
  color: var(--cor-texto-principal);
}

.badge--info {
  background-color: var(--cor-info);
  color: var(--cor-texto-principal);
}

.badge--bonus {
  background-color: var(--cor-alerta);
  color: var(--cor-texto-escuro);
}

.badge--alert {
  background-color: var(--cor-alerta);
  color: var(--cor-texto-escuro);
}

/* ========== SEÇÕES GENÉRICAS ========== */
.section-headline {
  font-size: var(--tamanho-h2);
  text-align: center;
  margin-bottom: var(--espacamento-xl);
  color: var(--cor-texto-principal);
}

.section-subheadline {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: var(--espacamento-xl);
  color: var(--cor-cinza-claro);
}

/* ========== PROBLEM SECTION ========== */
.problem {
  background-color: var(--cor-fundo-claro);
  color: var(--cor-texto-escuro);
}

.problem__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--espacamento-lg);
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--espacamento-xl);
  margin-top: var(--espacamento-xl);
}

.problem__card {
  background-color: var(--cor-cinza-claro);
  padding: var(--espacamento-xl);
  border-radius: 8px;
  box-shadow: var(--sombra-leve);
  transition: var(--transicao);
}

.problem__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-media);
}

.problem__icon {
  width: 50px;
  height: 50px;
  background-color: var(--cor-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--espacamento-md);
  color: var(--cor-texto-principal);
  font-weight: var(--peso-bold);
  font-size: 1.5rem;
}

.problem__title {
  color: var(--cor-texto-escuro);
  margin-bottom: var(--espacamento-md);
}

.problem__description {
  color: var(--cor-texto-escuro);
  margin-bottom: var(--espacamento-md);
}

.problem__consequence {
  color: var(--cor-cinza-escuro);
  font-size: var(--tamanho-small);
}

/* ========== SOLUTION SECTION ========== */
.solution {
  background-color: var(--cor-fundo-escuro);
}

.solution__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--espacamento-lg);
}

.solution__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--espacamento-xl);
  margin-top: var(--espacamento-xl);
}

.solution__pillar {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--espacamento-xl);
  border-radius: 8px;
  border: 1px solid rgba(13, 95, 45, 0.3);
  transition: var(--transicao);
}

.solution__pillar:hover {
  background: rgba(13, 95, 45, 0.1);
  border-color: var(--cor-accent);
}

.solution__icon {
  font-size: 2.5rem;
  margin-bottom: var(--espacamento-md);
}

.solution__title {
  color: var(--cor-texto-principal);
  margin-bottom: var(--espacamento-md);
}

.solution__description {
  color: var(--cor-cinza-claro);
  font-size: 0.95rem;
}

.solution__why {
  margin-top: var(--espacamento-2xl);
  background: rgba(13, 95, 45, 0.1);
  padding: var(--espacamento-xl);
  border-radius: 8px;
  border-left: 4px solid var(--cor-accent);
}

.solution__why-headline {
  color: var(--cor-accent);
  margin-bottom: var(--espacamento-md);
}

.solution__why-list {
  list-style: none;
}

.solution__why-list li {
  color: var(--cor-texto-principal);
  margin-bottom: var(--espacamento-md);
  padding-left: var(--espacamento-lg);
  position: relative;
}

.solution__why-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cor-sucesso);
  font-weight: var(--peso-bold);
}

/* ========== VALUE STACK SECTION ========== */
.value-stack {
  background-color: var(--cor-fundo-claro);
  color: var(--cor-texto-escuro);
}

.value-stack__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--espacamento-lg);
}

.value-stack__title {
  font-size: var(--tamanho-h3);
  margin-bottom: var(--espacamento-xl);
  color: var(--cor-texto-escuro);
}

.value-stack__items {
  margin-bottom: var(--espacamento-2xl);
}

.value-stack__item {
  display: flex;
  gap: var(--espacamento-lg);
  margin-bottom: var(--espacamento-xl);
  padding: var(--espacamento-lg);
  background-color: var(--cor-cinza-claro);
  border-radius: 8px;
  transition: var(--transicao);
}

.value-stack__item:hover {
  box-shadow: var(--sombra-media);
  transform: translateX(4px);
}

.value-stack__check {
  color: var(--cor-sucesso);
  font-size: 1.5rem;
  font-weight: var(--peso-bold);
  flex-shrink: 0;
}

.value-stack__content {
  flex: 1;
}

.value-stack__item-title {
  color: var(--cor-texto-escuro);
  margin-bottom: var(--espacamento-sm);
}

.value-stack__item-description {
  color: var(--cor-cinza-escuro);
  margin-bottom: var(--espacamento-sm);
  font-size: 0.95rem;
}

.value-stack__item-price {
  color: var(--cor-accent);
  font-weight: var(--peso-bold);
  font-size: 0.9rem;
}

.value-stack__bonus-title {
  font-size: var(--tamanho-h3);
  color: var(--cor-texto-escuro);
  margin-bottom: var(--espacamento-xl);
  text-align: center;
}

.value-stack__bonus-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--espacamento-lg);
  margin-bottom: var(--espacamento-2xl);
}

.value-stack__bonus {
  background-color: var(--cor-cinza-claro);
  padding: var(--espacamento-lg);
  border-radius: 8px;
  border-left: 4px solid var(--cor-alerta);
  transition: var(--transicao);
}

.value-stack__bonus:hover {
  box-shadow: var(--sombra-media);
  transform: translateY(-4px);
}

.value-stack__bonus h4 {
  color: var(--cor-texto-escuro);
  margin: var(--espacamento-md) 0;
}

.value-stack__bonus p {
  color: var(--cor-cinza-escuro);
  font-size: 0.95rem;
  margin-bottom: var(--espacamento-sm);
}

.value-stack__bonus-price {
  color: var(--cor-accent);
  font-weight: var(--peso-bold);
  display: block;
  font-size: 0.9rem;
}

.value-stack__calculation {
  background-color: var(--cor-cinza-claro);
  padding: var(--espacamento-xl);
  border-radius: 8px;
  margin-bottom: var(--espacamento-xl);
}

.value-stack__calc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--espacamento-md);
  padding-bottom: var(--espacamento-md);
  border-bottom: 1px solid var(--cor-cinza-medio);
}

.value-stack__calc-item:last-child {
  border-bottom: none;
}

.value-stack__calc-item--highlight {
  background-color: var(--cor-accent);
  color: var(--cor-texto-principal);
  padding: var(--espacamento-md);
  border-radius: 4px;
  border-bottom: none;
}

.value-stack__calc-label {
  font-weight: var(--peso-semibold);
  color: var(--cor-texto-escuro);
}

.value-stack__calc-item--highlight .value-stack__calc-label {
  color: var(--cor-texto-principal);
}

.value-stack__calc-value {
  font-size: 1.5rem;
  font-weight: var(--peso-bold);
  color: var(--cor-accent);
}

.value-stack__calc-item--highlight .value-stack__calc-value {
  color: var(--cor-texto-principal);
}

.value-stack__calc-note {
  color: var(--cor-cinza-escuro);
  font-size: 0.9rem;
  margin-top: var(--espacamento-md);
}

.value-stack__justification {
  background-color: var(--cor-accent);
  color: var(--cor-texto-principal);
  padding: var(--espacamento-xl);
  border-radius: 8px;
  text-align: center;
}

.value-stack__justification h3 {
  color: var(--cor-texto-principal);
  margin-bottom: var(--espacamento-md);
}

.value-stack__justification p {
  color: var(--cor-texto-principal);
  margin-bottom: var(--espacamento-md);
}

.value-stack__justification-bold {
  font-size: 1.25rem;
  font-weight: var(--peso-bold);
}

/* ========== SOCIAL PROOF SECTION ========== */
.social-proof {
  background-color: var(--cor-fundo-escuro);
}

.social-proof__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--espacamento-lg);
}

.social-proof__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--espacamento-xl);
  margin-top: var(--espacamento-xl);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(13, 95, 45, 0.3);
  padding: var(--espacamento-xl);
  border-radius: 8px;
  transition: var(--transicao);
}

.testimonial-card:hover {
  background: rgba(13, 95, 45, 0.1);
  border-color: var(--cor-accent);
  transform: translateY(-4px);
  box-shadow: var(--sombra-media);
}

.testimonial-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--espacamento-md);
}

.testimonial-card__name {
  color: var(--cor-texto-principal);
  font-size: 1.1rem;
}

.testimonial-card__quote {
  color: var(--cor-cinza-claro);
  font-size: 0.95rem;
  margin-bottom: var(--espacamento-lg);
  font-style: italic;
}

.testimonial-card__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: var(--espacamento-md);
}

.stat {
  text-align: center;
}

.stat__value {
  display: block;
  color: var(--cor-accent);
  font-size: 1.5rem;
  font-weight: var(--peso-bold);
  margin-bottom: var(--espacamento-xs);
}

.stat__label {
  display: block;
  color: var(--cor-cinza-claro);
  font-size: 0.85rem;
}

.social-proof__credentials {
  background: rgba(13, 95, 45, 0.1);
  padding: var(--espacamento-xl);
  border-radius: 8px;
  margin-top: var(--espacamento-2xl);
  border-left: 4px solid var(--cor-accent);
}

.social-proof__credentials-title {
  color: var(--cor-accent);
  margin-bottom: var(--espacamento-md);
}

.social-proof__credentials-list {
  list-style: none;
}

.social-proof__credentials-list li {
  color: var(--cor-texto-principal);
  margin-bottom: var(--espacamento-md);
  padding-left: var(--espacamento-lg);
  position: relative;
}

.social-proof__credentials-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cor-sucesso);
  font-weight: var(--peso-bold);
}

/* ========== GUARANTEE SECTION ========== */
.guarantee {
  background-color: var(--cor-fundo-claro);
  color: var(--cor-texto-escuro);
}

.guarantee__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--espacamento-lg);
}

.guarantee__box {
  background-color: var(--cor-cinza-claro);
  padding: var(--espacamento-xl);
  border-radius: 8px;
  border-left: 4px solid var(--cor-sucesso);
  margin-bottom: var(--espacamento-xl);
}

.guarantee__title {
  color: var(--cor-texto-escuro);
  margin-bottom: var(--espacamento-lg);
}

.guarantee__conditions {
  margin-bottom: var(--espacamento-lg);
}

.guarantee__condition {
  display: flex;
  gap: var(--espacamento-md);
  margin-bottom: var(--espacamento-md);
  color: var(--cor-texto-escuro);
}

.guarantee__icon {
  color: var(--cor-sucesso);
  font-weight: var(--peso-bold);
  flex-shrink: 0;
}

.guarantee__promise {
  color: var(--cor-cinza-escuro);
  font-size: 0.95rem;
}

.guarantee__why {
  background-color: var(--cor-cinza-claro);
  padding: var(--espacamento-xl);
  border-radius: 8px;
}

.guarantee__why-title {
  color: var(--cor-texto-escuro);
  margin-bottom: var(--espacamento-md);
}

.guarantee__why p {
  color: var(--cor-texto-escuro);
}

/* ========== URGENCY SECTION ========== */
.urgency {
  background-color: var(--cor-fundo-escuro);
}

.urgency__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--espacamento-lg);
}

.urgency__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--espacamento-lg);
  margin-top: var(--espacamento-xl);
}

.urgency__item {
  background: rgba(13, 95, 45, 0.1);
  padding: var(--espacamento-lg);
  border-radius: 8px;
  border-left: 4px solid var(--cor-alerta);
  text-align: center;
}

.urgency__icon {
  font-size: 2rem;
  margin-bottom: var(--espacamento-md);
}

.urgency__item p {
  color: var(--cor-texto-principal);
  margin-bottom: 0;
}

.urgency__specific {
  background: rgba(13, 95, 45, 0.15);
  padding: var(--espacamento-xl);
  border-radius: 8px;
  margin-top: var(--espacamento-xl);
  margin-bottom: var(--espacamento-xl);
}

.urgency__specific h3 {
  color: var(--cor-accent);
  margin-bottom: var(--espacamento-md);
}

.urgency__specific p {
  color: var(--cor-texto-principal);
}

.urgency__bonus-alert {
  background: rgba(245, 158, 11, 0.1);
  padding: var(--espacamento-lg);
  border-radius: 8px;
  border-left: 4px solid var(--cor-alerta);
  margin-bottom: var(--espacamento-xl);
}

.urgency__bonus-alert p {
  color: var(--cor-texto-principal);
  margin-bottom: 0;
}

.urgency__consequences {
  background: rgba(239, 68, 68, 0.1);
  padding: var(--espacamento-xl);
  border-radius: 8px;
  border-left: 4px solid #EF4444;
}

.urgency__consequences h3 {
  color: #EF4444;
  margin-bottom: var(--espacamento-md);
}

.urgency__consequences-list {
  list-style: none;
}

.urgency__consequences-list li {
  color: var(--cor-texto-principal);
  margin-bottom: var(--espacamento-md);
  padding-left: var(--espacamento-lg);
  position: relative;
}

.urgency__consequences-list li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #EF4444;
  font-weight: var(--peso-bold);
}

/* ========== FAQ SECTION ========== */
.faq {
  background-color: var(--cor-fundo-claro);
  color: var(--cor-texto-escuro);
}

.faq__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--espacamento-lg);
}

.faq__items {
  margin-top: var(--espacamento-xl);
}

.faq__item {
  margin-bottom: var(--espacamento-lg);
  border: 1px solid var(--cor-cinza-medio);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transicao);
}

.faq__item:hover {
  box-shadow: var(--sombra-media);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--espacamento-lg);
  background-color: var(--cor-cinza-claro);
  cursor: pointer;
  font-weight: var(--peso-semibold);
  color: var(--cor-texto-escuro);
  user-select: none;
}

.faq__question:hover {
  background-color: var(--cor-cinza-medio);
}

.faq__question::after {
  content: "▼";
  font-size: 0.8rem;
  transition: var(--transicao);
}

.faq__item[open] .faq__question::after {
  transform: rotate(180deg);
}

.faq__answer {
  padding: var(--espacamento-lg);
  color: var(--cor-texto-escuro);
  background-color: var(--cor-fundo-claro);
}

.faq__answer p {
  margin-bottom: var(--espacamento-md);
}

.faq__answer ul {
  margin-left: var(--espacamento-lg);
  margin-bottom: var(--espacamento-md);
}

.faq__answer li {
  margin-bottom: var(--espacamento-sm);
  color: var(--cor-texto-escuro);
}

/* ========== FINAL CTA SECTION ========== */
.final-cta {
  background: linear-gradient(135deg, var(--cor-fundo-escuro) 0%, #1a2a3a 100%);
  padding: var(--espacamento-2xl) var(--espacamento-lg);
}

.final-cta__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.final-cta__headline {
  font-size: var(--tamanho-h2);
  margin-bottom: var(--espacamento-md);
  color: var(--cor-texto-principal);
}

.final-cta__subheadline {
  font-size: 1.25rem;
  color: var(--cor-accent);
  margin-bottom: var(--espacamento-xl);
}

.final-cta__text {
  margin-bottom: var(--espacamento-xl);
}

.final-cta__text p {
  color: var(--cor-texto-principal);
  margin-bottom: var(--espacamento-md);
}

.final-cta__choice {
  font-size: 1.1rem;
  color: var(--cor-accent);
  font-weight: var(--peso-bold);
}

.final-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--espacamento-md);
  margin-bottom: var(--espacamento-xl);
  align-items: center;
}

.final-cta__guarantee {
  background: rgba(13, 95, 45, 0.15);
  padding: var(--espacamento-lg);
  border-radius: 8px;
  border-left: 4px solid var(--cor-accent);
}

.final-cta__guarantee-badge {
  color: var(--cor-sucesso);
  font-weight: var(--peso-bold);
  margin-bottom: var(--espacamento-sm);
}

.final-cta__guarantee-text {
  color: var(--cor-texto-principal);
  font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
  background-color: #000000;
  color: var(--cor-texto-principal);
  padding: var(--espacamento-xl) var(--espacamento-lg);
  text-align: center;
  border-top: 1px solid var(--cor-accent);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__text {
  margin-bottom: var(--espacamento-sm);
  font-size: 0.95rem;
}

.footer__disclaimer {
  color: var(--cor-cinza-claro);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ========== ANIMAÇÕES ========== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 768px) {
  :root {
    --tamanho-h1: 2rem;
    --tamanho-h2: 1.5rem;
    --tamanho-h3: 1.25rem;
    --espacamento-xl: 1.5rem;
    --espacamento-2xl: 2rem;
  }

  .hero {
    padding: 3rem var(--espacamento-lg);
  }

  .hero__cta-group {
    flex-direction: column;
  }

  .cta-button--large {
    min-width: 100%;
    max-width: 300px;
  }

  .problem__grid,
  .solution__grid,
  .social-proof__grid,
  .value-stack__bonus-items {
    grid-template-columns: 1fr;
  }

  .testimonial-card__stats {
    grid-template-columns: 1fr;
  }

  .urgency__grid {
    grid-template-columns: 1fr;
  }

  .final-cta__buttons {
    width: 100%;
  }

  .value-stack__item {
    flex-direction: column;
  }

  section {
    padding: var(--espacamento-xl) 0;
  }
}

@media (max-width: 480px) {
  :root {
    --tamanho-h1: 1.5rem;
    --tamanho-h2: 1.25rem;
    --tamanho-h3: 1rem;
    --espacamento-lg: 1rem;
    --espacamento-xl: 1.25rem;
  }

  .hero {
    padding: 2rem var(--espacamento-md);
  }

  .cta-button {
    padding: 1rem var(--espacamento-lg);
    font-size: 0.9rem;
  }

  .cta-button--large {
    min-width: 100%;
  }

  .section-headline {
    font-size: 1.25rem;
  }

  .problem__card,
  .solution__pillar,
  .testimonial-card,
  .value-stack__item,
  .value-stack__bonus {
    padding: var(--espacamento-lg);
  }
}