:root {
    --primary: #0ea5e9; /* Azul amigável */
    --primary-dark: #0284c7;
    --secondary: #f97316; /* Laranja/Amarelo */
    --secondary-dark: #ea580c;
    --accent: #16a34a; /* Verde Compra */
    --accent-dark: #15803d;
    --bg-light: #fdfbf7;
    --text-main: #334155;
    --text-light: #64748b;
    --alert-red: #dc2626; /* Vermelho para a barra de topo */
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { color: var(--text-main); background-color: #ffffff; line-height: 1.6; }
.container { width: 90%; max-width: 800px; margin: 0 auto; padding: 40px 0; }
.bg-light { background-color: var(--bg-light); }

html {
    scroll-behavior: smooth;
}

/* --- NOVA BARRA DE TOPO --- */
.top-bar {
    background-color: var(--alert-red);
    color: white;
    text-align: center;
    padding: 10px 5%;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.top-bar span {
    font-weight: 800;
    text-decoration: underline;
}

h1, h2, h3 { line-height: 1.3; margin-bottom: 20px; text-align: center; }
h1 { font-size: 2rem; color: #0f172a; font-weight: 800; }
h2 { font-size: 1.8rem; font-weight: 800; }
.highlight { color: var(--primary); }
.text-blue { color: var(--primary); }
.text-orange { color: var(--secondary); }
.text-green { color: var(--accent); }
.text-red { color: #ef4444; }

/* Hero */
.hero { text-align: center; padding: 40px 0 20px; /* Ajustado padding superior */ background: linear-gradient(to bottom, #f0f9ff, #ffffff); }
.badge { display: inline-block; background-color: var(--secondary); color: #fff; padding: 5px 15px; border-radius: 20px; font-weight: 600; font-size: 0.9rem; margin-bottom: 15px; text-transform: uppercase;}
.subtitle { font-size: 1.1rem; color: var(--text-light); margin-bottom: 30px; }
.mockup-container img { width: 100%; max-width: 500px; border-radius: 10px; margin-bottom: 30px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

/* Buttons */
.cta-button { display: inline-block; background-color: var(--accent); color: white; padding: 18px 35px; border-radius: 50px; font-size: 1.2rem; font-weight: 800; text-decoration: none; box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3); transition: transform 0.2s, background 0.2s; }
.cta-button:hover { background-color: var(--accent-dark); transform: translateY(-3px); }
.secure-text { font-size: 0.9rem; color: var(--text-light); margin-top: 15px; display: flex; align-items: center; justify-content: center; gap: 5px;}

/* Pulse Animation */
.pulse { animation: pulse-anim 2s infinite; }
@keyframes pulse-anim { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }

/* Lists */
.check-list { list-style: none; text-align: left; background: #fff; padding: 30px; border-radius: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.check-list li { margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: flex-start; gap: 10px; }
.check-list i { color: var(--primary); font-size: 1.5rem; margin-top: 2px;}

/* Features */
.grid-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 30px 0; }
.feature-card { text-align: center; padding: 20px; border: 2px dashed #cbd5e1; border-radius: 15px; }
.feature-card i { font-size: 3rem; color: var(--secondary); margin-bottom: 10px; }
.highlight-box { background-color: #fffbeb; padding: 15px; text-align: center; border-radius: 10px; border-left: 5px solid var(--secondary); font-size: 1.1rem;}

/* Bonuses */
.bonus-grid { display: flex; flex-direction: column; gap: 20px; }
.bonus-card { background: white; padding: 25px; border-radius: 15px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-top: 5px solid var(--primary); }
.bonus-icon { font-size: 2.5rem; margin-bottom: 10px; }

/* Pricing */
.timer-box { background: #fee2e2; color: #991b1b; padding: 15px; text-align: center; border-radius: 10px; font-weight: 600; margin-bottom: 30px; border: 2px solid #fca5a5; }
.timer { font-size: 2rem; font-weight: 800; letter-spacing: 2px; }
.pricing-table { display: flex; flex-direction: column; gap: 30px; margin-top: 30px; }
.plan { background: white; padding: 30px; border-radius: 20px; border: 1px solid #e2e8f0; text-align: center; position: relative; }
.basic-plan { opacity: 0.9; }
.complete-plan { border: 3px solid var(--primary); box-shadow: 0 15px 30px rgba(14, 165, 233, 0.15); transform: scale(1.02); }
.ribbon { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--secondary); color: white; padding: 5px 20px; border-radius: 20px; font-weight: 800; font-size: 0.9rem; letter-spacing: 1px; }
.price { font-size: 3rem; font-weight: 800; color: #0f172a; margin: 15px 0; }
.price-strike { color: #ef4444; text-decoration: line-through; font-weight: 600; }
.plan-features { list-style: none; text-align: left; margin: 20px 0 30px; }
.plan-features li { margin-bottom: 8px; font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
.btn-basic { display: block; background: #cbd5e1; color: #334155; padding: 15px; border-radius: 10px; text-decoration: none; font-weight: 700; }
.btn-complete { display: block; background: var(--accent); color: white; padding: 20px; border-radius: 10px; text-decoration: none; font-weight: 800; font-size: 1.2rem; }

/* Guarantee */
.guarantee-flex { display: flex; align-items: center; gap: 20px; background: #f0f9ff; padding: 30px; border-radius: 20px; border: 2px solid #bae6fd; flex-direction: column; text-align: center; }
.guarantee-icon { font-size: 5rem; color: var(--primary); }
@media(min-width: 600px) { .guarantee-flex { flex-direction: row; text-align: left; } }

/* Accordion FAQ */
.accordion-item { border-bottom: 1px solid #e2e8f0; }
.accordion-header { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-size: 1.1rem; font-weight: 600; color: #0f172a; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.accordion-content p { padding-bottom: 20px; color: var(--text-light); }

footer { background: #0f172a; color: white; text-align: center; padding: 10px 0; font-size: 0.9rem; }
/* --- ALINHAMENTO DE IMAGENS MOBILE --- */

/* Centraliza o Mockup Principal */
.mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto 30px auto;
}

.mockup-container img {
    width: 100%;
    max-width: 400px; /* Impede que fique gigante no PC */
    height: auto;
    display: block;
}

/* Centraliza e ajusta as Capas dos Bônus */
.bonus-img {
    display: block;
    margin: 0 auto 20px auto; /* Centraliza a imagem e dá espaço para o título */
    width: 100%;
    max-width: 180px; /* Tamanho ideal para as capas não tomarem a tela toda */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Dá um efeito 3D flutuante suave */
}

/* --- IMAGEM DO SELO DE GARANTIA --- */
.guarantee-img {
    width: 100%;
    max-width: 120px; /* Tamanho ideal para o selo */
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

/* Ajuste fino para o celular */
@media (max-width: 600px) {
    .guarantee-img {
        margin-bottom: 15px;
    }
}

/* --- SEÇÃO DE DEPOIMENTOS (CARROSSEL) --- */
.testimonials {
    text-align: center;
}

.carousel-wrapper {
    width: 100%;
    max-width: 320px; /* Largura ideal para simular a tela de um celular */
    margin: 30px auto 0 auto;
    overflow: hidden; /* Esconde as imagens que estão fora da tela */
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15); /* Sombra elegante */
    border: 5px solid #fff; /* Borda branca imitando o celular */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Deslizamento suave */
}

.carousel-slide {
    min-width: 100%; /* Cada imagem ocupa 100% do espaço visível */
    height: auto;
    display: block;
    object-fit: cover;

}
