/* CSS GENERALES DEL FOOTER: BACKGROUND Y TIPOGRAFÍA */
footer {
    font-family: var(--font-f-letrabase);
    font-size: var(--font-s-datosfooter);
    font-weight: var(--font-w-light);
    line-height: 1.6em;
    color: rgb(130, 130, 130);
    background-color: #131313;
}

/* BLANCO SIN SUBRAYADO PARA LA TIPOGRAFÍA CON ENLACE */
footer a {
    color: var(--col-font-background);
    text-decoration: none;
}

/* Asegura que el contenido abarque toda la altura de la ventana */
.padding {
    min-height: 80vh;
}

/* SEPARACIÓN DE LOS DIV DE REDES Y DATOS DE COPYRIGHT A LOS EXTREMOS DEL FOOTER */
.pie-de-pag {
    position: relative;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box; /* Incluye el padding en el tamaño total del footer */
    padding: 2.25rem 11rem;
}

/* ALINEACIÓN A LA DERECHA DE LAS REDES SOCIALES */
.redes {
    text-align: right;
}

/* LO COMPONEMOS COMO UNA GRID Y EN EL MOVIL POR DOS COLUMNAS */
.iconos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: baseline;
}

/* ESCALA Y SEPARACIÓN DE LOS ICONOS DE REDES */
.bx {
    font-size: 2rem;
    margin-top: 7px;
    margin-left: 10px;
}