/* Reset */
body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Contenedor principal */
.container-footer {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('../img/fondofooter.jpg') no-repeat center center/cover;
    display: flex;

    align-items: center;
    justify-content: center;
    padding-right: 20px;
}


/* Contenido principal */
.content-footer {
    position: relative;
    text-align: center;
    color: white;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo y texto */
.logo-footer img {
    width: 200px;
}

.slogan-footer {
    font-style: italic;
}

.title-footer {
    font-size: 2em;
    font-weight: bold;
}

.description-footer {
    max-width: 600px;
    margin: 10px auto;
}

/* Redes sociales en fila */
.social-footer {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.icon-footer {
    width: 30px;
    height: 30px;
}

/* Contenedor de los links alineados en fila */
.links-footer {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 40px;
    z-index: 1;
    color: white;
    /* width: 80%;*/
    padding-left: 20px;
}

/* Columnas */
.column-footer {
    text-align: left;
}

.column-footer ul {
    list-style: none;
    padding: 0;
}

.column-footer li {
    margin-bottom: 5px;
}

@media (max-width: 1265px) {

 .container-footer{

    flex-direction: column;
 }


}

@media (max-width: 560px) {

    .links-footer{
        display: none;
    }
    .container-footer{

        padding-top: 30px;
        padding-bottom: 30px;
        
    }

    .container-footer{
        height: auto;
    }

    
   
   }