/* Estilos para o botão de WhatsApp no rodapé */
.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    margin-top: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-button i {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Estilos para o rodapé mais claro */
footer {
    background-color: #f5f5f5;
    color: #333;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-text-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-contact h3,
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #444;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #555;
}

.footer-contact i,
.footer-social i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-social a {
    display: block;
    margin-bottom: 10px;
    color: #555;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    color: #666;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}
