.site-footer {
    background-color: #1a1a1a; /* Cor da identidade da ERBASE 2026 */
    color: #ffffff;
    padding: 3rem 0;
    border-radius: 0;
    width: 100%;
    margin-top: auto;
    position: relative;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid transparent;
    border-image: linear-gradient(135deg, #00A2D5, #00F2A5) 1;
}

.site-footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        text-align: left;
        gap: 2rem;
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #00F2A5; /* Gradiente não funciona em texto simples sem webkit-clip, usando a cor de acento */
}

.footer-subtitle {
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.footer-subtitle.ouro {
    color: #ffc107;
}

.footer-subtitle.prata {
    color: #ced4da;
}

.footer-subtitle.bronze {
    color: #f96939;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.footer-logos.mb-small {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-logos.justify-start {
        justify-content: flex-start;
    }
}

/* Placeholder styles if images aren't ready yet */
.logo-placeholder {
    background-color: rgba(255, 255, 255, 0.1);
    color: #bbb;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    background-color: rgba(0, 162, 213, 0.2);
    color: #fff;
    border-color: #00A2D5;
}

/* For actual images when added */
.footer-logos img {
    object-fit: contain;
    transition: transform 0.3s ease;
    max-height: 60px; /* Base height from snippet */
}

.footer-logos a {
    display: inline-block;
}

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

.logo-container-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

@media (min-width: 768px) {
    .footer-logos.justify-start .logo-container-vertical {
        align-items: flex-start;
    }
}

.campus-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 2rem 0;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links-list a:hover {
    color: #00F2A5;
    padding-left: 5px;
}

.footer-text {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 0;
    color: #777;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-link {
    color: #00A2D5;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00F2A5;
}