/* ==========================================================================
   ESTILOS GLOBAIS DO RODAPÉ (footer.css)
   ========================================================================== */

.main-footer {
    background-color: var(--azul-noite);
    /* Reduzimos o preenchimento superior de 4rem para 3rem */
    padding: 3rem 5% 2rem;
    /* Reduzimos a margem superior de 6rem para 4rem */
    margin-top: 4rem;    
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-column {
    flex: 1;
    min-width: 250px; /* Garante que as colunas não fiquem muito espremidas */
}

.footer-column h3 {
    font-size: 1.3rem;
    color: var(--branco);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--ciano-vibrante);
}

.footer-column .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 1rem;
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    opacity: 1; /* LINHA ADICIONADA PARA GARANTIR A VISIBILIDADE */
}

.footer-column .logo:hover {
    transform: scale(1.1);
    color: var(--ciano-vibrante);
}


.footer-column p {
    font-weight: 300;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul a, .footer-contact a {
    color: var(--cinza-claro);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-column ul a:hover, .footer-contact a:hover {
    color: var(--ciano-vibrante);
}

.footer-contact i {
    font-size: 1.1rem;
    width: 20px; /* Alinha os textos */
}

.footer-bottom-bar {
    text-align: center;
    /* Reduzimos o preenchimento de 3rem para 2rem */
    padding-top: 2rem;
    /* Reduzimos a margem de 3rem para 2rem */
    margin-top: 2rem;
    border-top: 1px solid rgba(189, 178, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsividade do rodapé */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 3rem;
    }
}