/* Google Fonts & Reset */
:root {
    --bg-dark: #070707;
    --bg-gradient: linear-gradient(135deg, #181610 0%, #030303 100%);
    --bg-card: #0A0A0A;
    --gold: #FFC107;
    --gold-light: #FFD54F;
    --gold-dark: #b58d08;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --red: #e74c3c;
    --green-wpp: #25D366;
    --gap-sm: 10px;
    --gap-md: 20px;
    --gap-lg: 40px;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.highlight-gold { color: var(--gold); }
.text-white { color: var(--text-white); }
.text-red { color: var(--red); }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.line-through { text-decoration: line-through; }
.text-lg { font-size: 1.2rem; }
.text-xs { font-size: 0.8rem; }
.my-md { margin: 20px 0; }
.my-lg { margin: 40px 0; }

.text-glow {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}
.text-glow-gold {
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.7);
    color: var(--gold);
}

.dim-separator {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 30px 0;
}
.separator {
    border: none;
    height: 2px;
    background: var(--gold);
    width: 50px;
    margin: 20px auto;
}

/* Hero Section */
.hero {
    background: url('https://images.unsplash.com/photo-1534796636912-36526501300e?auto=format&fit=crop&q=80&w=1000') center/cover no-repeat;
    position: relative;
    padding: 60px 0 30px;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.logo-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.badge {
    display: inline-block;
    background-color: #F8D580; /* lighter gold */
    color: #000;
    padding: 4px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.hero-image-wrapper {
    position: relative;
    margin-top: 20px;
    height: 280px; 
    overflow: hidden;
}

.mentor-image {
    width: 100%;
    object-position: top;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.hero-promise {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: -30px;
    position: relative;
    z-index: 3;
}

.arrow-down {
    color: var(--gold);
    font-size: 2rem;
    margin-top: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-15px);}
    60% {transform: translateY(-7px);}
}

/* Problem Section */
.problem-section {
    padding: 40px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #111 100%);
}

.tired-title {
    font-size: 1.3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
}

.problem-grid .problem-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.problem-image img {
    border-radius: var(--border-radius);
    opacity: 0.8;
}

/* Solution Section */
.solution-section {
    padding: 50px 0;
    border-top: 1px solid rgba(255,193,7,0.2);
    border-bottom: 1px solid rgba(255,193,7,0.2);
}

.solution-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.solution-title {
    font-size: 1.3rem;
    line-height: 1.4;
}

/* Details Section */
.details-section {
    padding: 50px 0;
}

.big-title-gold {
    color: var(--gold);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.devices-text, .anytime-text, .income-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.solution-visual {
    position: relative;
    margin-top: 40px;
}

.visual-text {
    font-style: italic;
    font-weight: 400;
    font-size: 1.2rem;
    position: absolute;
    top: -40px;
    width: 100%;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.visual-img {
    border-radius: var(--border-radius);
    width: 100%;
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.action-box {
    margin-top: -30px;
    position: relative;
    z-index: 3;
}

.action-box p {
    font-size: 1rem;
    font-weight: 700;
}

.action-box h2 {
    font-size: 1.8rem;
    font-weight: 900;
}

/* Bonus Section */
.bonus-section {
    padding: 50px 0;
    background: radial-gradient(circle at center, #221c08 0%, var(--bg-dark) 70%);
}

.neon-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 40px;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bonus-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.bonus-item.row-layout {
    flex-direction: row;
    text-align: left;
    justify-content: space-around;
}

.bonus-icon i {
    font-size: 2rem;
    border: 1px solid var(--gold);
    padding: 15px;
    border-radius: 10px;
}

.bonus-item p {
    font-size: 1.1rem;
}

.bonus-subicon i {
    font-size: 2rem;
    color: var(--green-wpp);
}

.bonus-item.row-layout .bonus-subicon i {
    color: var(--gold);
}

/* Certificate Section */
.certificate-section {
    padding: 50px 0;
    background-color: #0d0c08;
    border-top-left-radius: 50% 10px;
    border-top-right-radius: 50% 10px;
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cert-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cert-mockup {
    position: relative;
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 10px;
    background: #111;
}

.cert-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
}

.cert-overlay p {
    font-family: 'Brush Script MT', cursive; 
    font-size: 2.5rem;
    color: var(--text-white);
    opacity: 0.9;
}

/* Offer Section */
.offer-section {
    padding: 50px 0;
}

.super-offer-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.discount-badge {
    background: rgba(20,20,20,0.8);
    border: 1px solid var(--gold);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
}

.percentage {
    color: var(--gold);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255,193,7,0.5);
}

.pricing-card {
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
    background: linear-gradient(180deg, rgba(30,25,10,1) 0%, rgba(10,10,10,1) 100%);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    font-weight: 900;
    padding: 5px 20px;
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 50% 80%, 0 100%);
    padding-bottom: 15px;
}

.mockup-img {
    margin: 30px 0;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    position: relative;
}

.price-container {
    margin-bottom: 30px;
}

.old-price {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.big-price {
    font-size: 4rem;
}

.installments {
    font-size: 1rem;
    margin-top: 10px;
}

.btn-primary {
    display: block;
    background: linear-gradient(to right, #25D366, #1da851);
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 20px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s;
}

.btn-primary:active {
    transform: scale(0.98);
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    background: url('https://images.unsplash.com/photo-1595959183082-7b570b7e08e2?auto=format&fit=crop&q=80&w=600') center/cover no-repeat;
    position: relative;
}

.guarantee-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg-dark) 0%, rgba(0,0,0,0.7) 50%, var(--bg-dark) 100%);
    z-index: 1;
}

.guarantee-section > * {
    position: relative;
    z-index: 2;
}

.guarantee-title {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 30px;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-white);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 40px;
}

.big-seven {
    font-size: 12rem;
    font-weight: 900;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 2px var(--text-white);
    opacity: 0.8;
}

.guarantee-card {
    background: var(--gold);
    color: #000;
    border-radius: 5px;
    padding: 10px 20px;
    position: absolute;
    bottom: 20px;
}

.guarantee-text p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #dedede;
}

/* Mentor Section */
.mentor-section {
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mentor-title {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.mentor-bio-img {
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.bio-text p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #cccccc;
}

/* Testimonials Section */
.testimonials-section {
    padding: 50px 0;
}

.testimonials-title {
    font-size: 1.8rem;
    font-weight: 800;
}

.testimonials-subtitle {
    margin: 15px 0 40px;
    font-size: 0.9rem;
}

.wa-mock {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

.review-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.review-card {
    background: #fff;
    color: #000;
    border-radius: 12px;
    padding: 30px 20px;
    position: relative;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.review-text {
    font-size: 1rem;
    margin-bottom: 15px;
}

.stars {
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.author {
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
}

/* FAQ / Footer widget */
.faq-banner {
    background: var(--green-wpp);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 40px 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.faq-icon i {
    font-size: 3rem;
    color: rgba(0,0,0,0.5);
}

.badge-white {
    background: #fff;
    color: var(--green-wpp);
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 5px;
    display: inline-block;
    margin: 5px 0 10px;
    font-size: 0.8rem;
}

.faq-text .small {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* WhatsApp Fixed Button */
.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--green-wpp);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    z-index: 999;
    transition: transform 0.2s;
    border: 2px solid #fff;
}

.btn-whatsapp:hover {
    transform: scale(1.1);
}

/* Desktop Layout Upgrades */
@media (min-width: 768px) {
    .container {
        max-width: 1100px;
    }
    
    .logo-title {
        font-size: 3.5rem;
    }

    .hero-image-wrapper {
        height: 450px;
        max-width: 700px;
        margin: 40px auto;
    }

    .hero-promise {
        font-size: 1.5rem;
        max-width: 800px;
        margin: -30px auto 0;
    }

    .problem-grid {
        display: flex;
        align-items: center;
        gap: 60px;
        text-align: left;
    }

    .problem-grid > * {
        flex: 1;
    }

    .tired-title {
        font-size: 2rem;
    }
    
    .solution-title {
        font-size: 2.2rem;
    }

    .solution-visual {
        max-width: 700px;
        margin: 40px auto;
    }

    .visual-text {
        font-size: 1.6rem;
        top: -50px;
    }

    .bonus-list {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 20px;
    }

    .bonus-item {
        flex: 1;
        padding: 30px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 15px;
        border: 1px solid rgba(255, 193, 7, 0.2);
    }
    
    .bonus-item.row-layout {
        flex-direction: column;
        text-align: center;
    }

    .dim-separator {
        display: none;
    }

    .cert-mockup {
        max-width: 600px;
        margin: 0 auto;
    }

    .discount-badge {
        max-width: 600px;
        margin: 0 auto 40px;
    }
    
    .super-offer-title {
        font-size: 3rem;
    }

    .pricing-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .guarantee-title {
        font-size: 3.5rem;
    }

    .guarantee-text {
        max-width: 700px;
        margin: 0 auto;
    }

    .guarantee-content {
        max-width: 600px;
        margin: 0 auto 40px;
    }

    .mentor-section .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 60px;
        text-align: left;
    }

    .mentor-title {
        flex-basis: 100%;
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .mentor-bio-img {
        flex: 1;
        max-width: 450px;
        margin-bottom: 0;
    }

    .bio-text {
        flex: 1;
        font-size: 1.1rem;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }

    .whatsapp-mockups {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .wa-mock {
        max-width: 300px;
    }

    .whatsapp-mockups > p {
        max-width: 200px;
    }

    .review-cards {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }

    .review-card {
        flex: 1;
        max-width: 350px;
    }

    .faq-banner {
        max-width: 700px;
        margin: 40px auto 0;
    }
}
