footer {
    background-color: white;
    color: var(--text);
    padding: 40px 20px 20px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-section {
    width: 100%;
    max-width: 250px;
    text-align: center;

}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text);
}

.footer-section p{
    font-size: 14px;
    color: var(--text);
    margin-bottom: 6px;
    display: block;
}

.addressLink{
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 6px;
}

.addressLink:hover{
    color: var(--red-velvet);
}

.footer-links a{
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 6px;
}

.social-link{
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-link i {
    margin-right: 8px;
    color: var(--text);
    transition: color 0.3s;
}

.social-link:first-child:hover, .social-link:first-child:hover i{
    color: #E1306C;
    font-weight: 600;
}

.social-link:last-child:hover, .social-link:last-child:hover i{
    color: #25D366;
    font-weight: 600;
}

footer .copyright {
    font-size: 12px;
    color: var(--text);
    margin-top: 20px;
}

.copyright a{
    text-decoration: none;
    color: var(--text);
    cursor: pointer;
}

.copyright a:hover{
    font-weight: 700;
}
  
@media (max-width: 789px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-section {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

}
  

/* Botão flutuante */
#floating-button {
    position: fixed;
    z-index: 999;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    display: flex;
    align-items: center;
}

#floating-button:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

#floating-button a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 1.5px;
}

#floating-button i {
    margin-right: 8px;
    font-size: 22px;
}

.button-text{
    font-size: 16px;
}

/* Responsividade: Oculta o texto em telas menores */
@media (max-width: 768px) {
    #floating-button {
        padding: 10px; /* Ajusta o padding para manter o botão circular */
        border-radius: 50%; /* Torna o botão completamente redondo */
        width: 50px;
        height: 50px;
        justify-content: center;
    }

    #floating-button i {
        margin-right: 0; /* Remove o espaçamento entre o ícone e o texto */
    }

    #floating-button .button-text {
        display: none; /* Oculta o texto "Fale conosco" */
    }
}