.footer{
    width: 100%;
    height: 70%;
    background-color: #1A2237;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7.5vh;
}

.inicial{
    margin-top: 20vh;
    display: flex;
    flex-direction: row;

    
}

.inicial .div1,
.inicial .div2,
.inicial .div3{
    margin-left: 10vw;
    justify-self: center;
    width: 30%;
    }

.inicial .div1{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.inicial .div1 .logo_footer{
    width: 50%;
    margin-bottom: 2vh;
}

.inicial .div1 .iconos {
    display: flex;
    flex-direction: row;
    gap: 2vw;
}
.inicial .div1 a {
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.inicial .div1 .icono {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12.5%;
    background-color: #54e6f5;
    border-radius: 50%;
}
.inicial .div1 .iconos img{
    width: 90%;
    
}
.inicial .div2{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.inicial .div3{
    display: flex;
    flex-direction: column;
}
.inicial .div3 p{
    margin-top: 40px;
    margin-bottom: 20px;
}
.inicial .div3 a{
    text-decoration: none;
    color: white;
    margin-bottom: 1vh;
}
.inicial p{
    font-size: 16px;
}
.inicial span{
    font-size: 16px;
    color: #bcbcbc;
}


.final{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 1% 3% 0% 3%;
    align-items: center;
}
.final span{
    font-size: 16px;
    color: #bcbcbc;
}
.final a{
    text-decoration: none;
    color: white;
}

/* ---------------------- */
/*     RESPONSIVE FOOTER  */
/* ---------------------- */

@media (max-width: 1000px) {

    /* Footer ocupa auto altura en móvil */
    .footer {
        height: auto;
        padding: 10vh 5vw;
        gap: 6vh;
        text-align: center;
    }

    /* Sección inicial pasa a columna */
    .inicial {
        flex-direction: column;
        gap: 8vh;
        margin-top: 5vh;
        align-items: center;
    }

    /* Todas las divisiones ocupan ancho completo */
    .inicial .div1,
    .inicial .div2,
    .inicial .div3 {
        width: 100%;
        margin-left: 0;
        align-items: center;
        text-align: center;
    }

    /* LOGO centrado */
    .inicial .div1 .logo_footer {
        width: 55%;
        margin: 0 auto 2vh auto;
    }

    /* Íconos centrados */
    .inicial .div1 .iconos {
        justify-content: center;
        gap: 5vw;
    }

    .inicial .div1 .icono {
        width: 40px;
        height: 40px;
    }

    /* DIV2 centrado */
    .inicial .div2 {
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    /* DIV3 organización */
    .inicial .div3 {
        align-items: center;
        text-align: center;
    }

    .inicial .div3 p {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .inicial .div3 a {
        margin-bottom: 10px;
        font-size: 15px;
    }

    /* Texto general */
    .inicial p,
    .inicial span {
        font-size: 15px;
    }

    /* Línea final del footer */
    .final {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin: 5vh 0 0 0;
    }

    .final span {
        font-size: 14px;
    }

    .final a {
        font-size: 14px;
    }
}

