/* ==========================================================================
   Footer Premium - Instituto Jovanelli
   ========================================================================== */
.footer-premium {
    background: lab(27.12% -3.55 -4.66 / 0.85); 
    color: #EFE9DF;
    padding-top: 80px;
    border-top: 1px solid rgba(250, 213, 164, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    height: 160px;
    width: auto;
    margin-bottom: 25px;
    filter: brightness(1.1);
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(239, 233, 223, 0.7);
    margin-bottom: 30px;
    font-weight: 300;
}

.footer-title {
    font-size: 1.1rem;
    color: #FAD5A4; /* Dourado */
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 15px;
}

.footer-list a {
    text-decoration: none;
    color: rgba(239, 233, 223, 0.6);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-list a:hover {
    color: #FAD5A4;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(239, 233, 223, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact i {
    color: #FAD5A4;
    font-size: 1.4rem;
    margin-top: 3px;
}

/* Redes Sociais */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(250, 213, 164, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FAD5A4;
    text-decoration: none;
    transition: all 0.4s ease;
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: #120E0A;
    border-color: transparent;
    transform: translateY(-5px);
}

/* Barra Inferior */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(239, 233, 223, 0.4);
    font-weight: 300;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: rgba(239, 233, 223, 0.4);
    text-decoration: none;
    transition: 0.3s;
}

.legal-links a:hover {
    color: #FAD5A4;
}

/* Responsividade */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-contact li { justify-content: center; }
    .social-links { justify-content: center; }
    .bottom-content { flex-direction: column; gap: 20px; }
}