/* 
========================================
SETUP & VARIÁVEIS GLOBAIS
========================================
*/
:root {
  --roxo-principal: #6c4edb;
  --roxo-claro: #8a6dff;
  --verde-sucesso: #10B981;
  --laranja-urgencia: #F59E0B;
  --vermelho-escassez: #EF4444;
  --cinza-escuro: #1e1e2f;
  --cinza-medio: #2c2c3e;
  --cinza-claro: #f4f4f8;
  --branco: #ffffff;
  --sombra: 0 10px 25px rgba(0, 0, 0, 0.1);
  --sombra-leve: 0 4px 15px rgba(108, 78, 219, 0.2);
}

/* Reset Básico e Estilos Globais */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
  font-family: 'Poppins', 'Segoe UI', sans-serif; 
  background-color: var(--branco); 
  color: var(--cinza-escuro); 
  line-height: 1.6; 
  padding-top: 80px; 
  overflow-x: hidden;
}

/* 
========================================
ANIMAÇÕES AVANÇADAS
========================================
*/
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes urgency-pulse {
  0%, 100% { background-color: var(--vermelho-escassez); }
  50% { background-color: #DC2626; }
}

@keyframes countdown {
  0% { color: var(--vermelho-escassez); }
  50% { color: #DC2626; }
  100% { color: var(--vermelho-escassez); }
}

/* 
========================================
BOTÃO FIXO CTA - NOVO
========================================
*/
.fixed-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: linear-gradient(135deg, var(--verde-sucesso), #059669);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fixed-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.6);
}

.fixed-cta::before {
  content: '🚀';
  font-size: 1.2rem;
}

/* 
========================================
HEADER - MELHORADO PARA MOBILE
========================================
*/
.header { 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  z-index: 1000; 
  padding: 15px 0; 
  background: rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); 
  transition: all 0.3s ease; 
}
.header.scrolled { 
  background-color: rgba(255, 255, 255, 0.95); 
  box-shadow: 0 2px 20px rgba(0,0,0,0.1); 
}
.header .container { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  position: relative;
}
.logo { 
  font-size: 1.8rem; 
  font-weight: 700; 
  color: var(--roxo-principal); 
  text-decoration: none; 
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Local para adicionar a logo/ícone */
.logo::before {
  content: '@'; /* SUBSTITUIR POR <img> da sua logo */
  font-size: 1.5rem;
 /*Para usar imagem, substitua por:*/
  content: '';
  width: 32px;
  height: 32px;
  background-image: url('https://kofrinho.com/img/kofrinho-logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  */
}

.logo::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}
.logo:hover::after {
  left: 100%;
}
.header-actions { 
  display: flex; 
  align-items: center; 
  gap: 15px; 
}
.btn-login { 
  background: none; 
  border: none; 
  color: var(--cinza-escuro); 
  font-weight: 600; 
  font-size: 1rem; 
  cursor: pointer; 
  padding: 10px 15px; 
  text-decoration: none; 
  transition: all 0.3s ease; 
  position: relative;
}
.btn-login::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--roxo-principal);
  transition: all 0.3s ease;
}
.btn-login:hover::after {
  width: 100%;
  left: 0;
}
.btn-login:hover { 
  color: var(--roxo-principal); 
  transform: translateY(-2px);
}
.btn-header-signup { 
  padding: 10px 25px; 
}
.menu-toggle { 
  display: none; 
  background: none; 
  border: none; 
  cursor: pointer; 
  transition: transform 0.3s ease;
  z-index: 1001;
}
.menu-toggle:hover {
  transform: scale(1.1);
}
.menu-toggle svg { 
  width: 30px; 
  height: 30px; 
  color: var(--cinza-escuro); 
  transition: color 0.3s ease;
}

/* 
========================================
COMPONENTES REUTILIZÁVEIS
========================================
*/
.container { 
  max-width: 1100px; 
  margin: 0 auto; 
  padding: 0 20px; 
}
section { 
  padding: 80px 0; 
  position: relative;
}

/* Garante que o conteúdo sempre fique acima dos elementos decorativos */
section .container {
  position: relative;
  z-index: 5;
}
h1, h2, h3 { 
  font-weight: 700; 
  color: var(--cinza-escuro); 
  line-height: 1.2; 
}
h1 { 
  font-size: 3rem; 
}
h2 { 
  font-size: 2.5rem; 
  text-align: center; 
  margin-bottom: 60px; 
}
h2 span { 
  color: var(--roxo-principal); 
  position: relative;
}
h2 span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--roxo-principal), var(--roxo-claro));
  border-radius: 2px;
}
p { 
  /*max-width: 650px; */
  margin-bottom: 20px; 
  color: #3f3f3f; 
}
.btn { 
  display: inline-block; 
  background: linear-gradient(90deg, var(--roxo-principal), var(--roxo-claro)); 
  color: var(--branco); 
  padding: 15px 35px; 
  border: none; 
  border-radius: 50px; 
  cursor: pointer; 
  font-weight: 600; 
  font-size: 1rem; 
  text-decoration: none; 
  transition: all 0.3s ease; 
  box-shadow: var(--sombra-leve); 
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn:hover::before {
  left: 100%;
}
.btn:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 12px 25px rgba(108, 78, 219, 0.4); 
}
.btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* Variações de botões */
.btn-success {
  background: linear-gradient(135deg, var(--verde-sucesso), #059669);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
  box-shadow: 0 12px 25px rgba(16, 185, 129, 0.5);
}

.btn-urgency {
  background: linear-gradient(135deg, var(--laranja-urgencia), #D97706);
  animation: urgency-pulse 2s infinite;
}

.animated { 
  animation: fadeInUp 0.8s ease forwards; 
}
.slide-left {
  animation: slideInLeft 0.8s ease forwards;
}
.slide-right {
  animation: slideInRight 0.8s ease forwards;
}
.scale-in {
  animation: scaleIn 0.8s ease forwards;
}

/* 
========================================
URGÊNCIA E ESCASSEZ - NOVO
========================================
*/
.urgency-banner {
  background: linear-gradient(135deg, var(--vermelho-escassez), #DC2626);
  color: white;
  text-align: center;
  padding: 12px 0;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.urgency-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shine 2s infinite;
}

.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  font-weight: 700;
  color: var(--vermelho-escassez);
  animation: countdown 1s infinite;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(239, 68, 68, 0.1);
  padding: 10px 15px;
  border-radius: 8px;
  min-width: 60px;
}

.countdown-number {
  font-size: 1.5rem;
  font-weight: 800;
}

.countdown-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* 
========================================
ESTILOS DAS SEÇÕES
========================================
*/

/* BANNER DE URGÊNCIA */
.urgency-banner {
  margin-top: -80px;
  padding-top: 92px;
}

/* [A] HERO SECTION */
.hero { 
  background-color: #f6f4fe;
  padding-top: 100px; 
  padding-bottom: 80px; 
  overflow: hidden; 
  position: relative;
}

/* Mascote do Kofrinho */
.hero::after {
  content: '🪙';
  position: absolute;
  top: 20%;
  right: 5%;
  font-size: 2.5rem;
  opacity: 0.08;
  animation: float 3s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.hero .container { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  align-items: center; 
  gap: 60px; 
  position: relative;
  z-index: 10;
}
.hero h1 { 
  color: var(--roxo-principal); 
}
.hero .texto p { 
  font-size: 1.2rem; 
  color: var(--cinza-escuro); 
  margin-bottom: 30px; 
}
.hero .imagem img { 
  width: 100%; 
  max-width: 450px; 
  transition: all 0.3s ease;
}

/* PROVA SOCIAL NO HERO */
.social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.social-proof-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--verde-sucesso);
}

.social-proof-text {
  font-size: 0.9rem;
  color: var(--cinza-escuro);
  margin: 0;
}

.problema-solucao .container { 
  text-align: center; 
  position: relative;
  z-index: 10;
}
.problema-solucao h3 { 
  font-size: 1.5rem; 
  color: var(--roxo-principal); 
  margin-top: 40px; 
  position: relative;
}
.problema-solucao p { 
  margin-left: auto; 
  margin-right: auto; 
}

/* NOVA SEÇÃO DE BENEFÍCIOS */
.beneficios { 
  background-color: var(--cinza-claro); 
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Alterna o layout para itens pares */
.feature-item:nth-child(even) .feature-image {
    grid-column: 1;
    grid-row: 1;
}
 .feature-item:nth-child(even) .feature-text {
    grid-column: 2;
}

.feature-text h3 {
    font-size: 2rem;
    color: var(--roxo-principal);
    margin-bottom: 15px;
    position: relative;
}

.feature-text h3::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, var(--roxo-principal), var(--roxo-claro));
    border-radius: 2px;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 450px;
}

.feature-image {
    position: relative;
    perspective: 1000px;
}

/* ALTERAÇÃO: Aplicando estilos para img E video */
.feature-image img,
.feature-image video {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--sombra);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    min-height: 300px; /* Garante altura mínima */
    background-color: var(--cinza-medio); /* Fundo caso o vídeo/poster não carregue */
    object-fit: cover; /* Garante que o vídeo cubra a área */
}

.feature-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(108, 78, 219, 0.1), 
        rgba(138, 109, 255, 0.1), 
        rgba(108, 78, 219, 0.1)
    );
    border-radius: 12px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.feature-image:hover::before {
    opacity: 1;
}

/* ALTERAÇÃO: Aplicando estilos de hover para img E video */
.feature-image:hover img,
.feature-image:hover video {
    transform: rotateY(5deg) rotateX(5deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(108, 78, 219, 0.3);
}

.feature-image::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(108, 78, 219, 0.1),
        transparent,
        rgba(138, 109, 255, 0.1),
        transparent
    );
    background-size: 400% 400%;
    border-radius: 14px;
    opacity: 0;
    animation: shine 3s ease-in-out infinite;
    z-index: -1;
}

.feature-image:hover::after {
    opacity: 1;
}

/* DEPOIMENTOS MELHORADOS */
.depoimentos { 
  background: linear-gradient(135deg, rgba(108, 78, 219, 0.95), rgba(138, 109, 255, 0.95));
  color: var(--branco); 
  position: relative;
  overflow: hidden;
}
.depoimentos::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float 20s linear infinite;
}
.depoimentos .container { 
  max-width: 1000px; 
  text-align: center; 
  position: relative;
  z-index: 1;
}
.depoimentos h2 { 
  color: var(--branco); 
}
.depoimentos h2 span {
  color: var(--branco);
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
  padding: 0 8px;
  border-radius: 6px;
}

/* Grid de depoimentos */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.depoimento-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.depoimento-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.depoimento-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.depoimento-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--roxo-claro), var(--roxo-principal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.depoimento-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.depoimento-info p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

/* Estatística central */
.stats-highlight {
  background: rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 20px;
  margin: 40px 0;
  backdrop-filter: blur(10px);
}

.stats-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 10px;
}

.stats-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* PLANOS MELHORADOS */
.planos { 
  background-color: var(--cinza-claro); 
  padding: 100px 0;
  position: relative;
}

/* Mascote apontando para os planos */
.planos::before {
  content: '🪙';
  position: absolute;
  top: 10%;
  left: 3%;
  font-size: 2rem;
  animation: float 4s ease-in-out infinite;
  z-index: 0;
  opacity: 0.08;
  pointer-events: none;
}

.plano-grid { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 30px; 
  justify-content: center; 
  align-items: stretch; 
}
.plano { 
  background-color: var(--branco); 
  border: 2px solid #e0e0e0; 
  border-radius: 16px; 
  padding: 45px 35px; 
  width: 320px; 
  text-align: center; 
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); 
  transition: all 0.3s ease; 
  position: relative; 
  display: flex;
  flex-direction: column;
}
.plano:hover { 
  transform: translateY(-5px); 
  border-color: var(--roxo-principal); 
  box-shadow: 0 15px 40px rgba(108, 78, 219, 0.15);
}

/* Plano Mensal - Amarelo */
.plano.mensal {
  border-color: var(--laranja-urgencia);
  background: linear-gradient(135deg, #FEF3C7, var(--branco));
}

.plano.mensal:hover {
  border-color: var(--laranja-urgencia);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
}

/* Plano Semestral - Azul */
.plano.semestral {
  border-color: #3B82F6;
  background: linear-gradient(135deg, #DBEAFE, var(--branco));
}

.plano.semestral:hover {
  border-color: #3B82F6;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.plano.destaque { 
  background: linear-gradient(135deg, var(--cinza-escuro) 0%, #2a2a3f 100%);
  color: var(--branco); 
  transform: scale(1.05); 
  border: 2px solid var(--verde-sucesso); 
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.25);
}
.plano.destaque:hover { 
  transform: translateY(-5px) scale(1.05); 
}
.plano.destaque::before { 
  content: 'MAIS POPULAR + 2 MESES GRÁTIS'; 
  position: absolute; 
  top: -12px; 
  left: 50%; 
  transform: translateX(-50%); 
  background: linear-gradient(90deg, var(--verde-sucesso), #059669); 
  color: var(--branco); 
  padding: 6px 18px; 
  border-radius: 25px; 
  font-size: 0.75rem; 
  font-weight: 700; 
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  white-space: nowrap;
}
.plano h3 { 
  font-size: 1.6rem; 
  margin-bottom: 20px; 
  color: var(--roxo-principal);
  font-weight: 700;
}
.plano .preco { 
  font-size: 2.8rem; 
  font-weight: 800; 
  color: var(--cinza-escuro); 
  margin-bottom: 15px; 
  transition: all 0.2s ease;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.plano:hover .preco {
  transform: scale(1.05);
}
.plano .preco span { 
  font-size: 1.1rem; 
  font-weight: 500;
  opacity: 0.7;
}

.plano .preco-original {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 5px;
}

.plano .economia {
  background: var(--verde-sucesso);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
}

.plano.destaque h3 { 
  color: var(--branco);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.plano.destaque .preco { 
  color: var(--branco);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.plano.destaque p { 
  color: rgba(255,255,255,0.9);
}
.plano p { 
  margin-bottom: 35px;
  line-height: 1.6;
  color: #666;
  font-size: 1rem;
  flex-grow: 1;
}

/* Bônus dos planos */
.bonus-list {
  list-style: none;
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid rgba(108, 78, 219, 0.2);
  border-bottom: 1px solid rgba(108, 78, 219, 0.2);
}

.bonus-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--verde-sucesso);
  font-weight: 600;
}

.bonus-list li::before {
  content: '🎁';
  font-size: 1rem;
}

.plano .btn { 
  background: linear-gradient(135deg, var(--cinza-escuro), #2a2a3f);
  font-weight: 600;
  padding: 16px 30px;
  font-size: 1rem;
  letter-spacing: 0.3px;
  margin-top: auto;
}
.plano.destaque .btn { 
  background: linear-gradient(135deg, var(--verde-sucesso), #059669); 
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.plano.mensal .btn {
  background: linear-gradient(135deg, var(--laranja-urgencia), #D97706);
}

.plano.semestral .btn {
  background: linear-gradient(135deg, #3B82F6, #2563EB);
}

/* Countdown nos planos */
.plano-countdown {
  margin: 15px 0;
}

/* Selos de garantia */
.guarantee-seals {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  min-width: 150px;
}

.seal-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.seal-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cinza-escuro);
  text-align: center;
}

/* FAQ SECTION - NOVA */
.faq {
  background: var(--branco);
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--roxo-principal);
  box-shadow: 0 4px 15px rgba(108, 78, 219, 0.1);
}

.faq-question {
  background: var(--cinza-claro);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--cinza-escuro);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(108, 78, 219, 0.05);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--roxo-principal);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 300px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* TESTE GRATUITO - NOVO */
.free-trial {
  background: linear-gradient(135deg, var(--verde-sucesso), #059669);
  color: white;
  text-align: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.free-trial::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: float 15s linear infinite;
}

.free-trial .container {
  position: relative;
  z-index: 1;
}

.free-trial h2 {
  color: white;
  margin-bottom: 20px;
}

.free-trial p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  margin-left: auto;
  margin-right: auto;
}

.trial-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.trial-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.trial-feature::before {
  content: '✅';
  font-size: 1.2rem;
}

/* GARANTIA */
.garantia ul { 
  list-style: none; 
  max-width: 500px; 
  margin: 0 auto; 
}
.garantia li { 
  display: flex; 
  align-items: center; 
  font-size: 1.1rem; 
  margin-bottom: 15px; 
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 8px;
}
.garantia li:hover {
  background-color: rgba(108, 78, 219, 0.05);
  transform: translateX(10px);
}
.garantia li::before { 
  content: '✔'; 
  color: var(--roxo-principal); 
  font-size: 1.5rem; 
  margin-right: 15px; 
  font-weight: bold; 
}

/* CTA FINAL */
.cta-final { 
  background: var(--cinza-escuro); 
  color: var(--branco); 
  text-align: center; 
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(108, 78, 219, 0.1) 25%, 
    transparent 25%, 
    transparent 75%, 
    rgba(108, 78, 219, 0.1) 75%
  );
  background-size: 40px 40px;
  animation: float 10s linear infinite;
}
.cta-final h2 { 
  color: var(--branco); 
  font-size: 2.2rem; 
  max-width: 600px; 
  margin-left: auto; 
  margin-right: auto; 
  position: relative;
  z-index: 1;
}
.cta-final p { 
  color: rgba(255, 255, 255, 0.8); 
  margin-bottom: 30px; 
  margin-left: auto; 
  margin-right: auto; 
  position: relative;
  z-index: 1;
}

/* 
========================================
FOOTER - NOVO
========================================
*/
.footer {
  background: linear-gradient(135deg, var(--cinza-escuro) 0%, #2a2a3f 100%);
  color: var(--branco);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(108, 78, 219, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(138, 109, 255, 0.1) 0%, transparent 50%);
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--branco);
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--roxo-principal), var(--roxo-claro));
  border-radius: 2px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--branco);
  text-decoration: none;
  margin-bottom: 15px;
}

.footer-logo::before {
  content: '🪙'; /* SUBSTITUIR POR SUA LOGO */
  font-size: 1.8rem;
  /* Para usar imagem, substitua por:
  content: '';
  width: 40px;
  height: 40px;
  background-image: url('/logo-white.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  */
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: var(--roxo-claro);
  transform: translateX(5px);
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--roxo-principal);
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--branco);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--roxo-principal);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(108, 78, 219, 0.4);
}

.contact-info {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info p::before {
  content: '📧';
  font-size: 1.2rem;
}

.contact-info p:nth-child(2)::before {
  content: '📱';
}

.contact-info p:nth-child(3)::before {
  content: '📍';
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--roxo-claro);
}

/* 
========================================
RESPONSIVIDADE - MELHORADA
========================================
*/
@media (max-width: 992px) {
  .hero .container { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 20px;
  }
  /* ALTERAÇÃO: Texto (order 1) virá antes da imagem (order 2) no mobile */
  .hero .texto { 
    order: 1; 
  }
  .hero .imagem { 
    order: 2; 
    margin-top: 20px; 
  }
  .hero .imagem img { 
    margin: 0 auto; 
  }

  /* Ajusta elementos decorativos em tablets */
  .hero::after {
    font-size: 2rem;
    opacity: 0.05;
  }

  .planos::before {
    font-size: 1.5rem;
    opacity: 0.05;
  }

  .social-proof {
    flex-direction: column;
    text-align: center;
  }

  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  .trial-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 { 
    font-size: 2.5rem; 
  }
  h2 { 
    font-size: 2rem; 
  }
  section { 
    padding: 60px 0; 
  }

  /* Remove elementos decorativos no mobile para evitar conflitos */
  .hero::after,
  .planos::before {
    display: none;
  }

  .fixed-cta {
    bottom: 10px;
    right: 10px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .countdown-timer {
    gap: 10px;
  }

  .countdown-number {
    font-size: 1.2rem;
  }
  
  /* MELHOR HEADER MOBILE */
  .header .container {
    position: relative;
  }
  
  .header-actions { 
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%; 
    height: 100vh;
    flex-direction: column; 
    background: linear-gradient(135deg, var(--cinza-escuro), #2a2a3f);
    padding: 100px 40px 40px;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    z-index: 1000;
  }
  
  .header.nav-open .header-actions { 
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  
  .header.nav-open .btn-login {
    color: var(--branco);
    font-size: 1.2rem;
    padding: 15px 25px;
  }
  
  .header.nav-open .btn-header-signup {
    font-size: 1.2rem;
    padding: 18px 40px;
  }
  
  .menu-toggle { 
    display: block;
    position: relative;
    z-index: 1001;
  }
  
  .header.nav-open .menu-toggle svg {
    color: var(--branco);
  }
  
  /* ALTERAÇÃO: Layout da seção de benefícios para mobile */
  .feature-item,
  .feature-item:nth-child(even) {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* O texto virá primeiro (row 1) */
  .feature-item .feature-text,
  .feature-item:nth-child(even) .feature-text {
    grid-column: 1;
    grid-row: 1;
  }

  /* A imagem/video virá depois (row 2) */
  .feature-item .feature-image,
  .feature-item:nth-child(even) .feature-image {
    grid-column: 1;
    grid-row: 2;
    margin-top: 20px;
  }

  /* ===== INÍCIO DO AJUSTE PARA VÍDEOS EM MOBILE ===== */
  .feature-image img,
  .feature-image video {
      height: auto;      /* Permite que a altura se ajuste à largura para manter a proporção */
      min-height: unset; /* Remove a altura mínima fixa que é muito grande no mobile */
      max-height: 50vh;  /* Limita a altura a 50% da altura da tela para não ficar excessivo */
  }
  /* ===== FIM DO AJUSTE ===== */

  .feature-text p {
      margin-left: auto;
      margin-right: auto;
  }
  .feature-text h3::before {
    display: none;
  }

  .plano-grid { 
    flex-direction: column; 
  }
  .plano { 
    width: 100%; 
    max-width: 350px; 
  }
  .plano.destaque { 
    transform: scale(1); 
  }

  .guarantee-seals {
    flex-direction: column;
    align-items: center;
  }
  
  /* FOOTER RESPONSIVO */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 15px;
  }

  .stats-number {
    font-size: 2.5rem;
  }

  .plano.destaque::before {
    font-size: 0.65rem;
    padding: 4px 12px;
  }
}