/* CSS Variables & Reset */
:root {
    --bg-color: #080808;
    --text-color: #e0e0e0;
    --accent-color: #00FF99;
    --accent-glow: rgba(0, 255, 153, 0.4);
    --secondary-text: #a0a0a0;
    --font-main: 'Inter', sans-serif;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Noise Texture Background */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

/* Typography & Hero */
.headline {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05rem;
    color: #ffffff;
}

.headline .highlight,
.subheadline .highlight {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(0, 255, 153, 0.2);
}

.subheadline {
    font-size: 1.125rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.subheadline .highlight-text {
    color: #fff;
    font-weight: 600;
}

/* Visual Section */
.visual-section {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    max-width: 100%;
    width: 700px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(0, 255, 153, 0.15));
    animation: float 6s ease-in-out infinite;
}

.product-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.4;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Benefits List */
.benefits-list {
    list-style: none;
    text-align: left;
    margin-bottom: 3.5rem;
    width: 100%;
    max-width: 600px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.icon-box {
    margin-right: 1rem;
    color: var(--accent-color);
    font-size: 1.4rem;
    min-width: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-shadow: 0 0 10px var(--accent-glow);
}

.benefit-text {
    font-size: 1rem;
    color: #d1d1d1;
}

.benefit-text strong {
    color: #fff;
    display: block;
    margin-bottom: 0.2rem;
}

/* Form & CTA */
.capture-section {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    margin-bottom: 1rem;
    position: relative;
}

.email-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(0, 255, 153, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.cta-button {
    position: relative;
    width: 100%;
    padding: 1.2rem;
    background-color: var(--accent-color);
    color: #000;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 255, 153, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 153, 0.5);
    background-color: #33ffad;
}

.cta-button:active {
    transform: translateY(1px);
}

/* Button Glow Effect */
.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    animation: shine 4s infinite;
    pointer-events: none;
}

@keyframes shine {
    0% {
        transform: translateX(-150%) rotate(45deg);
    }

    30%,
    100% {
        transform: translateX(150%) rotate(45deg);
    }
}

.spam-disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
.site-footer {
    position: relative;
    z-index: 1;
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    margin-top: auto;
}

.site-footer a {
    color: #777;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer a:hover {
    color: var(--accent-color);
}



/* Bonus Highlight */
.bonus-highlight {
    border: 1px solid var(--accent-color);
    background: rgba(0, 255, 153, 0.05);
    /* Subtle green tint */
    box-shadow: 0 0 20px rgba(0, 255, 153, 0.15);
    /* Green glow */
    position: relative;
    overflow: hidden;
    animation: pulse-border 3s infinite;
}

.bonus-highlight::before {
    content: 'OFERTA ESPECIAL';
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.65rem;
    background: var(--accent-color);
    color: #000;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 2;
}

@keyframes pulse-border {
    0% {
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 5px rgba(0, 255, 153, 0.0);
    }

    50% {
        border-color: var(--accent-color);
        box-shadow: 0 0 20px rgba(0, 255, 153, 0.2);
    }

    100% {
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 5px rgba(0, 255, 153, 0.0);
    }
}

/* Responsive - Mobile Optimized */
@media (max-width: 768px) {
    .headline {
        font-size: 2rem;
    }

    .product-image {
        width: 450px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .subheadline {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .container {
        padding: 3rem 1.25rem;
    }

    .visual-section {
        margin-bottom: 2.5rem;
    }

    .product-image {
        width: 100%;
        max-width: 500px;
    }

    .product-glow {
        width: 220px;
        height: 220px;
    }

    .benefits-list {
        margin-bottom: 2.5rem;
    }

    .benefit-item {
        padding: 1.25rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon-box {
        margin-right: 0;
        margin-bottom: 0.8rem;
        font-size: 1.8rem;
    }

    /* Bonus Item adjustments for mobile */
    .bonus-highlight {
        padding-top: 2.5rem;
        /* Space for the badge */
        position: relative;
    }

    .bonus-highlight::before {
        top: 0;
        right: 0;
        width: 100%;
        text-align: center;
        border-radius: 0;
        padding: 4px 0;
        font-size: 0.75rem;
    }

    .capture-form {
        padding: 0 0.5rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 1.1rem;
    }
}