body { 
    font-family: 'Inter', sans-serif; 
}
.font-serif { 
    font-family: 'Playfair Display', serif; 
}

/* Colores */
.bg-navy { background-color: #003366; }
.text-navy { color: #003366; }
.text-gold { color: #C5A059; }
.bg-gold { background-color: #C5A059; }
.border-gold { border-color: #C5A059; }

/* Botones */
.btn-gold-outline { 
    border: 2px solid #C5A059;
    color: #C5A059;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
}
.btn-gold-outline:hover {
    background-color: #C5A059;
    color: #003366;
}
.btn-navy-solid {
    background-color: #003366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

/* Video container */
.video-container {
    width: 100%;
    height: 400px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    overflow: hidden;
}
.video-container video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Efecto pulsar */
.pulse-gold {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .7; }
}

/* ==========================================
   Nav enlaces de texto limpio (Sin recuadros)
   ========================================== */
nav .nav-btn {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #105499;
    padding: 0.5rem 0.75rem;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

/* Efecto hover elegante para los enlaces de texto */
nav .nav-btn:hover {
    color: #002244;
    background-color: transparent;
    transform: none;
    box-shadow: none;
    text-decoration: underline;
    text-underline-offset: 6px;
}

/* Efecto para el enlace de la página actual (.active) */
nav .nav-btn.active {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #105499;
    font-weight: bold;
    position: relative;
}

nav .nav-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background-color: #105499;
    border-radius: 2px;
}

/* Botón Ver en Vivo (Forzando texto blanco permanente) */
nav .nav-btn-live {
    background-color: #dc2626 !important;
    border: 1px solid #dc2626 !important;
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}
nav .nav-btn-live:hover {
    background-color: #b91c1c !important;
    border-color: #b91c1c !important;
    color: #ffffff !important;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.2);
}

/* Botón Intranet (Forzando texto blanco permanente) */
nav .nav-btn-intranet {
    background-color: #105499 !important;
    border: 1px solid #003366 !important;
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}
nav .nav-btn-intranet:hover {
    background-color: #002244 !important;
    border-color: #002244 !important;
    color: #ffffff !important;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 51, 102, 0.2);
}
/* Efecto de barra translúcida al hacer scroll */
nav.sticky {
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 51, 102, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
html, body {
    scroll-behavior: smooth !important;
}

#noticias {
    scroll-margin-top: 100px; /* Evita que la barra de navegación fija tape el título */
}
/* ==========================================
   Ajustes exclusivos para la sección Contáctanos
   ========================================== */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

.contact-title {
    font-family: serif;
    font-size: 2.25rem;
    color: #003366;
    margin-bottom: 2rem;
    text-align: center;
}

.section-subtitle {
    font-family: serif;
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info .schedule-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #003366;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Contenedor y tamaño del mapa GPS */
.map-container {
    margin-top: 1.5rem;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid #C5A059;
    text-align: center;
    width: 100%;
}

.map-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 0.5rem;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 0.375rem;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Tarjeta y campos del formulario de contacto */
.contact-form-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #C5A059;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    outline: none;
    font-size: 1rem;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: #C5A059;
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.2);
}

.form-button {
    width: 100%;
    background-color: #003366;
    color: #C5A059;
    font-weight: bold;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.form-button:hover {
    background-color: #00A3E0;
    color: #ffffff;
}
@media (min-width: 768px) {
    .contact-desktop-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem !important;
        align-items: start !important;
    }
}