.footer {
    background-color: #315428;
    color: white;
    padding: 20px 10px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #a4d07b; /* Light green hover color */
}

.footer-whatsapp {
    margin-bottom: 15px;
}

.footer-whatsapp a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-whatsapp img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.footer-whatsapp a:hover img {
    transform: scale(1.2); /* Slight enlargement on hover */
}

.footer-social {
    margin-bottom: 15px;
}

.footer-social a {
    margin: 0 10px;
    display: inline-block;
}

.footer-social img {
    width: 34px;
    height: 34px;
    transition: transform 0.3s ease;
}

.footer-social img:hover {
    transform: scale(1.2); /* Slight enlargement on hover */
}

.footer-privacy {
    font-size: 0.8rem;
    color: #d9d9d9;
}

.footer-privacy a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.footer-privacy a:hover {
    color: #a4d07b;
}




@media (max-width: 768px) {
 .footer {
        font-size: 0.8rem; /* Reducir el tamaño del texto */
        padding: 15px 5px; /* Reducir el padding */
    }

    .footer-links {
        margin-bottom: 10px;
    }

    .footer-links a {
        margin: 0 3px; /* Reducir el margen entre enlaces */
        font-size: 0.9rem; /* Reducir el tamaño del texto */
    }

    .footer-whatsapp {
        margin-bottom: 10px;
    }

    .footer-whatsapp a {
        font-size: 0.9rem; /* Reducir el tamaño del texto */
    }

    .footer-whatsapp img {
        width: 20px; /* Reducir el tamaño del icono */
        height: 20px;
    }

    .footer-social {
        margin-bottom: 10px;
    }

    .footer-social img {
        width: 30px; /* Reducir el tamaño del icono */
        height: 30px;
    }

    .footer-privacy {
        font-size: 0.7rem; /* Reducir el tamaño del texto */
    }
}






/* Para celulares (428px) */
@media (max-width: 428px) {
    .footer {
        font-size: 0.75rem; /* Reducir aún más el tamaño del texto */
        padding: 10px 5px;
    }

    .footer-links {
        flex-direction: column; /* Apilar los enlaces */
        margin-bottom: 10px;
    }

    .footer-links a {
        display: block; /* Mostrar enlaces en líneas separadas */
        margin: 5px 0; /* Espaciado vertical */
        font-size: 0.8rem; /* Reducir el tamaño del texto */
    }

    .footer-whatsapp {
        margin-bottom: 10px;
    }

    .footer-whatsapp a {
        font-size: 0.8rem; /* Reducir el tamaño del texto */
        flex-direction: column; /* Apilar el texto y el icono */
        gap: 5px; /* Menor espacio entre texto e icono */
    }

    .footer-whatsapp img {
        width: 18px; /* Reducir aún más el tamaño del icono */
        height: 18px;
    }

    .footer-social {
        margin-bottom: 10px;
    }

    .footer-social img {
        width: 25px; /* Reducir el tamaño del icono */
        height: 25px;
    }

    .footer-privacy {
        font-size: 0.65rem; /* Reducir aún más el tamaño del texto */
    }
}
