*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    height:100vh;
    overflow:hidden;
    background:#f5f5f5;
}

header{
    background:#193577;
    height:8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding: 0 20px;

    position: relative;
    z-index:9999;
}

.logo{
    width:60px;
    height:60px;
    border-radius:10px;
    object-fit:contain;

}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-size:18px;
}

.contenedor{
    display:flex;
    height:100vh;
}


.panel{
    width:500px;
    background:#f7f7f7;
    overflow-y:auto;
    padding:15px;
}

@media (max-width: 800px) {
    .panel{
        width:0px;
        background:#f7f7f7;
        overflow-y:auto;
        padding:0px;
        transform: translateX(-100%);
        transition: width 0.3s;
    }
    .panel.activo{
        width:400%;
        background:#f7f7f7;
        overflow-y:auto;
        padding:15px;
        transform: translateX(0%);
        transition: width 0.3s;
    }
    #mas_informacion{
        position: fixed;
        bottom: 20px;
        left: 20px;

        width: 60px;
        height: 60px;

        display: flex;
        align-items: center;
        justify-content: center;

        z-index: 9999;
    }
    #boton{
        width: 60px;
        height: 60px;

        border-radius: 50%;
        border: none;

        background: #193577;
        color: white;
        font-size: 30px;
        font-weight: bold;

        cursor: pointer;

        box-shadow: 0 8px 20px rgba(0,0,0,0.25);

        transition: transform 0.2s ease, background 0.2s ease;
        
    }
}

.titulo{
    color:#183d6b;
    font-size:32px;
    margin-bottom:10px;
}

.subtitulo{
    color:#6b7280;
    margin-bottom:20px;
}

.tarjeta{
    background:#fafafa;
    border:1px solid #e5e7eb;
    border-radius:30px;
    padding:30px;
    margin-bottom:20px;
}

.tarjeta h3{
    color:#183d6b;
    font-size:18px;
    margin-bottom:15px;
}

.direccion{
    color:#64748b;
    font-size:15px;
    line-height:1.5;
    margin-bottom:20px;
}

.estado{
    display:inline-block;
    background:#dff3e5;
    color:#16a34a;
    padding:10px 18px;
    border-radius:999px;
    font-weight:bold;
    margin-bottom:15px;
}

.tipo{
    display:inline-block;
    background:#dbeafe;
    color:#2563eb;
    padding:10px 18px;
    border-radius:999px;
    font-weight:bold;
}

.detalles{
    color:#64748b;
    margin-left:10px;
}

.descripcion{
    color:#64748b;
    margin-top:20px;
    line-height:1.6;
}

.boton{
    margin-top:20px;
    background:#d9ebf5;
    color:#183d6b;
    border:none;
    padding:12px 25px;
    border-radius:999px;
    font-weight:bold;
    cursor:pointer;
}
.contenedor_mapa{
    width: 100%;
    height: 92%;
}
#map{
    flex:1;
    height: 100%;
}
