:root {
    --bg-start: #6b0000;
    --bg-end: #2a0000;
    --primary-red: #ff3333;
    --primary-red-hover: #ff4d4d;
    --text-main: #ffffff;
    --text-muted: #e0e0e0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    --accent-gold: #ffd700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glass Card Global Style */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-red);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 51, 51, 0.4);
}

.btn-primary:hover {
    background: var(--primary-red-hover);
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.6);
}

.w-100 {
    width: 100%;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

/* Urgency Bar */
.urgency-bar {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--primary-red);
}

/* Typography elements */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffffff, #e0e0e0, #ffcccc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(255, 51, 51, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(20, 0, 0, 0.7) 0%, rgba(42, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
}

.hero-content {
    width: 100%;
    max-width: 750px;
    padding: 6rem 2rem 6rem 0;
}

.headline {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.subheadline {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ccc;
}

.check-icon {
    color: #4cd137;
    margin-right: 5px;
}

/* Other Sections Spacing */
section {
    padding: 5rem 0;
    position: relative;
}

.benefits-section {
    background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, rgba(20, 20, 30, 0.6) 100%);
    box-shadow: inset 0 20px 50px rgba(0, 0, 0, 0.4);
}

.bonus-section {
    background: radial-gradient(circle at center, rgba(30, 0, 0, 0.4) 0%, rgba(10, 10, 10, 0.8) 100%);
    border-top: 1px solid rgba(255, 51, 51, 0.1);
    border-bottom: 1px solid rgba(255, 51, 51, 0.1);
}

.faq-section {
    background: linear-gradient(to bottom, transparent, rgba(50, 0, 0, 0.2), transparent);
}


/* Grid Cards */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.grid-cards h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.grid-cards p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.glass-card-highlight {
    background: rgba(255, 255, 255, 0.08);
}

.highlight-sentence {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    padding: 2rem;
    border-radius: 12px;
    border: 1px dashed var(--accent-gold);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* Pricing Section */
.pricing-spotlight {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid var(--primary-red);
    background: rgba(255, 51, 51, 0.05);
}

.crossed-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 500;
}

.main-price {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.pricing-benefits {
    list-style: none;
    margin-top: 2rem;
    text-align: left;
    display: inline-block;
}

.pricing-benefits li {
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Bonus Section */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.bonus-card {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.bonus-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-gold);
    color: #000;
    font-weight: 800;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-card h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    margin-top: 1rem;
}

/* Comparison Section */
.pricing-table-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.pricing-plan {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
}

.highlight-plan {
    border: 2px solid var(--accent-gold);
    transform: scale(1.05);
    background: rgba(255, 215, 0, 0.05);
    position: relative;
    z-index: 10;
}

.highlight-plan:hover {
    transform: scale(1.08);
}

.most-sold-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
}

.pricing-plan h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
}

.installments {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-features {
    list-style-type: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 25px;
}

.plan-features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #4cd137;
    font-weight: bold;
}

.plan-features li.bonus-item::before {
    content: '🎁';
    color: inherit;
}

.item-value {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

.feature-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.plan-summary {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.plan-summary .crossed {
    text-decoration: line-through;
    color: #999;
}

.plan-summary .highlight {
    color: var(--accent-gold);
    font-size: 1.4rem;
    font-weight: bold;
}

/* Guarantee Section */
.guarantee-box {
    text-align: center;
    border: 2px dashed #4cd137;
    background: rgba(76, 209, 55, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-box h2 {
    color: #4cd137;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.guarantee-box p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.guarantee-box .highlight-text {
    font-weight: bold;
    color: var(--accent-gold);
    margin-top: 1rem;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px;
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.site-footer p {
    color: var(--text-muted);
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(145deg, #2a0000, #150000);
    border: 2px solid var(--primary-red);
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    padding: 3rem 2rem;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #fff;
}

.modal-header h2 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.modal-body h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.modal-body p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.modal-offer-box {
    background: rgba(255, 51, 51, 0.1);
    border: 1px dashed var(--accent-gold);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.modal-strikethrough {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 0.5rem !important;
}

.modal-price {
    color: var(--accent-gold) !important;
    font-size: 1.6rem !important;
    font-weight: 900;
    margin-bottom: 0 !important;
}

.modal-warning {
    font-size: 0.9rem !important;
    color: #ffcccc !important;
    border-left: 3px solid var(--primary-red);
    padding-left: 10px;
    text-align: left;
}

.modal-footer {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-decline {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-decline:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        padding: 4rem 0;
        text-align: center;
    }

    .hero-slider-overlay {
        background: linear-gradient(180deg, rgba(20, 0, 0, 0.7) 0%, rgba(42, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.2) 100%);
    }

    .cta-group {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .w-100-mobile {
        width: 100%;
    }

    .trust-indicators {
        justify-content: center;
    }

    .headline {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .highlight-plan {
        transform: scale(1);
    }

    .highlight-plan:hover {
        transform: scale(1);
    }

    .pricing-table-wrapper {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }
}