/* Instagram Footer Icon Sindecom - círculo com borda azul clara e ícone branco */
.footer-social-icons .social-icon.instagram {
    background: rgba(255,255,255,0.18);
    color: #fff;
    border: 2px solid #fff;
    box-sizing: border-box;
    box-shadow: none;
    font-size: 1.7rem;
    padding: 20px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social-icons .social-icon.instagram:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: #fff;
    transform: scale(1.12);
    transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social-icons .social-icon.instagram i {
    color: inherit;
    font-size: 0.9em;
}
/* Social Icons Footer Sindecom (inspirado no Secgoiana) */
.footer-social-icons {
    display: flex;
    gap: 0.8rem;
}
.social-icons-wrapper {
    display: flex;
    gap: 0.8rem;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 173, 255, 0.4);
    font-size: 1.3rem;
}
.social-icon.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    border-color: transparent;
}
/* Instagram no footer-bottom */
.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    position: relative;
    flex-wrap: wrap;
}
.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    margin: 0;
}
.footer-bottom-content .footer-privacy-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    margin-left: 0;
}
.footer-bottom-content .footer-privacy-link:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}
.footer-instagram-link {
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    transition: color 0.2s, transform 0.2s;
    margin-left: 0;
    margin-right: 0;
}
.footer-instagram-link:hover {
    color: #E4405F;
    transform: scale(1.12);
}
/* Redes Sociais no Footer */
.footer-social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
}
.footer-social-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.footer-social-icons {
    display: flex;
    gap: 16px;
}
.footer-social-icons a {
    color: #E4405F;
    font-size: 2rem;
    transition: color 0.2s, transform 0.2s;
}
.footer-social-icons a:hover {
    color: #b92d5e;
    transform: scale(1.12);
}
/* Instagram Icon in Footer */
.footer-instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 18px;
    font-size: 2rem;
    color: #E4405F;
    transition: color 0.2s, transform 0.2s;
}
.footer-instagram-link:hover {
    color: #b92d5e;
    transform: scale(1.12);
}
/* footer.css - Rodapé com paleta Sindecom */
:root {
    --primary-color: #025983;
    --secondary-color: #0377AE;
    --body-text: #333333;
    --accent-color: #00ADFF;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
}

/* FOOTER */
.site-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    color: var(--white);
    padding: 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 173, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(2, 89, 131, 0.1) 100%);
    pointer-events: none;
}

.footer-top {
    background: var(--white);
    padding: 30px 20px;
    border-bottom: 4px solid var(--accent-color);
}

.footer-top-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-logo-section {
    display: flex;
    align-items: center;
}

.footer-logo-section a {
    display: block;
    transition: transform 0.3s ease;
}

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

.footer-logo {
    width: 250px;
    height: auto;
    object-fit: contain;
    cursor: pointer;
}

.footer-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.footer-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--body-text);
    background: var(--white);
    padding: 25px 20px;
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.footer-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 173, 255, 0.2);
}

.footer-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.footer-info-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.footer-info-text {
    text-align: center;
    line-height: 1.6;
    font-size: 0.95rem;
    color: var(--body-text);
    margin: 0;
}

.footer-developed {
    text-align: right;
}

.footer-developed p {
    color: var(--body-text);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-developed img {
    height: 30px;
    width: auto;
}

.footer-bottom {
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    margin: 0;
}

.footer-privacy-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.footer-privacy-link:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-top-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .footer-logo-section {
        justify-content: center;
    }

    .footer-info-section {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .footer-developed {
        text-align: center;
    }

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

@media (max-width: 480px) {
    .footer-top-content {
        gap: 15px;
    }

    .footer-logo-section {
        max-width: 100%;
    }

    .footer-info-section {
        gap: 15px;
    }
}
