/* Correção específica para o espaçamento do CTA "Faça parte dessas histórias" */

/* Adicionar espaçamento adequado ao CTA dos depoimentos */
.testimonials-cta {
    margin-top: 4rem !important;
    padding-top: 3rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Para mobile e tablet, aumentar ainda mais o espaçamento */
@media (max-width: 1024px) {
    .testimonials-cta {
        margin-top: 5rem !important;
        padding-top: 4rem !important;
    }
}

/* Para mobile pequeno */
@media (max-width: 768px) {
    .testimonials-cta {
        margin-top: 4rem !important;
        padding-top: 3rem !important;
    }
}

/* Para mobile muito pequeno */
@media (max-width: 480px) {
    .testimonials-cta {
        margin-top: 3rem !important;
        padding-top: 2.5rem !important;
    }
}

