/* =========================================================================
   PALETA PRINCIPAL: Elegancia, Autoridad y Tecnología (Negro y Dorado)
   ========================================================================= */

   body {
    background-color: #000000;
    color: #f8fafc;
}

/* --- 🔥 Animaciones del Botón (El Santo Grial de la Conversión) --- */
.btn-dynamic {
    background: linear-gradient(135deg, #FFDF00 0%, #D4AF37 100%);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
    color: #000000 !important; /* Contraste letal: texto negro sobre dorado */
}
.btn-dynamic:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* --- ⌨️ Efecto Máquina de Escribir (Tecnología en movimiento) --- */
.dynamic-text-wrapper {
    display: inline-block;
    min-width: 320px; /* Ajustado para las nuevas frases de IA/Marketing */
    text-align: left;
    white-space: nowrap; 
}

.typewriter-cursor {
    display: inline-block;
    color: #FFDF00;
    font-weight: 900;
    margin-left: 4px;
    animation: blinkCursor 0.8s infinite normal;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* --- 🔔 Notificaciones Flotantes Inferior Derecha (FOMO en estado puro) --- */
#liveNotifications {
    position: fixed;
    bottom: 24px;
    right: 24px;
    left: auto;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.notification {
    background: #111111; /* Cambiado a oscuro para mantener la elegancia premium */
    border-left: 5px solid #D4AF37;
    padding: 14px 20px;
    border-radius: 10px;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(212,175,55,0.1);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    transform: translateX(120%);
    animation: slideInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    pointer-events: auto;
    color: white;
}

.notification.fade-out {
    animation: slideOutRight 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInRight {
    to { transform: translateX(0); }
}
@keyframes slideOutRight {
    to { transform: translateX(120%); opacity: 0; }
}

/* --- 🎥 Contenedor de Video --- */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 - Proporción perfecta */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212,175,55,0.2);
}

/* --- ✨ Textos Dorados Degradados --- */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #FFDF00, #D4AF37);
}