/* landing.css */
:root {
  --red: #e50914;
  --purple: #7d1fff;
  --bg: linear-gradient(180deg, #0a0a0a, #1a001a 60%, #0a0a0a);
  --text: #fff;
  --muted: #bdbdbd;
  --card-bg: rgba(255, 255, 255, 0.05);
  --transition: all 0.3s ease;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Cabeçalho ===== */
.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  transition: var(--transition);
}

.landing-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Mantém esta linha */
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Opcional: Ajustar a navegação para ficar mais centralizada */
.nav-desktop {
  display: flex;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--red);
  letter-spacing: 0.5px;
}

.nav-desktop {
  display: flex;
  gap: 30px;
}

.nav-desktop a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-desktop a:hover {
  color: var(--text);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.btn-criar {
  background: linear-gradient(90deg, var(--red), var(--purple));
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-criar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229, 9, 20, 0.3);
}

/* ===== MENU HAMBURGUER ===== */
.menu-mobile {
  display: none; /* Isso faz sumir - vamos corrigir */
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 8px;
}

.menu-mobile span {
  width: 25px;
  height: 3px;
  background: white;
  transition: var(--transition);
  border-radius: 2px;
}

/* Efeito hover no menu hamburguer */
.menu-mobile:hover span {
  background: var(--red);
}

.menu-mobile:hover span:nth-child(1) {
  transform: translateY(2px);
}

.menu-mobile:hover span:nth-child(3) {
  transform: translateY(-2px);
}

/* ===== MENU MOBILE SIMPLIFICADO ===== */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  padding: 15px 0;
  display: none;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-item {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 16px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
}

.mobile-menu-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--red);
}

/* Botão Criar LoveFlix - Destaque */
.mobile-menu-item.criar-loveflix {
  background: linear-gradient(135deg, var(--red), var(--purple));
  color: white;
  font-weight: 700;
  border: none;
  margin: 8px 20px;
  border-radius: 10px;
  padding: 14px 25px;
  order: -1; /* Coloca no topo */
}

.mobile-menu-item.criar-loveflix:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229, 9, 20, 0.3);
}

/* Botão Login - Estilo secundário */
.mobile-menu-item.login-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin: 5px 20px 0;
  padding: 12px 25px;
}

.mobile-menu-item.login-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* CORAÇÕES - VERSÃO MELHORADA */
.coracoes-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.coracao {
  position: absolute;
  font-size: 20px;
  opacity: 0;
  animation: flutuarSuave 8s linear infinite;
}

/* Posições e delays variados para efeito natural */
.coracao:nth-child(1) { left: 10%; animation-delay: 0s; color: rgba(229, 9, 20, 0.2); }
.coracao:nth-child(2) { left: 25%; animation-delay: 1.5s; color: rgba(229, 9, 20, 0.15); }
.coracao:nth-child(3) { left: 40%; animation-delay: 3s; color: rgba(229, 9, 20, 0.25); }
.coracao:nth-child(4) { left: 55%; animation-delay: 4.5s; color: rgba(125, 31, 255, 0.2); }
.coracao:nth-child(5) { left: 70%; animation-delay: 6s; color: rgba(125, 31, 255, 0.15); }
.coracao:nth-child(6) { left: 85%; animation-delay: 7.5s; color: rgba(229, 9, 20, 0.2); }
.coracao:nth-child(7) { left: 15%; animation-delay: 2s; color: rgba(125, 31, 255, 0.25); }
.coracao:nth-child(8) { left: 35%; animation-delay: 5s; color: rgba(229, 9, 20, 0.15); }
.coracao:nth-child(9) { left: 65%; animation-delay: 8s; color: rgba(125, 31, 255, 0.2); }
.coracao:nth-child(10) { left: 90%; animation-delay: 1s; color: rgba(229, 9, 20, 0.25); }

/* Animação mais suave e romântica */
@keyframes flutuarSuave {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
    transform: translateY(80vh) translateX(10px) rotate(36deg);
  }
  30% {
    opacity: 0.4;
    transform: translateY(60vh) translateX(-5px) rotate(72deg);
  }
  50% {
    opacity: 0.5;
    transform: translateY(40vh) translateX(8px) rotate(108deg);
  }
  70% {
    opacity: 0.3;
    transform: translateY(20vh) translateX(-3px) rotate(144deg);
  }
  90% {
    opacity: 0.1;
    transform: translateY(0) translateX(5px) rotate(180deg);
  }
  100% {
    transform: translateY(-50px) translateX(0) rotate(216deg);
    opacity: 0;
  }
}

/* Adicione também corações menores para mais variedade */
.coracao.pequeno {
  font-size: 16px;
  animation-duration: 10s;
}

.coracao.medio {
  font-size: 22px;
  animation-duration: 7s;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2); /* Mais escuro */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradiente INVERTIDO - saindo de BAIXO */
  background: linear-gradient(
    to top,  /* DIRECÃO INVERTIDA - para cima */
    rgba(0, 0, 0, 0.95) 0%,    /* Base PRETO quase sólido */
    rgba(10, 0, 10, 0.85) 30%, /* Meio escuro roxo */
    rgba(20, 0, 20, 0.4) 70%,  /* Transição suave */
    transparent 100%           /* Topo transparente */
  );
  z-index: 1;
}

.hero-fallback {
  width: 100%;
  height: 100%;
  background: url('img/hero-fallback.jpg') center/cover no-repeat;
  filter: brightness(0.3); /* Ainda mais escuro */
  position: relative;
}

.hero-fallback::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Mesmo gradiente invertido */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(15, 0, 15, 0.9) 40%,
    rgba(30, 0, 30, 0.5) 80%,
    transparent 100%
  );
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  z-index: 2; /* Garantir que fique acima do overlay */
  position: relative;
}

/* ... resto do seu código CSS ... */

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.title-line {
  display: block;
}

.highlight {
  color: var(--red);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(229, 9, 20, 0.3);
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-hero {
  background: linear-gradient(90deg, var(--red), var(--purple));
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(229, 9, 20, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  animation: bounce 2s infinite;
  z-index: 3;
}

.arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  margin-top: 5px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

.hero-fallback {
  position: absolute;
  inset: 0;
  background: url('assets/img/hero-fallback.jpg') center/cover no-repeat;
  display: none;
}

/* ===== Seções Gerais ===== */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

/* ===== Como Funciona ===== */
.passos-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.passo {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.passo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.passo-icone {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--red), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
}

.passo h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.passo p {
  color: var(--muted);
}

/* ===== DEMONSTRAÇÃO COM IPHONE ===== */
.demo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

/* iPhone Mockup - Um pouco menor */
.iphone-mockup {
  display: flex;
  justify-content: center;
  position: relative;
}

.iphone-frame {
  width: 260px; /* Reduzido */
  height: 520px; /* Reduzido */
  background: #1a1a1a;
  border-radius: 35px; /* Ajustado */
  padding: 10px; /* Reduzido */
  position: relative;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.5),
    inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.iphone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 28px; /* Ajustado */
  overflow: hidden;
  position: relative;
}

.iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.iphone-notch {
  position: absolute;
  top: 10px; /* Ajustado */
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* Reduzido */
  height: 20px; /* Reduzido */
  background: #1a1a1a;
  border-radius: 0 0 12px 12px; /* Ajustado */
  z-index: 2;
}

/* ===== OPÇÕES DE DEMONSTRAÇÃO - VERSÃO MELHORADA ===== */
.demo-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 500px;
}

.demo-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.demo-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.1), transparent);
  transition: left 0.6s ease;
}

.demo-option:hover::before {
  left: 100%;
}

.demo-option:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.demo-option.active {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.15), rgba(125, 31, 255, 0.1));
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(229, 9, 20, 0.2);
}

.option-icon {
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-option:hover .option-icon {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.1);
}

.demo-option.active .option-icon {
  background: linear-gradient(135deg, var(--red), var(--purple));
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(229, 9, 20, 0.3);
}

.option-text h4 {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  transition: all 0.3s ease;
}

.demo-option:hover .option-text h4 {
  color: var(--text);
}

.demo-option.active .option-text h4 {
  color: var(--red);
  font-weight: 700;
}
/* ===== Comparação ===== */
.comparacao-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.comparacao-item {
  flex: 1;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparacao-item.negativo h3 {
  color: #ff6b6b;
}

.comparacao-item.positivo h3 {
  color: #51cf66;
}

.comparacao-item h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.comparacao-item ul {
  list-style: none;
}

.comparacao-item li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding-left: 25px;
}

.comparacao-item.negativo li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ff6b6b;
}

.comparacao-item.positivo li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #51cf66;
}

.comparacao-item li:last-child {
  border-bottom: none;
}

.vs {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(229, 9, 20, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Depoimentos - Versão Compacta ===== */
.depoimentos-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* Reduzi o gap */
  margin-top: 30px; /* Menos margem no topo */
}

.depoimento-card {
  background: var(--card-bg);
  border-radius: 10px; /* Bordas mais suaves */
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06); /* Borda mais sutil */
  transition: var(--transition);
}

.depoimento-card:hover {
  transform: translateY(-3px); /* Elevação mais sutil */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Sombra mais leve */
}

.depoimento-foto {
  height: 200px; /* Altura fixa */
  background-size: cover;
  background-position: center;
  /* Largura: 100% do container → forma retangular */
}

.depoimento-content {
  padding: 20px; /* Padding reduzido */
}

.depoimento-content p {
  font-style: italic;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.95rem; /* Texto um pouco menor */
  line-height: 1.5; /* Altura de linha mais compacta */
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limita a 3 linhas */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.depoimento-autor {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.depoimento-tempo {
  font-size: 0.85rem; /* Texto menor */
  color: var(--muted);
  opacity: 0.8;
}

/* Versão Mobile */
@media (max-width: 768px) {
  .depoimentos-container {
    grid-template-columns: 1fr; /* Uma coluna no mobile */
    gap: 15px;
    margin-top: 25px;
  }
  
  .depoimento-foto {
    height: 120px; /* Ainda menor no mobile */
  }
  
  .depoimento-content {
    padding: 15px;
  }
  
  .depoimento-content p {
    font-size: 0.9rem;
    -webkit-line-clamp: 4; /* Mais linhas no mobile */
  }
}

/* Versão Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .depoimentos-container {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet */
    gap: 20px;
  }
}


/* ===== PLANOS ATUALIZADOS ===== */
.planos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
  align-items: stretch;
}

.plano-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.plano-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.plano-card.destaque {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), rgba(125, 31, 255, 0.05));
  border: 2px solid var(--red);
  transform: scale(1.05);
}

.plano-card.destaque:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 25px 50px rgba(229, 9, 20, 0.2);
}

/* BADGE CORRIGIDO - Menor e no canto */
.plano-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, var(--red), var(--purple));
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(229, 9, 20, 0.3);
  z-index: 2;
  white-space: nowrap;
}

.plano-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: center;
  color: var(--text);
  padding-top: 5px; /* Espaço para o badge */
}

.plano-frase {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.plano-beneficios {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.plano-beneficios li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.plano-beneficios li:last-child {
  border-bottom: none;
}

.plano-beneficios strong {
  color: var(--red);
  font-weight: 700;
}

.plano-preco {
  text-align: center;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.preco-original {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 5px;
}

.preco-atual {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.btn-plano {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-plano {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-plano:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-plano.destaque {
  background: linear-gradient(135deg, var(--red), var(--purple));
  color: white;
  border: none;
  box-shadow: 0 5px 15px rgba(229, 9, 20, 0.3);
}

.btn-plano.destaque:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}


/* ==== DESCRIÇÃO ===== */
.plano-descricao {
  text-align: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.4;
}

/* ==== LISTA DE BENEFÍCIOS ===== */
.plano-beneficios {
  list-style: none;
  margin-bottom: 28px;
  padding: 0;
}

.plano-beneficios li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.98rem;
  letter-spacing: 0.2px;
}

.plano-beneficios li:last-child {
  border-bottom: none;
}

/* ===== LINHA NOVA — PROVA SOCIAL ===== */
.plano-popular {
  text-align: center;
  margin: 10px 0 18px;
  font-size: 0.92rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.3px;
  opacity: 0.95;
}

/* ==== BOTÃO ===== */
.btn-plano {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-plano:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Botão do plano em destaque */
.btn-plano.destaque {
  background: linear-gradient(90deg, var(--red), var(--purple));
  border: none;
  color: #fff;
  box-shadow: 0 4px 14px rgba(229, 9, 20, 0.4);
}

.btn-plano.destaque:hover {
  box-shadow: 0 8px 20px rgba(229, 9, 20, 0.6);
  transform: translateY(-2px);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .plano-card.destaque {
    transform: scale(1.02);
  }
}

@media (max-width: 600px) {
  .planos-container {
    gap: 20px;
  }

  .plano-card {
    padding: 25px;
  }

  .plano-header h3 {
    font-size: 1.4rem;
  }

  .plano-preco {
    font-size: 1.9rem;
  }
}
/* ===== Garantia ===== */
.garantia {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), rgba(125, 31, 255, 0.1));
  text-align: center;
}

.garantia-icone {
  font-size: 4rem;
  margin-bottom: 20px;
}

.garantia h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.garantia p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.garantia small {
  color: var(--muted);
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}

.faq-pergunta {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.faq-icone {
  font-size: 1.5rem;
  transition: var(--transition);
}

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

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-resposta {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-resposta p {
  color: var(--muted);
}

/* ===== CTA Final ===== */
.cta-final {
  text-align: center;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), rgba(125, 31, 255, 0.1));
}

.cta-final h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-final p {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Rodapé ===== */
.landing-footer {
  background: linear-gradient(180deg, #0a0a0a, #1a001a);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo .logo {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-logo p {
  color: var(--muted);
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--red);
}

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--text);
}

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

.selos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--muted);
}

.copyright {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ===== Responsividade ===== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .passos-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .comparacao-container {
    flex-direction: column;
  }
  
  .depoimentos-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .planos-container {
    flex-direction: column;
    align-items: center;
  }
  
  .plano-card.destaque {
    transform: none;
  }
  
  .plano-card.destaque:hover {
    transform: translateY(-5px);
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    gap: 40px;
    flex-wrap: wrap;
  }

  /* Demo responsiva */
  .demo-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .iphone-mockup {
    order: 1;
  }
  
  .demo-options {
    order: 2;
    gap: 6px;
    max-width: 450px;
  }
  
  .iphone-frame {
    width: 240px;
    height: 480px;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .menu-mobile {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .selos {
    flex-direction: column;
    gap: 10px;
  }

  /* Modal em mobile */
  .modal-content {
    padding: 25px 20px;
    margin: 20px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }

  /* Corações em mobile */
  .coracao {
    font-size: 16px;
    animation-duration: 10s;
  }
  
  .coracao.pequeno {
    font-size: 12px;
  }
  
  .coracao.medio {
    font-size: 18px;
  }
  
  /* Menos corações em mobile para performance */
  .coracoes-container .coracao:nth-child(n+8) {
    display: none;
  }

  /* Demo em mobile */
  .iphone-frame {
    width: 220px;
    height: 440px;
  }
  
  .demo-options {
    gap: 6px;
    max-width: 100%;
    padding: 0 10px;
  }
  
  .demo-option {
    padding: 8px 10px;
    min-width: 65px;
    border-radius: 10px;
  }
  
  .option-icon {
    font-size: 1rem;
    width: 28px;
    height: 28px;
  }
  
  .option-text h4 {
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  /* Demo em mobile pequeno */
  .iphone-frame {
    width: 200px;
    height: 400px;
    border-radius: 25px;
  }
  
  .iphone-screen {
    border-radius: 20px;
  }
  
  .demo-options {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
    max-width: 100vw;
    gap: 4px;
  }
  
  .demo-option {
    flex-shrink: 0;
    min-width: 60px;
    padding: 6px 8px;
  }
  
  .option-icon {
    font-size: 0.9rem;
    width: 24px;
    height: 24px;
  }
  
  .option-text h4 {
    font-size: 0.65rem;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .iphone-frame {
    width: 180px;
    height: 360px;
  }
  
  .demo-option {
    min-width: 55px;
    padding: 5px 6px;
  }
  
  .option-icon {
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
  }
  
  .option-text h4 {
    font-size: 0.6rem;
  }
}

@media (max-width: 350px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .iphone-frame {
    width: 160px;
    height: 320px;
  }
  
  .demo-options {
    gap: 3px;
  }
  
  .demo-option {
    min-width: 50px;
    padding: 4px 5px;
  }
  
  .option-icon {
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }
  
  .option-text h4 {
    font-size: 0.55rem;
  }
}

/* Contador de urgencia */
.contador-urgencia {
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  text-align: center;
  margin: 20px auto;
  max-width: 400px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(229, 9, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

/* 🔥 CORREÇÕES FINAIS: Remove parte branca SEM BLOQUEAR SCROLL */
html {
  height: 100%;
}

body {
  height: 100%;
  overflow-y: auto;
  position: relative;
}

/* 🔥 GARANTE que o gradiente cubra TUDO */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: -9999;
}

/* 🔥 GARANTE que todas as seções tenham fundo */
section, .hero, .landing-footer {
  background: inherit;
}

/* 🔥 CORREÇÃO ESPECIAL para o footer */
.landing-footer {
  position: relative;
}

.landing-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #0a0a0a, #1a001a);
  z-index: -1;
}