/* =============================================
   FOOTER - BAUH ARQUITETURA
   Clean, Elegant & Creative Design
   ============================================= */

/* Footer Container Principal */
.footer {
    background-color: #FAFAFA !important;
    background: #FAFAFA !important;
    position: relative;
    margin-top: 120px;
    overflow: hidden;
    border-top: 1px solid #E5E5E5;
    min-height: 400px;
    z-index: 5 !important; /* Abaixo do header e menu mobile */
}

/* Linha decorativa superior removida para design mais clean */


/* Container Principal do Footer */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 50px 40px;
    position: relative;
    z-index: 2;
}

/* Grid Principal - 4 colunas no desktop */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Seção 1 - Sobre a Empresa */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 8px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-tagline {
    display: none; /* Removido para design mais clean */
}

.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
    max-width: 320px;
}

/* Seção 2 - Links Rápidos */
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #706f6f;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    position: relative;
}

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

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #333333;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #1A1A1A;
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 100%;
}

/* Seção 3 - Contato */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    stroke: #666666;
}

.footer-contact-item:hover svg {
    opacity: 0.8;
}

.footer-contact-item a,
.footer-contact-item span {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.footer-contact-item a:hover {
    color: #1A1A1A;
}

/* Botão de Contato - Design Clean e Minimalista */
.footer-whatsapp-btn {
    font-family: 'Saira Extra Condensed', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: #FFFFFF !important;
    color: #1A1A1A !important;
    border: 1.5px solid #E5E5E5 !important;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.footer-whatsapp-btn:hover {
    background: #1A1A1A !important;
    border-color: #1A1A1A !important;
    color: #FFFFFF !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
}

.footer-whatsapp-btn svg {
    width: 14px !important;
    height: 14px !important;
}

/* Seção 4 - Redes Sociais */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #E5E5E5;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: #666666;
    opacity: 1;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link:hover {
    border-color: #333333;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-link:hover svg {
    fill: #FFFFFF;
    transform: scale(1.1);
}

/* Instagram - Gradiente especial no hover */
.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

/* LinkedIn - Cor especial no hover */
.social-link.linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
}

/* Pinterest - Cor especial no hover */
.social-link.pinterest:hover {
    background: #E60023;
    border-color: #E60023;
}

/* Facebook - Cor especial no hover */
.social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

/* YouTube - Cor especial no hover */
.social-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

/* TikTok - Cor especial no hover */
.social-link.tiktok:hover {
    background: #000000;
    border-color: #000000;
}

/* Seção para links de redes sociais no footer-bottom */
.footer-social-bottom {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social-bottom .social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #D0D0D0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social-bottom .social-link svg {
    width: 16px;
    height: 16px;
    fill: #666666;
    transition: all 0.3s ease;
}

.footer-social-bottom .social-link:hover {
    transform: translateY(-2px);
    border-color: #999;
}

.footer-social-bottom .social-link:hover svg {
    fill: #333333;
}


/* Footer Bottom - Copyright e Links Legais */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #E5E5E5;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #999999;
    line-height: 1.6;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal-links a {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #666666;
}

.footer-credits {
    display: none; /* Removido para design mais clean */
}

.footer-credits a {
    display: none;
}


/* Animação removida para garantir visibilidade */

/* =============================================
   RESPONSIVIDADE
   ============================================= */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .footer-container {
        padding: 60px 40px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .footer {
        margin-top: 80px;
    }

    .footer-container {
        padding: 50px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Ocultar menu no footer em dispositivos móveis */
    .footer-section.footer-menu {
        display: none;
    }

    .footer-tagline {
        font-size: 16px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-title {
        font-size: 11px;
        margin-bottom: 16px;
        color: #706f6f;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-contact-item {
        font-size: 13px;
    }

    .footer-whatsapp-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .footer-social-links {
        gap: 12px;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        padding-top: 30px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-legal-links {
        gap: 16px;
    }

    .footer-legal-links a {
        font-size: 11px;
    }

    .footer-credits {
        font-size: 10px;
        margin-top: 12px;
    }
}

/* Mobile Pequeno (max-width: 480px) */
@media (max-width: 480px) {
    .footer-container {
        padding: 40px 15px 25px;
    }

    .footer-logo img {
        height: 55px;
    }

    .footer-tagline {
        font-size: 15px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-whatsapp-btn {
        width: 100%;
        justify-content: center;
    }

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

    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}