/* public.css - Versión Unificada Elite */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

:root {
    --rm-blue: #00529f;
    --rm-gold: #f1c40f;
    --status-live: #28a745;
    --status-final: #6c757d;
    --status-cancel: #dc3545;
    --status-wait: #00529f;
}

body { 
    font-family: 'Montserrat', sans-serif; 
    overflow-x: hidden; 
    background-color: #000;
}

#video-bg {
    position: fixed; top: 50%; left: 50%; min-width: 100%; min-height: 100%;
    z-index: -1; transform: translate(-50%, -50%); filter: brightness(0.3); object-fit: cover;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(15px);
    border-bottom: 4px solid var(--rm-blue);
    padding: 0.8rem 0;
}

.navbar-brand { font-weight: 900; font-size: 1.4rem; color: #fff !important; }

/* Selector Dinámico en Nav */
#nav-selector-container { min-width: 220px; transition: all 0.5s ease; }
#nav-selector-container select {
    border-radius: 8px;
    padding-left: 10px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 82, 159, 0.5);
    font-size: 0.85rem;
}

.nav-link {
    font-weight: 700; color: rgba(255,255,255,0.6) !important;
    position: relative; transition: 0.3s;
}
.nav-link.active { color: #fff !important; }
.nav-link.active::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 100%;
    height: 3px; background: #fff; border-radius: 2px;
}

/* Hero Selector */
.hero-selector {
    min-height: 75vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
}

/* Tarjetas Match Day */
.card {
    border-radius: 20px !important; border: none !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3) !important;
    transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-8px); }

/* Estados de Partido */
.status-iniciado { background-color: var(--status-live); color: white; }
.status-finalizado { background-color: var(--status-final); color: white; }
.status-programado { background-color: var(--status-wait); color: white; }
.status-cancelado, .status-pospuesto { background-color: var(--status-cancel); color: white; }

/* Modal Mejorado */
.modal-content {
    border-radius: 25px;
    overflow: hidden;
}
.modal-header {
    border-bottom: 3px solid var(--rm-blue);
}
.event-item {
    transition: background 0.2s;
    border-radius: 10px;
    margin-bottom: 5px;
}
.event-item:hover { background: #f8f9fa; }

/* WhatsApp */
.btn-whatsapp {
    position: fixed; bottom: 30px; right: 30px; background: #25d366;
    color: #fff; width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999; text-decoration: none;
}
/* Animación de pulso para partidos en vivo */
.status-iniciado {
    animation: pulse-live 2s infinite;
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
}

@keyframes pulse-live {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}
.footer-contact-link {
    color: rgba(255, 255, 255, 0.5); /* Color suave igual al footer */
    text-decoration: none;           /* Quita el subrayado */
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-contact-link:hover {
    color: #0d6efd;                 /* Se pone azul (color primary de Bootstrap) al pasar el mouse */
    border-bottom: 1px solid #0d6efd;
    text-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
}


