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

:root {
    --primary-dark: #1a0b2e;
    --secondary-dark: #2d1b4e;
    --accent-gold: #d4af37;
    --accent-light: #f5e6d3;
    --text-light: #ffffff;
    --text-muted: #b8a99a;
    --gradient-1: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 50%, #4a2c5e 100%);
    --gradient-2: linear-gradient(to right, #d4af37, #f5e6d3);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-light);
    background: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

.hero-countdown-top {
    width: 100%;
    background: linear-gradient(135deg, #8b0000, #ff2e2e);
    color: #ffffff;
    text-align: center;
    padding: 22px 15px;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.countdown-label {
    font-size: 20px;
    letter-spacing: 1px;
}

#hero-countdown-timer {
    font-size: 42px;
    background: rgba(0, 0, 0, 0.35);
    padding: 10px 22px;
    border-radius: 12px;
    letter-spacing: 4px;
    font-variant-numeric: tabular-nums;
    animation: pulseCountdown 1.2s infinite;
}

@keyframes pulseCountdown {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--text-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--accent-gold), #f5e6d3);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.social-proof {
    padding: 100px 20px;
    background: var(--secondary-dark);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 60px;
    color: var(--accent-gold);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.proof-item {
    background: var(--primary-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: transform 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.proof-item:nth-child(1) { animation-delay: 0.2s; }
.proof-item:nth-child(2) { animation-delay: 0.4s; }
.proof-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.proof-item:hover {
    transform: translateY(-10px);
}

.proof-image {
    width: 100%;
    height: 305px;
    background: linear-gradient(135deg, #2d1b4e, #4a2c5e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid var(--accent-gold);
}

.full-image-block {
    width: 100%;
    margin: 60px 0;
    display: flex;
    justify-content: center;
}

.full-image-block img {
    width: 50%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.etapas {
    padding: 100px 20px;
    background: var(--gradient-1);
}

.etapas-grid {
    display: grid;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 60px;
}

.etapa-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--accent-gold);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.etapa-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    box-shadow: var(--shadow-gold);
}

.etapa-number {
    font-size: 4rem;
    font-family: 'Cinzel', serif;
    color: var(--accent-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.etapa-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent-light);
}

.etapa-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.parallax {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: 
        linear-gradient(rgba(26, 11, 46, 0.85), rgba(26, 11, 46, 0.85)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%232d1b4e;stop-opacity:1" /><stop offset="100%" style="stop-color:%234a2c5e;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23grad1)" width="1200" height="600"/></svg>');
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.parallax-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 2;
    color: var(--text-light);
    text-align: center;
}

.parallax-text strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.stats {
    padding: 100px 20px;
    background: var(--secondary-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.stat-number {
    font-size: 4rem;
    font-family: 'Cinzel', serif;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bonus {
    padding: 100px 20px;
    background: var(--gradient-1);
}

.bonus-grid {
    display: grid;
    gap: 40px;
    max-width: 900px;
    margin: 60px auto 0;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    border: 2px dashed var(--accent-gold);
    transition: all 0.4s ease;
}

.bonus-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-style: solid;
    box-shadow: var(--shadow-gold);
}

.bonus-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.bonus-title {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.bonus-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.price-strike {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-right: 10px;
}

.price-new {
    color: var(--accent-gold);
    font-size: 1.8rem;
    font-weight: 700;
}

.bonus-feature {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 20px;
}

.offer {
    padding: 100px 20px;
    background: var(--secondary-dark);
}

.offer-card {
    max-width: 800px;
    margin: 60px auto 0;
    background: var(--primary-dark);
    border-radius: 30px;
    padding: 60px;
    box-shadow: var(--shadow-dark);
    border: 3px solid var(--accent-gold);
}

.offer-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.event-details {
    background: rgba(212, 175, 55, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.event-detail-item:last-child {
    border-bottom: none;
}

.event-icon {
    font-size: 1.5rem;
}

.benefits-list {
    margin: 40px 0;
}

.benefit-item {
    padding: 15px 0;
    font-size: 1.1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-item::before {
    content: '✓';
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: bold;
}

.pricing {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

.price-current {
    font-size: 3rem;
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin: 20px 0;
}

.price-installment {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-top: 10px;
}

.cta-button-large {
    display: block;
    width: 100%;
    padding: 25px;
    background: linear-gradient(135deg, var(--accent-gold), #f5e6d3);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 50px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 30px;
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.6);
}

.scarcity {
    text-align: center;
    margin-top: 20px;
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1.1rem;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.guarantee {
    padding: 100px 20px;
    background: var(--gradient-1);
}

.guarantee-card {
    max-width: 700px;
    margin: 60px auto 0;
    text-align: center;
    padding: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 3px solid var(--accent-gold);
}

.guarantee-icon {
    font-size: 5rem;
    margin-bottom: 30px;
}

.guarantee-title {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 30px;
}

.guarantee-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

footer {
    padding: 60px 20px;
    background: var(--primary-dark);
    text-align: center;
    border-top: 2px solid var(--accent-gold);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--accent-gold);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-icon {
    font-size: 28px;
    color: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

.social-icon.instagram {
    color: #E1306C;
}

.social-icon.whatsapp {
    color: #25D366;
}

footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #000;
}

footer p {
    font-size: 14px;
    color: #aaa;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .offer-card {
        padding: 30px 20px;
    }

    .guarantee-card {
        padding: 40px 20px;
    }

    .etapa-item {
        padding: 30px 20px;
    }

    .bonus-item {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
