/* ===================================
   SEXTA SEÇÃO: DEPOIMENTOS DE CLIENTES
   ===================================*/

#testimonials-section {
    background-color: #FFF;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header da Seção */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #626262;
    line-height: 1.6;
}

/* Grid de Depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1070px;
    margin: 0 auto;
}

/* Card de Depoimento */
.testimonial-card {
    max-width: 320px;
    background: linear-gradient(135deg, #232323 0%, #3C3C3C 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(230, 183, 90, 0.3);
    border-color: #E6B75A;
}

/* Foto do Cliente */
.testimonial-photo-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #4A8FD8;
    margin-bottom: 25px;
    background-color: #4A8FD8;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-photo-wrapper {
    transform: scale(1.05);
}

.testimonial-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Nome do Cliente */
.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: #E6B75A;
    margin-bottom: 8px;
    line-height: 1.2;
}

/* Profissão/Função */
.testimonial-role {
    font-size: 14px;
    font-weight: 500;
    color: #B8C5D6;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Texto do Depoimento */
.testimonial-text {
    font-size: 16px;
    font-weight: 400;
    color: #E0E7F0;
    line-height: 1.7;
    font-style: italic;
}

/* Aspas Decorativas (opcional) */
.testimonial-text::before {
    content: '"';
    font-size: 40px;
    color: #E6B75A;
    opacity: 0.4;
    line-height: 0;
    display: block;
    margin-bottom: 10px;
}

/* ===================================
   MEDIA QUERIES - RESPONSIVIDADE
   ===================================*/

/* Telas grandes (1400px ou mais) */
@media (min-width: 1400px) {
    .testimonials-container {
        max-width: 1600px;
    }
    
    .testimonials-title {
        font-size: 48px;
    }
    
    .testimonials-subtitle {
        font-size: 20px;
    }
    
    .testimonials-grid {
        gap: 50px;
    }
}

/* Telas médias-grandes (1200px - 1399px) */
@media (max-width: 1399px) {
    .testimonials-title {
        font-size: 40px;
    }
    
    .testimonials-grid {
        gap: 35px;
    }
    
    .testimonial-card {
        padding: 35px 25px;
    }
}

/* Tablets grandes e desktops pequenos (992px - 1199px) */
@media (max-width: 1199px) {
    .testimonials-title {
        font-size: 36px;
    }
    
    .testimonials-subtitle {
        font-size: 17px;
    }
    
    .testimonials-grid {
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-photo-wrapper {
        width: 110px;
        height: 110px;
    }
    
    .testimonial-name {
        font-size: 19px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    #testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonials-header {
        margin-bottom: 50px;
    }
    
    .testimonials-title {
        font-size: 32px;
    }
    
    .testimonials-subtitle {
        font-size: 16px;
    }
    
    /* 2 cards por linha em tablets */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 35px 25px;
    }
    
    .testimonial-photo-wrapper {
        width: 100px;
        height: 100px;
    }
}

/* Mobile grande (576px - 767px) */
@media (max-width: 767px) {
    #testimonials-section {
        padding: 50px 15px;
    }
    
    .testimonials-title {
        font-size: 28px;
    }
    
    .testimonials-subtitle {
        font-size: 15px;
    }
    
    /* 1 card por linha em mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 35px 25px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonial-photo-wrapper {
        width: 110px;
        height: 110px;
    }
    
    .testimonial-name {
        font-size: 20px;
    }
    
    .testimonial-role {
        font-size: 13px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
}

/* Mobile pequeno (até 575px) */
@media (max-width: 575px) {
    #testimonials-section {
        padding: 40px 15px;
    }
    
    .testimonials-header {
        margin-bottom: 40px;
    }
    
    .testimonials-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .testimonials-subtitle {
        font-size: 14px;
    }
    
    .testimonials-grid {
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-photo-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .testimonial-name {
        font-size: 19px;
    }
    
    .testimonial-role {
        font-size: 12px;
        margin-bottom: 18px;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .testimonial-text::before {
        font-size: 35px;
        margin-bottom: 8px;
    }
}

/* Mobile muito pequeno (até 400px) */
@media (max-width: 400px) {
    .testimonials-title {
        font-size: 22px;
    }
    
    .testimonial-card {
        padding: 25px 18px;
    }
    
    .testimonial-photo-wrapper {
        width: 90px;
        height: 90px;
    }
    
    .testimonial-name {
        font-size: 18px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
}
