.localesSection {
    width: 100%;
    background-color: #565151;
    color: white;
    padding: 3rem 2rem;
}

.tituloSectionPrincipal {
    text-align: center;
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.contenedorColumnas {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.columna {
    flex: 1;
    min-width: 180px;
    /* Evita que se amontonen */
    display: flex;
    flex-direction: column;
}

/* Títulos de cada columna */
.tituloCol {
    text-transform: uppercase;
    color: #bca177;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

/* Listas */
.listaCol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.listaCol li {
    margin-bottom: 0.8rem;
    text-transform: capitalize;
}

.listaCol a {
    text-decoration: none;
    color: #ddd;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.listaCol a:hover {
    color: #bca177;
}

/* Redes Sociales */
.redesContainer {
    display: flex;
    gap: 15px;
}

.redesContainer img {
    width: 30px;
    /* Tamaño mucho más visible */
    filter: invert(1);
    transition: transform 0.3s;
}

.redesContainer img:hover {
    transform: scale(1.2);
}

/* Ubicación y Mapa */
.direccionTexto {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.mapaContainer iframe {
    width: 100%;
    height: 150px;
    border-radius: 8px;
}

/* Logo */
.logoFooter img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .contenedorColumnas {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .columna {
        width: 100%;
        margin-bottom: 2rem;
    }

    .redesContainer {
        justify-content: center;
    }

    .mapaContainer iframe {
        height: 200px;
    }
}