/* ------------ */
/* -- FOOTER -- */
/* ------------ */
/* Estilos del Footer */
#footer {
    width: 100%;
    padding: 20px 10px;
    background-color: rgba(56, 56, 56, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Información de Contacto o Descripción */
#info_footer {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

#h2_footer {
    color: #fff;
    font-size: 1.4rem;
    margin: 0;
}

/* Contenedor de Elementos en el Footer (por ejemplo, iconos sociales) */
#cont_elems {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Estilos de los Iconos SVG en el Footer */
.svg_ratio {
    width: 2.1rem;
    height: 2.1rem;
    fill: #fff;
    border-radius: 5px;
    border: 2px solid #34373a50;
    transition: all 0.4s ease-out;
}
.svg_ratio:hover {
    border: 1px solid #fbffd775;
    background-color: #ffffff28;
    box-shadow: 0px 0px 5px 1px #ffffff;
}
.svg_ratio:active {
    border: 1px solid #00000068;
    box-shadow: 0px 0px 10px 1px #8dccc175;
}

/* Copyright */
#copyr {
    width: 100%;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Responsividad del Footer */
@media only screen and (max-width: 600px) {
    #cont_elems {
        width: 80%;
    }
    #h2_footer {
        font-size: 1.2rem;
    }
}
