/* Variáveis CSS */
:root {
    --primary: #4a6bff;
    --secondary: #ff6b6b;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --font-poppins: 'Poppins', sans-serif;
    --cta-bg-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --cta-btn-gradient: linear-gradient(135deg, #ff6b6b 0%, #d62828 100%);
}

/* Estilos Gerais */
body {
    font-family: var(--font-poppins);
    overflow-x: hidden;
    background-color: var(--light);
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--dark) !important;
}

.nav-link {
    font-weight: 500;
}

/* Seção Hero */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1588075592446-24590a94b3c8?auto=format&fit=crop&w=1352&q=80') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

/* Seção Bônus */
.benefit-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Seção Depoimentos */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 25px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4a6bff;
}

/* Seção FAQ */
.accordion-button:not(.collapsed) {
    background-color: rgba(74, 107, 255, 0.1);
    color: var(--primary);
    font-weight: 600;
}

/* Seção Oferta (CTA) - Nova Versão */
.new-cta-background {
    background: var(--cta-bg-gradient);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.new-cta-background::before,
.new-cta-background::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

.new-cta-background::before {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    transform: rotate(45deg);
}

.new-cta-background::after {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: -80px;
    transform: rotate(-30deg);
}

.cta-card-v2 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #333;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    padding: 50px;
    max-width: 750px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.cta-title-v2 {
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Estilos para a nova informação de preço */
.price-info {
    line-height: 1.2;
    margin-bottom: 20px;
}

.old-price {
    font-size: 1.2rem;
    color: #888;
    margin-right: 10px;
}

.old-price del {
    text-decoration: line-through;
}

.cta-price-v2 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--secondary);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-comprar-v2 {
    background: var(--cta-btn-gradient);
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 18px 50px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.btn-comprar-v2:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.cta-badges-v2 {
    margin-top: 30px;
    gap: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-badges-v2 img {
    max-height: 60px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.garantia-v2 {
    font-size: 1rem;
    color: #666;
    margin-top: 25px;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.social-icon {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

/* Pop-up de prova social */
.popup-venda {
  position: fixed;
  bottom: 70px; /* sobe para não ficar atrás do CTA */
  left: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: none;
  align-items: center;
  z-index: 1001; /* acima do sticky CTA */
  animation: fadeInUp 0.5s ease-in-out;
}

.popup-venda.ativo {
  display: flex;
}

.popup-venda i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Animação de pulsar para o botão principal */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-comprar-v2 {
  animation: pulse 2s infinite;
}
/* Seção de perdas */
.loss-card {
  background: #f8d7da;
  padding: 20px;
  border-radius: 12px;
  font-weight: 600;
  color: #721c24;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Contador */
.contador {
  font-size: 2rem;
  font-weight: bold;
  color: #d62828;
  margin-bottom: 15px;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0d6efd;
  padding: 12px;
  text-align: center;
  z-index: 999; /* abaixo do popup */
}

/* Contador no topo (mobile only) */
.contador-topo-mobile {
  position: fixed;
  top: 60px; /* abaixo da navbar */
  left: 0;
  width: 100%;
  background: #ffc107;
  color: #000;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
  z-index: 1000; /* abaixo da navbar */
}

/* Aumentar destaque do sticky CTA no mobile */
@media (max-width: 768px) {
  .sticky-cta .btn-comprar-v2 {
    font-size: 1.2rem;
    padding: 16px;
    border-radius: 12px;
  }
}

/* Ajuste para o footer não ficar escondido pelo sticky CTA */
body {
  padding-bottom: 80px; /* altura aproximada do sticky CTA */
}

/* Benefícios */
.benefit-card {
  background: #fff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Bônus */
.bonus-card {
  background: #f9f9f9;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}


