:root {
    --bg-dark: #fdf2f7;
    /* Very light pink background */
    --bg-panel: rgba(255, 255, 255, 0.6);
    /* Glass effect for light mode */
    --primary: #e71866;
    --secondary: #7a00df;
    --text-main: #2d2d2d;
    /* Dark text for readability */
    --text-muted: #555555;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --glow-primary: 0 0 20px rgba(231, 24, 102, 0.3);
    --glow-secondary: 0 0 20px rgba(122, 0, 223, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Effects */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff0f6 0%, #ffe6ea 100%);
    z-index: -2;
    pointer-events: none;
}

.glow-orb {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
    animation: floatOrb 10s infinite alternate;
}

.top-left {
    top: -100px;
    left: -100px;
    background: var(--primary);
}

.bottom-right {
    bottom: -100px;
    right: -100px;
    background: var(--secondary);
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.highlight {
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 46, 99, 0.8);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #e71866;
    /* Pink text for secondary button */
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #e71866;
    transition: var(--transition);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: #e71866;
    color: #fff;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 46, 99, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 46, 99, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 46, 99, 0);
    }
}

/* Glassmorphism */
.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(231, 24, 102, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.navbarglass {
    background: rgba(253, 242, 247, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(231, 24, 102, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.navbarglass .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge-glitch {
    background: rgba(255, 46, 99, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2rem;
    /* Reduced for longer text */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-transform: uppercase;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle-large {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 10px;
    /* Reduced bottom margin */
    font-weight: 500;
    opacity: 0.9;
}

/* Mobile adjustments for the new header */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle-large {
        font-size: 1.4rem;
    }
}

/* Video Section */
.section-video {
    padding: 50px 0;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid var(--secondary);
    box-shadow: var(--glow-secondary);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    contain: content;
    /* Performance optimization */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Results & Features */
.section-results,
.section-modules {
    padding: 80px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.image-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.image-card:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 0 30px rgba(8, 217, 214, 0.2);
}

.image-card img {
    width: 100%;
    display: block;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.module-card {
    text-align: center;
    transition: var(--transition);
}

.module-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.module-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

/* Bonuses */
.section-bonuses {
    background: rgba(255, 255, 255, 0.4);
    padding: 80px 0;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.bonus-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(231, 24, 102, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bonus-img img {
    width: 100%;
    height: auto;
}

.bonus-info {
    padding: 20px;
    text-align: center;
}

.price-strike {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
}

.price-free {
    color: #00ff00;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Offer */
.section-offer {
    padding: 100px 0;
    scroll-margin-top: 100px;
    /* Fix for sticky header obscuring content */
}

#comprar-agora {
    scroll-margin-top: 120px;
    /* Ensures the card is fully visible below header */
}

.offer-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(231, 24, 102, 0.15);
}

.offer-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.offer-price {
    margin: 30px 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.new-price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.new-price small {
    font-size: 1.5rem;
    color: var(--text-main);
}

.guarantee-box {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.guarantee-seal {
    width: 60px;
}

/* Author */
.section-author {
    padding: 80px 0;
    background: #fff0f5;
}

.author-text p {
    margin-bottom: 20px;
}

.author-img {
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    border: 2px solid var(--secondary);
    box-shadow: var(--glow-secondary);
}

/* Offer Bonus Integration (Mobile Optimized) */
.offer-bonuses-mobile {
    margin: 25px 0 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px dashed var(--primary);
}

.bonus-intro {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-items: center;
}

.bonus-mini-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mini-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.mini-free-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2ecc71;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    text-align: center;
    padding: 2px 0;
}

.mini-old-price {
    font-size: 0.75rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.bonus-savings-badge {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--primary);
    background: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.mini-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 70px;
    /* Reduced for better mobile fit */
    margin: 0 auto 5px auto;
    /* Centered with bottom margin */
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bonus-tag-shiny {
    background: linear-gradient(90deg, #f1c40f, #e67e22);
    color: white;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(241, 196, 15, 0.3);
    margin-bottom: 10px;
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        opacity: 0.9;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.9;
        transform: scale(1);
    }
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Testimonials */
.section-testimonials {
    padding: 80px 0;
    text-align: center;
}

.carousel-container {
    max-width: 800px;
    margin: 40px auto 0;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    /* Hide scrollbar for smooth effect */
    padding: 10px;
    white-space: nowrap;
}

.carousel-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.testimonial-img {
    width: 100%;
    max-width: 350px;
    /* Good size for desktop cards */
    flex: 0 0 auto;
    scroll-snap-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
    /* Center if single */
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        height: auto;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        display: block;
        margin: 10px 0 0 0;
    }

    .grid-2,
    .bonuses-grid,
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-results,
    .section-modules,
    .section-author,
    .section-offer,
    .section-faq {
        padding: 50px 0;
    }

    .glass-panel {
        padding: 20px;
    }

    .new-price {
        font-size: 2.8rem;
    }

    .navbarglass .logo {
        font-size: 1.2rem;
    }

    .navbarglass .btn-sm {
        display: none;
    }

    .author-img-wrapper {
        order: -1;
        margin-bottom: 20px;
    }

    .testimonial-img {
        max-width: 85vw;
        /* Proportional on mobile */
        margin-right: 10px;
    }
}