/* =====================================================
   101 TINTURAS ESPIRITUAIS — MÉTODO TRS
   Style System: Herbal & Premium
   ===================================================== */

@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 {
    --primary: #2d5a27;
    --primary-light: #4c8a44;
    --primary-dark: #1e3d1a;
    --gold: #D3A74A;
    --gold-light: #E9C46A;
    --gold-dark: #B08A35;
    --brown: #000000;
    --brown-mid: #1A1A1A;
    --cream: #FFFFFF;
    --cream-dark: #F2F2F2;
    --red: #2d5a27; /* Replaced Red with Original Herbal Green */
    --red-dark: #1e3d1a;
    --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: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section-title .highlight-green {
    color: var(--primary);
}

/* ---- BUTTONS ---- */
.btn-buy {
    display: inline-block;
    background: linear-gradient(180deg, #28a745 0%, #1e7e34 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(40, 167, 69, 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(40, 167, 69, 0.45);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 10px 40px rgba(40, 167, 69, 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: 40px 0;
}

.section-gray {
    background: #F8F8F8 !important;
    padding: 40px 0;
}

.section-cream {
    background: #FFFDF5 !important;
    padding: 40px 0;
}

.section-hero {
    background: #000000 !important;
    padding: 40px 0 50px;
    position: relative;
    overflow: hidden;
    color: #FFFFFF !important;
}

/* ---- HERO (RESPONSIVE FOCUS) ---- */
.big-headline-box {
    margin-bottom: 25px;
    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);
}

/* ---- MODAL (UPSELL) ---- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    max-width: 480px;
    width: 90%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modal-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
}

.modal-close:hover {
    color: var(--red);
}

.modal-icon {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 15px;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    font-weight: 600;
}

.modal-price-box {
    background: #fff0f0;
    border: 2px dashed var(--red);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.modal-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.modal-price-new {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    display: block;
    margin-top: 5px;
}

.modal-features {
    text-align: left;
    margin-bottom: 20px;
    padding: 0;
}

.modal-features li {
    list-style: none;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-mid);
}

.modal-features li i {
    color: var(--green);
}

.btn-upsell {
    background: linear-gradient(180deg, #28a745 0%, #1e7e34 100%);
    color: #fff;
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 900;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.4);
    text-transform: uppercase;
    display: block;
    text-decoration: none;
    text-align: center;
}

.btn-basic-link {
    display: inline-block;
    margin-top: 15px;
    color: #999;
    text-decoration: underline;
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-basic-link:hover {
    color: var(--text-dark);
}

@media (max-width: 480px) {
    .modal-content {
        padding: 20px 15px;
    }
    .modal-icon {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .modal-price-new {
        font-size: 2rem;
    }
    .modal-title {
        font-size: 1.2rem;
    }
    .modal-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    .btn-upsell {
        font-size: 1rem;
        padding: 12px;
    }
}




