
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f4f4f4;
    padding: 30px;
    font-family: Inter, Arial, sans-serif;
}

.footer {
    background: #0b1220;
    color: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* CONTENEDOR PRINCIPAL!NO SE TOCA¡*/

.footer-contenedor {
    display: grid;
    grid-template-columns: 32% 28% 40%;
    align-items: center;
}

/* BLOQUE DEL LOGOTIPO */
.footer-logo-contenedor {
    padding: 60px;
    position: relative;
    top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-contacto {
    margin-top: -25px;
}

.footer-logo {
    width:250PX;
    margin-bottom:40px;
}

.footer-logo-contenedor h3 {
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.5;
}

.footer-logo-contenedor p {
    font-size: 16px;
}

/* LÍNEA AZUL */

.linea-footer {
    width: 80px;
    height: 3px;
    background: #1b6cff;
    border-radius: 50px;
    margin: 25px 0;
}

/* CONTACTO */

.footer-contacto {
    padding: 60px 30px;
    margin-top:-20px;
}

.footer-contacto h2 {
    margin-bottom: 35px;
}

.bloque-contacto {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2b3446;
}

.bloque-contacto p {
    margin: 0;
    padding: 4px 0;
}
/* MAPA */
.footer-mapa {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 420px;
}

#mapa {
    width: 100%;
    height: 100%;
}


/* Footer inferior */
.footer-inferior {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:45px;
     grid-column: 1 / 4;
    padding: 25px;
    background: #08101c;
}

.footer-inferior a,
.footer-inferior p {
    color: white;
    text-decoration: none;
}

.footer-inferior a:hover {
    color: #1b6cff;
}

/* links */

.footer a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #1b6cff;
}

.footer-contacto a {
    display: inline-block;
    padding: 2px 0;
}




/*CORTE DE MAPA*/

.corte-mapa {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 85px;
    height: calc(100% + 4px);
    background: #0b1220;
    z-index: 999;

    clip-path: polygon(
        0 0,
        100% 0,
        60% 50%,
        100% 100%,
        0 100%
    );
}
.corte-mapa::after {
    content: "";
    position: absolute;
    top: 0;
    right: -2px;
    width: 2px;
    height: 100%;
    background: #1b6cff;
    box-shadow: 0 0 8px #1b6cff;
}

#ruta:hover {
    background: #0d4fd6;
}

/*ruta ára llegar*/

#ruta {
    position: absolute;
    top: 20px;
    right: 20px;

    z-index: 1000;

    padding: 10px 15px;
    border: none;
    border-radius: 8px;

    background: #1b6cff;
    color: white;

    font-size: 14px;
    cursor: pointer;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}