body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7fa; /* Gris azulado muy elegante y limpio */
}

/* Nav moderna tipo glassmorphism */
.navbar-modern {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Tarjetas con estilo moderno */
.card-modern {
    border: none;
    border-radius: 1.25rem;
    box-shadow: 0 8px 24px rgba(149, 157, 165, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(149, 157, 165, 0.15);
}

.card-header-modern {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    border-top-left-radius: 1.25rem !important;
    border-top-right-radius: 1.25rem !important;
}

/* --- Estilos Página Principal (index.html) --- */

/* Estilos personalizados para el mapa y los marcadores */
.map-container {
    height: 550px;
    width: 100%;
    border-bottom-left-radius: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    z-index: 1;
}

/* Marcadores CSS tipo gota invertida */
.custom-div-icon i {
    position: absolute;
    width: 22px;
    font-size: 16px;
    left: 0;
    right: 0;
    margin: 10px auto;
    text-align: center;
    z-index: 10;
}
.marker-pin {
    width: 36px;
    height: 36px;
    border-radius: 50% 50% 50% 0;
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -18px 0 0 -18px;
    z-index: 5;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Animación para el aviso "EN VIVO" */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}
.pulse-live {
    animation: pulse 1.5s infinite;
}

/* --- Estilos Página Turismo (turismo.html) --- */

/* Hero Section de Turismo */
.turismo-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../salto_tabay_01.jpg');
    background-size: cover;
    background-position: center;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.gallery-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}