/* VSL Page Specific Styles - Original Optimized */

/* Reset and Base Styles for VSL */
.vsl-page {
    background: linear-gradient(135deg, #1a0033 0%, #2a004d 50%, #3d0066 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow-x: hidden;
    margin: 0;
}

/* Background Effects */
.vsl-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Main Container */
.vsl-container {
    max-width: 900px;
    width: 100%;
    background: rgba(42, 0, 77, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

/* Header Section */
.vsl-header {
    margin-bottom: 40px;
}

.urgency-badge {
    background: linear-gradient(45deg, #8a2be2, #6a0dad, #4b0082);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 700;
    margin-bottom: 30px;
    display: inline-block;
    box-shadow: 
        0 8px 20px rgba(138, 43, 226, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.vsl-header h1 {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #ffd700, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.vsl-header h2 {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Video Section */
.vsl-video-section {
    margin: 40px 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Section */
.vsl-cta-section {
    margin: 40px 0;
}

.vsl-cta-section .btn-primary {
    background: linear-gradient(45deg, #8a2be2, #6a0dad, #4b0082);
    border: none;
    padding: 20px 50px;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 25px rgba(138, 43, 226, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.vsl-cta-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.vsl-cta-section .btn-primary:hover::before {
    left: 100%;
}

.vsl-cta-section .btn-primary:hover {
    background: linear-gradient(45deg, #6a0dad, #8a2be2, #9932cc);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(138, 43, 226, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.vsl-cta-section .btn-primary:active {
    transform: translateY(-1px);
}

/* Contact Section */
.contact-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section h3 {
    font-size: clamp(1.3rem, 4vw, 2rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: linear-gradient(45deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

.btn-instagram {
    background: linear-gradient(45deg, #e4405f, #833ab4, #fd1d1d);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #fd1d1d, #e4405f, #833ab4);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(228, 64, 95, 0.4);
}

/* Footer */
.vsl-footer {
    background: rgba(26, 0, 51, 0.8);
    padding: 30px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vsl-container {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-whatsapp,
    .btn-instagram {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .vsl-cta-section .btn-primary {
        width: 100%;
        max-width: 350px;
        padding: 18px 30px;
    }
}

@media (max-width: 480px) {
    .vsl-page {
        padding: 10px;
    }
    
    .vsl-container {
        padding: 20px 15px;
    }
    
    .urgency-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Performance optimizations */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Optimize font loading */
@font-face {
    font-family: 'Inter';
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-display: swap;
}

