/* css/footer.css (Com cores personalizadas para redes sociais) */

.footer {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 5rem 2rem 0;
}

.footer-container {
    max-width: 75rem;
    /* 1200px */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.5rem;
    /* 40px */
    height: 0.1875rem;
    /* 3px */
    background-color: var(--color-secondary);
}

.footer-col p {
    line-height: 1.7;
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    /* 40px */
    height: 2.5rem;
    /* 40px */
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    /* A cor de fundo genérica foi removida daqui */
    transform: translateY(-0.25rem);
    /* -4px */
}

.social-icons svg {
    width: 1.375rem;
    /* 22px */
    height: 1.375rem;
    /* 22px */
}

/* ... (o restante das regras até o final do arquivo continua igual) ... */

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1rem;
    opacity: 0.9;
}

.address .address-content {
    flex: 1;
}

.footer-links-list a,
.footer-links-list span {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-links-list a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

.footer-links-list svg {
    flex-shrink: 0;
    margin-top: 0.1875rem;
    /* 3px */
    color: var(--color-secondary);
}

.footer-map {
    margin-top: 2rem;
}

.footer-map iframe {
    border-radius: 0.5rem;
    /* 8px */
    height: 13.75rem;
    /* 220px */
    width: 100%;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.whatsapp-float {
    position: fixed;
    width: 3.75rem;
    /* 60px */
    height: 3.75rem;
    /* 60px */
    bottom: 1.5625rem;
    /* 25px */
    right: 1.5625rem;
    /* 25px */
    background-color: #25D366;
    color: #FFF;
    border-radius: 3.125rem;
    /* 50px */
    text-align: center;
    box-shadow: 0.125rem 0.125rem 0.375rem rgba(0, 0, 0, 0.4);
    /* 2px 2px 6px */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 2rem;
    /* 32px */
    height: 2rem;
    /* 32px */
    fill: white;
}


@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: 1.5fr 2fr;
        gap: 3rem;
    }
}

.social-icons a[aria-label="Facebook"] {
    background-color: #1877F2;
    /* Azul Facebook */
}

.social-icons a[aria-label="Instagram"] {
    background-color: #E4405F;
    /* Rosa Instagram */
}

.social-icons a[aria-label="YouTube"] {
    background-color: #FF0000;
    /* Vermelho YouTube */
}

.social-icons a[aria-label="LinkedIn"] {
    background-color: #0077B5;
    /* Azul LinkedIn */
}