/* ========================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ======================================== */
:root {
    --bg-color: #0d0d0d;
    --text-color: #e0e0e0;
    --primary-red: #8B0000;
    --accent-red: #bb0a1e;
    --neon-green: #39FF14;
    --neon-green-glow: rgba(57, 255, 20, 0.4);
    --dark-surface: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    text-transform: uppercase;
}

/* ========================================
   CONTAINER E LAYOUT BASE
   ======================================== */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 20px auto;
}

.image-container {
    text-align: center;
    margin: 30px 0;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* ========================================
   TIPOGRAFIA E DESTAQUES
   ======================================== */
.headline {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.sub-headline {
    font-size: 1.1rem;
    font-weight: 400;
    color: #cccccc;
    margin-bottom: 30px;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.highlight-text {
    color: var(--neon-green);
    font-weight: 800;
}

.highlight-text-red {
    color: var(--primary-red);
}

.body-text {
    text-align: center;
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 800px;
    margin: 20px auto;
}

/* ========================================
   BOTÕES CTA - SEMPRE CENTRALIZADOS
   ======================================== */
.cta-button {
    display: block;
    background-color: var(--neon-green);
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 0 15px var(--neon-green-glow);
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin: 30px auto;
    width: 90%;
    max-width: 450px;
    text-align: center;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--neon-green-glow);
    background-color: #4aff25;
}

.cta-button.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(57, 255, 20, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
    }
}

.cta-container {
    text-align: center;
    margin: 40px 0;
}

/* ========================================
   SEÇÃO HERO
   ======================================== */
.hero-section {
    padding: 60px 20px;
    background: radial-gradient(circle at center, #1a0505 0%, #000000 70%);
}

/* ========================================
   SEÇÃO DE PROVA SOCIAL
   ======================================== */
.proof-section {
    padding: 60px 20px;
    background-color: #000;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.proof-img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #333;
}

/* ========================================
   SEÇÃO DE MÉTODO
   ======================================== */
.method-section {
    padding: 60px 20px;
    background-color: var(--dark-surface);
    border-top: 2px solid var(--primary-red);
    border-bottom: 2px solid var(--primary-red);
}

.text-block {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.concept-box {
    background-color: rgba(139, 0, 0, 0.15);
    border-left: 4px solid var(--primary-red);
    padding: 20px;
    margin: 30px auto;
    text-align: center;
    max-width: 800px;
    border-radius: 5px;
}

/* ========================================
   SEÇÃO DE BENEFÍCIOS
   ======================================== */
.benefits-section {
    padding: 60px 20px;
    background-color: #050505;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.benefit-card {
    background: #111;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #222;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.benefit-card h3 {
    color: var(--primary-red);
    margin: 0 0 15px 0;
    font-size: 1.2rem;
}

.benefit-card p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}

/* ========================================
   SEÇÃO DO CICLO
   ======================================== */
.cycle-section {
    padding: 60px 20px;
    background: #080808;
}

.cycle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 30px auto;
    max-width: 600px;
}

.cycle-step {
    background: #222;
    padding: 18px;
    border-radius: 8px;
    width: 100%;
    font-weight: 600;
    border: 1px solid #333;
    text-align: center;
}

.cycle-arrow {
    color: var(--primary-red);
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}

.red-alert {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--accent-red);
    font-size: 1.1rem;
}

.cycle-img {
    max-width: 400px;
    margin: 30px auto;
}

/* ========================================
   SEÇÃO DE BÔNUS
   ======================================== */
.bonuses-section {
    padding: 60px 20px;
    background-color: #0a0a0a;
}

.bonus-card {
    background: var(--dark-surface);
    border: 1px solid #333;
    border-radius: 10px;
    margin: 25px auto;
    padding: 30px;
    max-width: 800px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    text-align: left;
}

.bonus-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.bonus-content {
    flex: 1;
}

.bonus-content h3 {
    color: var(--neon-green);
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.bonus-content p {
    margin: 0;
}

.price-strike {
    font-size: 0.95rem;
    color: #888;
    text-decoration: line-through;
}

.free {
    color: var(--neon-green);
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
}

/* ========================================
   SEÇÃO DE OFERTA
   ======================================== */
.offer-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #000 0%, #1a0505 100%);
}

.offer-hero-img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
}

.product-stack {
    max-width: 800px;
    margin: 40px auto;
}

.stack-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    text-align: left;
    gap: 20px;
}

.stack-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
}

.stack-item p {
    flex: 1;
    margin: 0;
    font-size: 1rem;
}

.price-tag {
    color: #FFD700;
    font-weight: bold;
    text-decoration: line-through;
}

.price-box {
    background: #111;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--primary-red);
    margin: 40px auto;
    max-width: 600px;
    text-align: center;
}

.total-value {
    text-decoration: line-through;
    color: #888;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.offer-text {
    font-size: 1.1rem;
    margin: 10px 0;
}

.final-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--neon-green);
    line-height: 1.2;
    margin: 20px 0;
}

.installments {
    font-size: 1rem;
    color: #ccc;
}

/* ========================================
   SEÇÃO DE GARANTIA
   ======================================== */
.guarantee-section {
    padding: 60px 20px;
    background: #050505;
}

.guarantee-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    border: 2px dashed #444;
    padding: 40px;
    border-radius: 12px;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
}

.guarantee-seal {
    width: 180px;
    flex-shrink: 0;
}

.guarantee-text {
    flex: 1;
    text-align: left;
}

.guarantee-text h3 {
    color: var(--neon-green);
    margin: 0 0 10px 0;
    font-size: 1.4rem;
}

.guarantee-text p {
    color: #ddd;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.guarantee-quote {
    font-style: italic;
    color: #ddd;
    border-left: 4px solid var(--neon-green);
    padding-left: 20px;
    margin: 20px 0;
    background: rgba(57, 255, 20, 0.05);
    padding: 15px 20px;
    border-radius: 5px;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    background: #000;
}

footer p {
    margin: 0;
}

/* ========================================
   RESPONSIVIDADE PARA TABLETS
   ======================================== */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    .headline {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .sub-headline {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 16px 30px;
        width: 95%;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bonus-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .bonus-img {
        width: 120px;
        height: 120px;
    }

    .bonus-content {
        text-align: center;
    }

    .stack-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .stack-img {
        width: 90px;
        height: 90px;
        margin-bottom: 10px;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .guarantee-seal {
        width: 140px;
    }

    .guarantee-text {
        text-align: center;
    }

    .guarantee-quote {
        text-align: left;
    }

    .final-price {
        font-size: 2.8rem;
    }

    .price-box {
        padding: 30px 20px;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   RESPONSIVIDADE PARA MOBILE
   ======================================== */
@media (max-width: 480px) {
    .headline {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .sub-headline {
        font-size: 0.95rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 14px 25px;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .cycle-step {
        font-size: 0.95rem;
        padding: 15px;
    }

    .benefit-card {
        padding: 20px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .final-price {
        font-size: 2.2rem;
    }

    .text-block p {
        font-size: 1rem;
    }

    .concept-box {
        padding: 15px;
        font-size: 1rem;
    }

    .bonus-card {
        padding: 20px;
    }

    .guarantee-box {
        padding: 25px 15px;
    }

    .guarantee-text h3 {
        font-size: 1.2rem;
    }

    .stack-item {
        padding: 15px;
    }

    .price-box {
        padding: 25px 15px;
    }
}