/* CONTENEDOR GENERAL */
#contenedor {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

/* MAPA */
#map {
    width: 70%;
    height: 520px;
    border-radius: 12px;
    overflow: hidden;
}

/* LISTADO */
#lista {
    width: 30%;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 5px;
}

/* TARJETA */
.item {
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.2s ease;
    border: 1px solid #eee;
}

.item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* NOMBRE */
.item b {
    font-size: 15px;
    color: #1d3557;
    display: block;
    margin-bottom: 5px;
}

/* DIRECCIÓN */
.item p {
    font-size: 13px;
    color: #666;
    margin: 0 0 10px;
}

/* BOTONES */
.btn-group {
    display: flex;
    gap: 8px;
}

.btn {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: #fff !important;
    transition: 0.2s;
}

/* BOTÓN MAPA */
.btn-mapa {
    background: #1d3557;
}

.btn-mapa:hover {
    background: #14213d;
}

/* BOTÓN CONTACTO */
.btn-contacto {
    background: #2a9d8f;
}

.btn-contacto:hover {
    background: #21867a;
}

/* SELECT */
#estado {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    font-size: 14px;
}

/* SCROLL BONITO */
#lista::-webkit-scrollbar {
    width: 6px;
}

#lista::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* 📱 RESPONSIVE MÓVIL */
@media (max-width: 768px) {

    #contenedor {
        flex-direction: column;
    }

    #map {
        width: 100%;
        height: 300px;
        order: 1;
    }

    #lista {
        width: 100%;
        max-height: none;
        order: 2;
    }
