/* Correções para o footer e logotipo na última sessão */

/* Ajustar espaçamento e respiro dos textos */
.final-cta-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.final-cta-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Corrigir o tamanho do logotipo no footer para que fique do mesmo tamanho do header */
.footer {
    padding: 50px 0;
    background-color: var(--primary-dark);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    height: 60px; /* Mesmo tamanho do logo no header */
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
}

.footer-logo img {
    height: 100%;
    width: auto;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .final-cta-section h2 {
        font-size: 2.2rem;
    }
    
    .footer-logo {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .final-cta-section h2 {
        font-size: 1.8rem;
    }
    
    .footer-logo {
        height: 45px;
    }
}
