/* Footer Styles */
.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1200px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-img {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Torna a logo totalmente branca */
}

.footer-description {
    color: #a0aec0;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fec202;
    /* Fundo Amarelo */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    /* Ícone Preto para contraste */
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;
    /* Hover Branco */
    color: #1a1a1a;
    transform: translateY(-3px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 600px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}

.widget-title {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fec202;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(254, 194, 2, 0.2);
    display: inline-block;
}

.footer-navigation ul,
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-navigation li,
.footer-column li {
    margin-bottom: 12px;
}

.footer-navigation a,
.footer-column a {
    color: #cbd5e0;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-navigation a:hover,
.footer-column a:hover {
    color: #fec202;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.site-info p {
    color: #718096;
    font-size: 0.85rem;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 20px;
    right: 20px;
    width: auto;
    background: #ffffff;
    padding: 24px;
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(200%);
    opacity: 0;
}

.cookie-consent-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: 0.95rem;
    margin: 0;
    color: #1a1a1a;
    line-height: 1.5;
}

.cookie-text a {
    color: #1a1a1a;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.cookie-text a:hover {
    color: #fec202;
}

.btn-accept {
    background: #fec202;
    color: #1a1a1a;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.btn-accept:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 194, 2, 0.3);
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        /* Usa o safe-area-inset para evitar que a barra do navegador (iOS/Android) cubra o banner */
        bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        left: 15px;
        right: 15px;
        padding: 20px;
        padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    }

    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-text p {
        font-size: 0.9rem;
    }

    .btn-accept {
        width: 100%;
        padding: 15px;
    }
}