.footer {
    background-color: #84B044;
    text-align: center;
    padding: 60px;
    color: white;
    
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    width: 150px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 18px;
}

.social-icons {
    margin: 10px 0;
}

.icon img {
    width: 30px;
    margin: 0 10px;
}

.footer-bottom {
    background-color: #6D8D3C;
    padding: 10px;
    font-size: 12px;
}

/* Responsivo */
@media (max-width: 600px) {
    .logo {
        width: 120px;
    }

    .tagline {
        font-size: 12px;
    }

    .icon img {
        width: 25px;
    }
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons li {
    display: inline-block;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;  /* Tamaño del círculo */
    height: 40px; /* Tamaño del círculo */
    border-radius: 50%; /* Hace que el fondo sea circular */
    background-color: #3b5998; /* Color de fondo (Facebook por defecto) */
    color: white; /* Color del icono */
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
}

/* Colores específicos por red social */
.social-icons a:nth-child(1) { background-color: #3b5998; } /* Facebook */
.social-icons a:nth-child(2) { background-color: #1da1f2; } /* Twitter */
.social-icons a:nth-child(3) { background-color: #e4405f; } /* Instagram */
.social-icons a:nth-child(4) { background-color: #bd081c; } /* Pinterest */
.social-icons a:nth-child(5) { background-color: #ff0000; } /* YouTube */

.social-icons a:hover {
    opacity: 0.8;
}
