.footer {
    background-color: var(--bg-color);
    width: 100%;
    font-family: "Lora", sans-serif;
    justify-content: center;
    margin: auto;
}
a{
    text-decoration: none;
}

.footer-content {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;    
    gap: 3rem;
    align-items: center;
    text-align: left; 
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-color);
    font-size: 1rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    line-height: 1.8;
    flex: 1;
    min-width: 250px;
}

.footer-contact p {
    margin: 0.5rem 0;
    color: var(--text-light);
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-hover);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #25D366 !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background-color: rgba(37, 211, 102, 0.1);
    transform: scale(1.05);
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-social a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-social a:hover {
    color: var(--primary-color);
    background-color: rgba(123, 183, 122, 0.1);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    footer{
        padding: 0;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        align-items: center;
        max-width: auto;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact {
        text-align: center;
    }
}

