/* Estilos específicos para o rodapé da página de processos */

/* Divider line between content and footer */
.footer-divider {
    width: 100%;
    height: 4px;
    background: transparent;
    margin: 0;
    border: none;
    border-top: 2px solid #395278;
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

/* Rodapé */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    margin-top: 1.5rem;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-light);
}

.footer-section p {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.contact-phone, .contact-email {
    color: var(--text-light);
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-gray);
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0;
    }
}