/* Estilos para la Página "Ubicaciones" */

/* Encabezado Específico de la Página */
.masthead-ubicaciones {
    height: 500px;
    background-image: url('../img/background/masthead-bg.jpg'); /* Puedes usar la misma imagen o una nueva */
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.masthead-ubicaciones h1 {
    font-size: 3rem;
}

.masthead-ubicaciones .lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* Sección de Ubicaciones */
.locations-section {
    padding: 100px 15px;
    background-color: var(--light-gray-bg);
}

.location-card {
    background-color: var(--light-gray-bg-alt);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none; /* Sombra eliminada */
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.map-container {
    height: 300px;
}

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

.location-details {
    padding: 30px;
}

.location-details h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.location-details hr {
    width: 100%; /* Ancho al 100% */
    height: 1px; /* Altura de 1px para una línea fina */
    background-color: var(--dark-bg); /* Color oscuro */
    border: none;
    opacity: 0.25; /* Opacidad para suavizarla */
    margin: 15px 0;
}

.location-details p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.location-details p i {
    color: var(--primary-color);
    margin-right: 10px;
}

.location-details a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-details a:hover {
    color: var(--primary-color);
}
@media (max-width: 991.98px) {
    .masthead-ubicaciones {
        padding-top: 100px;
    }
    .masthead-ubicaciones h1 {
        font-size: 2.25rem;
    }
}