/* Estilo general del footer */
* {
    text-decoration: none;
    list-style: none;
}
.container1-footer {
    width: 100%;
    padding: 40px 0;
    background: #f5f5f5;
    margin-top: 40px;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
}
.container1-footer a {
    text-decoration: none;
} 
.container1-footer .mi-footer {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Redes sociales */
.container1-footer .mi-footer .redes-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.container1-footer .mi-footer .icon-redes-footer {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: #e0e0e0;
    color: #666;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Efecto hover para los íconos */
.mi-footer .redes-footer .icon-redes-footer:hover {
    transform: scale(1.2);
    color: #fff;
}

/* Colores personalizados para cada red social */
.mi-footer .redes-footer .fa-facebook-f:hover {
    background: #3b5998;
}

.mi-footer .redes-footer .fa-google-plus-g:hover {
    background: #dd4b39;
}

.mi-footer .redes-footer .fa-instagram:hover {
    background: linear-gradient(to top right, #fcaf45, #e50914, #9c27b0, #5e35b1);
}

/* Línea divisoria */
.container1-footer .mi-footer hr {
    margin: 30px auto;
    border: none;
    height: 2px;
    width: 80%;
    background: rgba(192, 192, 192, 0.6);
}

/* Copyright */
.container1-footer .mi-footer h4 {
    margin-top: 20px;
    color: #6d6d6d;
    font-weight: 400;
}

/* Estilo responsivo */
@media (max-width: 768px) {
    .container1-footer .mi-footer {
        padding: 0 20px;
    }

    .container1-footer .mi-footer .redes-footer {
        gap: 15px;
    }

    .container1-footer .mi-footer h4 {
        font-size: 14px;
    }
}
