footer-bottom/* Estilos do Footer */
.footer-expanded {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #ffffff;
    padding: 3rem 0 1rem 0;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    color: #ecf0f1;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #3498db;
}

.footer-section h4 {
    color: #3498db;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.footer-section address {
    font-style: normal;
    line-height: 1.8;
    color: #ecf0f1;
}

.atendimento-info {
    margin-bottom: 1.5rem;
}

.atendimento-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-group:last-child {
    border-bottom: none;
}

.procuradora-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.procuradora-grupo {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.procuradora-grupo:last-child {
    border-bottom: none;
}

.procuradora-info p,
.contact-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #3498db;
}

.footer-bottom {
    width: 80%; /* Ou o valor desejado */
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* Responsivo */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .procuradora-info p,
    .contact-info p {
        justify-content: center;
    }

    .contact-group,
    .procuradora-grupo {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        margin-bottom: 1rem;
    }
}

/* Alto Contraste */
body.high-contrast .footer-expanded {
    background: var(--background-color);
    border-top: 1px solid var(--text-color);
}

body.high-contrast .footer-section h3::after {
    background-color: var(--text-color);
}

body.high-contrast .footer-section h4 {
    color: var(--text-color);
}

body.high-contrast .contact-info a {
    color: var(--text-color);
}

body.high-contrast .contact-group,
body.high-contrast .procuradora-grupo {
    border-color: var(--text-color);
}