/* ===== TESTEMUNHOS - CSS DIRETO ===== */
.testimonials-section {
    padding: 80px 0;
    background: #f8faff;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: block;
    margin-bottom: 20px;
}

.label-text {
    color: #28b6f6;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.label-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #28b6f6;
    border-radius: 3px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #003153;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Carrossel */
.testimonials-carousel {
    position: relative;
    margin: 30px 0;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

/* Cards */
.testimonial-card {
    flex: 0 0 calc(33.333% - 17px);
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,49,83,0.05);
    border: 1px solid rgba(40,182,246,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(40,182,246,0.1);
    border-color: #28b6f6;
}

.quote-icon {
    color: #28b6f6;
    font-size: 24px;
    opacity: 0.2;
    margin-bottom: 10px;
    display: block;
}

.testimonial-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.testimonial-footer {
    border-top: 1px solid rgba(40,182,246,0.08);
    padding-top: 15px;
    margin-top: auto;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px;
}

.testimonial-detail {
    font-size: 13px;
    color: #28b6f6;
    font-weight: 500;
    margin: 0 0 8px;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.testimonial-rating i {
    color: #f59e0b;
    font-size: 13px;
}

/* Navegação */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-prev,
.carousel-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(40,182,246,0.15);
    background: white;
    color: #28b6f6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #28b6f6;
    color: white;
    border-color: #28b6f6;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #28b6f6;
    transform: scale(1.3);
    width: 10px;
    height: 10px;
}

/* Responsividade */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 13px);
    }
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
    .section-title {
        font-size: 32px;
    }
    .section-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
    .label-text {
        font-size: 16px;
    }
    .testimonial-card {
        padding: 20px;
    }
}
