.elementor-2001 .elementor-element.elementor-element-01453cc{--display:flex;}/* Start custom CSS for html, class: .elementor-element-12e7946 */:root {
    --primary-color: #FF0000;
    --secondary-color: #FFD700;
    --background-color: #000000;
    --text-color: #FFFFFF;
    --gradient: linear-gradient(45deg, #FF0000, #CC0000);
    --highlight-color: #FFD700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.countdown-bar {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    animation: blink 1s infinite;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

header {
    padding: 1rem 5%;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 40px;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(255, 0, 0, 0.3);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('https://images.unsplash.com/photo-1520523839897-bd0b52f945a0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    padding-top: 120px;
}

.urgent-tag {
    background: var(--highlight-color);
    color: black;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: shake 1s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 900;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.highlight {
    color: var(--highlight-color);
    font-weight: 900;
}

.price-container {
    margin: 2rem 0;
    font-size: 1.5rem;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price {
    font-size: 2.5rem;
    color: var(--highlight-color);
    font-weight: 900;
    margin: 1rem 0;
}

.installments {
    font-size: 1.2rem;
    opacity: 0.9;
}

.spots-left {
    color: var(--highlight-color);
    font-weight: 700;
    margin-top: 1rem;
    animation: pulse 2s infinite;
}

.btn {
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.btn-primary {
    background: var(--gradient);
    color: var(--text-color);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

.mega-pulse {
    animation: pulse 1s infinite;
}

.social-proof {
    padding: 5rem 10%;
    background: #111;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.stars {
    color: var(--highlight-color);
    margin-top: 1rem;
}

.bonus-section {
    padding: 5rem 10%;
    background: #000;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-item {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.bonus-tag {
    background: var(--primary-color);
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.bonus-value {
    color: var(--highlight-color);
    font-weight: 700;
    margin: 1rem 0;
}

.guarantee {
    padding: 5rem 10%;
    background: #111;
    text-align: center;
}

.guarantee img {
    width: 150px;
    margin-bottom: 2rem;
}

.final-cta {
    padding: 5rem 10%;
    background: #000;
    text-align: center;
}

.total-value {
    margin: 2rem 0;
}

.value-line {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.value-line.highlight {
    font-size: 2rem;
    color: var(--highlight-color);
}

.secure-badges {
    margin-top: 2rem;
    opacity: 0.8;
}

.secure-badges img {
    height: 40px;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}/* End custom CSS */