/* =====================================================
   TRANÇAS RECHEADAS V2 — MÉTODO TRS
   Style System: Warm & Premium (Original Migrado)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #CC2200;
    --gold-light: #FF4D4D;
    --gold-dark: #881100;
    --brown: #000000;
    --brown-mid: #1A1A1A;
    --cream: #FFFFFF;
    --cream-dark: #F2F2F2;
    --red: #CC2200;
    --red-dark: #AA1800;
    --white: #FFFFFF;
    --gray-light: #F8F8F8;
    --gray-mid: #E0E0E0;
    --text-dark: #000000;
    --text-mid: #333333;
    --text-light: #666666;
    --green: #28A745;
    --success: #25D366;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.2);
    --radius: 16px;
    --radius-lg: 28px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

/* ---- TYPOGRAPHY ---- */
.section-title {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 900;
    color: var(--brown);
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section-title .highlight-red {
    color: var(--red);
}

/* ---- BUTTONS ---- */
.btn-buy {
    display: inline-block;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    font-weight: 900;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(204, 34, 0, 0.45);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(204, 34, 0, 0.55);
}

.pulse {
    animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 6px 25px rgba(204, 34, 0, 0.45);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 10px 40px rgba(204, 34, 0, 0.7);
        transform: scale(1.03);
    }
}

.btn-buy-green {
    display: inline-block;
    background: linear-gradient(135deg, #1DB954, #25D366);
    color: #fff;
    font-weight: 900;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 60px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* ---- SECTIONS ---- */
.section-white {
    background: #FFFFFF !important;
    padding: 80px 0;
}

.section-gray {
    background: #F8F8F8 !important;
    padding: 80px 0;
}

.section-cream {
    background: #FFFDF5 !important;
    padding: 80px 0;
}

.section-hero {
    background: #000000 !important;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    color: #FFFFFF !important;
}

/* ---- HERO (RESPONSIVE FOCUS) ---- */
.big-headline-box {
    margin-bottom: 35px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    display: inline-block;
    max-width: 100%;
}

h1.big-headline {
    font-size: clamp(1.2rem, 7vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
    text-transform: none;
    word-break: break-word;
    /* Crucial para mobile */
}

.highlight-red {
    color: var(--red);
}

.hero-img-box {
    margin: 30px auto;
    max-width: 650px;
}

.hero-img-box img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(204, 34, 0, 0.2));
}

.hero-intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* ---- BONUSES & GRID ---- */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.bonus-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

/* ---- FAQ ---- */
.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid #eee;
}

.faq-question {
    padding: 15px 20px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    padding: 0 20px 15px;
    display: none;
    color: #666;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ---- ANIMATIONS ---- */
@keyframes grow-rotate {
    0% {
        transform: scale(1) rotate(0deg);
    }

    100% {
        transform: scale(1.05) rotate(2deg);
    }
}

.animate-grow-rotate {
    transition: transform 0.3s ease;
}

.animate-grow-rotate:hover {
    animation: grow-rotate 0.3s ease forwards;
}

/* ---- MOBILE REGS (SIMPLE & ROBUST) ---- */
@media (max-width: 480px) {
    .section-hero {
        padding: 40px 0;
    }

    h1.big-headline {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
    }

    .hero-img-box {
        max-width: 320px !important;
    }

    .hero-intro {
        font-size: 0.95rem;
        padding: 0 10px;
    }

}

    .section-title {
        font-size: 1.3rem !important;
    }

    .pricing-col.featured {
        transform: scale(1);
    }
}




