/* ===== SEÇÃO FOOTER ===== */
.section-footer {
    background:
        linear-gradient(rgba(11, 15, 23, 0.85), rgba(11, 15, 23, 0.90)),
        url('../images/footer-bg.png') center/cover no-repeat;
    margin-top: 0;
    padding: 0;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    position: relative;
    scroll-margin-top: -30px;
}

.section-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(148, 0, 211, 0.04) 100%);
    pointer-events: none;
}

/* Container */
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Conteúdo Principal */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0 40px 0;
    align-items: start;
}

/* Seções do Footer */
.footer-section {
    display: flex;
    flex-direction: column;
}

/* Logo */
.footer-logo {
    margin-bottom: 20px;
    margin-left: 0;
}

.footer-logo-img {
    height: 230px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.03);
}

/* Descrição */
.footer-section p {
    color: var(--muted);
    margin: 0 0 25px 0;
    font-size: 19px;
    line-height: 1.6;
    max-width: 400px;
    margin-left: 20px;
    text-align: justify;
}

/* Informações de Contato */
.footer-contact-info {
    margin: 0 0 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--text);
}

/* Ícones de Contato Padrão */
.contact-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(70%) sepia(100%) saturate(500%) hue-rotate(160deg);
    transition: all 0.3s ease;
}

/* Ícone de Pin - Tamanho Maior */
.contact-icon-pin {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(65%) sepia(100%) saturate(500%) hue-rotate(160deg);
}

/* Ícone de CNPJ - Tamanho Maior */
.contact-icon-cnpj {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(100%) saturate(500%) hue-rotate(160deg);
}

.contact-item:hover .contact-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg);
}

/* Títulos */
.footer-section h4 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 85px;
    margin-left: 360px;
}

/* Ajuste do tamanho dos ícones sociais */
.social-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Links Sociais */
.social-links {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--primary);
    background: rgba(0, 229, 255, 0.1);
    transform: translateY(-2px);
}

/* Links do Menu */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    margin-left: 360px;
}

.footer-links li a {
    color: var(--muted);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--text);
    transform: translateX(5px);
}

/* Divisor */
.footer-divider {
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            #ffffff 20%,
            #ffffff 80%,
            transparent 100%);
    margin: 20px 0;
}

/* Rodapé Inferior */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.footer-copyright span {
    color: var(--muted);
    font-size: 14px;
    margin-left: 20px;
}

.footer-credits .footer-hph-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-credits .footer-hph-link:hover {
    color: var(--primary);
}

/* Responsivo */
@media (max-width: 768px) {
    .section-footer {
        scroll-margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0 30px 0;
    }

    .footer-section h4 {
        margin-top: 0;
        margin-left: 0;
        text-align: center;
    }

    .footer-links {
        margin-left: 0;
        align-items: center;
    }

    .footer-section p {
        margin-left: 0;
        text-align: center;
    }

    .footer-contact-info {
        margin-left: 0;
        align-items: center;
    }

    .social-links {
        margin-left: 0;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-copyright span {
        margin-left: 0;
    }

    /* Ajuste dos ícones maiores no mobile */
    .contact-icon-pin,
    .contact-icon-cnpj {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .section-footer {
        scroll-margin-top: 50px;
    }

    .footer-contact-info {
        gap: 10px;
    }

    .contact-item {
        font-size: 14px;
        text-align: center;
        justify-content: center;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-links a {
        width: 200px;
        justify-content: center;
    }

    /* Ajuste adicional dos ícones no mobile pequeno */
    .contact-icon-pin,
    .contact-icon-cnpj {
        width: 15px;
        height: 15px;
    }
}