/*ESTILO PIE DE PAGINA*/
footer {
    text-align: center;
    padding: 10px 0;
    background: linear-gradient(to right, #068d77b9, #00b3a6, #006a4d);    
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}
/*MEDIA QUERIES PARA MOVILES*/
@media (max-width: 768px) {
    footer {
        font-size: 0.9rem;
        padding: 10px; 
        text-align: center;
    }
}