/* ----------------------------
   MAPA: estilo general y responsivo
---------------------------- */
#mapa3 {
    width: 90%;
    height: 90vh;
    max-height: 1600px;
    border: 6px solid red;
}

@media screen and (max-width: 768px) {
    #mapa3 {
        height: 75vh;
    }
}

/* ----------------------------
   MODO PANTALLA COMPLETA
---------------------------- */
.fullscreen-activo {
    height: 100vh !important;
    max-height: none !important;
    border: none;
}

/* ----------------------------
   BOTONES DE FILTRADO (superiores)
---------------------------- */
.map-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 60px 0 40px;
}

.map-buttons button {
    padding: 16px 48px;
    font-size: 18px;
    border-radius: 12px;
    border: 2px dashed #e76f51;
    background: #fffaf0;
    color: #d62828;
    transition: all 0.3s ease;
}

.map-buttons button:hover {
    background: #f8bbad;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: #9a1b1b;
}

/* ----------------------------
   BOTÓN DE RESTABLECER SELECTORES
---------------------------- */
#restablecer-container .boton-estilo {
    padding: 16px 48px;
    font-size: 18px;
    border-radius: 12px;
    border: 2px dashed #e76f51;
    background: #fffaf0;
    color: #d62828;
    transition: all 0.3s ease;
}

#restablecer-container .boton-estilo:hover {
    background: #f8bbad;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: #9a1b1b;
}

/* Adaptación móvil para botón de restablecer */
@media screen and (max-width: 768px) {
    #restablecer-container .boton-estilo {
        padding: 12px 24px;
        font-size: 16px;
        border-radius: 10px;
        background: #f8bbad;
    }
}
