/* VARIABLES Y CONFIGURACIÓN BASE */
:root {
    --navy: #0A0F2C;
    --blue-bright: #1E90FF;
    --gold: #FFD700;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #05070a;
}

/* GRADIENTES Y TEXTOS */
.gold-gradient {
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.2));
}

.gold-text {
    color: var(--gold);
}

/* VIDEO CONTAINER STYLES */
.video-container {
    background: #0A0F2C;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-video-main {
    background: white;
    color: black;
    padding: 18px 30px;
    border-radius: 8px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-video-main:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.btn-video-secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 18px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-video-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* BENEFIT CARDS */
.benefit-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.benefit-card:hover {
    border-color: var(--blue-bright);
    background: rgba(30, 144, 255, 0.05);
}

.check-icon {
    color: #22c55e;
    font-weight: 900;
    font-size: 20px;
}

/* ANIMACIONES */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30, 144, 255, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(30, 144, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30, 144, 255, 0); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
    .video-overlay {
        padding: 20px;
        text-align: center;
    }
}
