/* Estilos para a seção de depoimentos */
.teste-section {
    padding: 60px 0;
    background-color: #12022B;
    color: #fff;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.teste-section .section-header {
    text-align: center;
    margin: 0 auto 50px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
}

.teste-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #9333EA;
    text-align: center;
    margin: 0 0 40px 0;
    padding: 0 0 20px 0;
    position: relative;
    line-height: 1.2;
    text-transform: none;
    width: 100%;
    display: block;
}

/* Responsividade para títulos - seguindo o mesmo padrão das outras seções */
@media (max-width: 1199px) {
    .teste-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }
}

@media (max-width: 991px) {
    .teste-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .teste-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .teste-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
}

/* Garante que apenas a primeira letra fique em maiúscula */
.teste-section .section-title::first-line {
    text-transform: capitalize;
}

.teste-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #9333EA;
    border-radius: 3px;
}

/* Responsividade para títulos */
@media (max-width: 1199px) {
    .teste-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }
}

@media (max-width: 991px) {
    .teste-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .teste-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .teste-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
}

/* Garante que apenas a primeira letra fique em maiúscula */
.teste-section .section-title {
    text-transform: lowercase;
}

.teste-section .section-title::first-letter {
    text-transform: uppercase;
}

.teste-section .section-subtitle {
    font-size: 1.2rem;
    margin: 25px auto 0;
    color: #fff;
    opacity: 0.9;
    max-width: 800px;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 1024px) {
    .teste-section .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .teste-section {
        padding: 50px 0;
    }
    
    .teste-section .section-title {
        font-size: 2rem;
        padding-bottom: 12px;
    }
    
    .teste-section .section-subtitle {
        font-size: 1.1rem;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .teste-section {
        padding: 40px 0;
    }
    
    .teste-section .section-header {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .teste-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .teste-section .section-subtitle {
        font-size: 1rem;
        margin-top: 15px;
    }
}

/* Estilos para os cards de depoimentos */
.cards-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.teste-card {
    background: rgba(147, 51, 234, 0.1);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(147, 51, 234, 0.2);
    flex: 1;
    min-width: 0;
    height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Estilos do carrossel movidos para carrossel-mobile.css */

/* Efeito de hover suave */
.teste-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Estilos para o carrossel mobile movidos para carrossel-mobile.css */

/* Responsividade */
@media (max-width: 991px) {
    .teste-card {
        flex: 0 0 48%;
        max-width: 48%;
        height: 350px;
    }
}

@media (max-width: 768px) {    
    .cards-container {
        display: none;
    }
    
    .teste-section .section-title {
        font-size: 2rem;
    }
    
    .teste-section .section-subtitle {
        font-size: 1rem;
    }
}

/* Ajustes para telas muito grandes */
@media (min-width: 1600px) {
    .teste-card {
        height: 500px;
    }
}
