/* ==========================================
   TESTIMONIALS SECTION
   Light Mode with Glassmorphism
   ========================================== */

.testimonials-section {
    max-width: 1200px;
    margin: 5px auto;
    padding: 60px 24px;
    background: transparent;
    /* Removed solid green background */
    border-radius: 0;
    /* Removed border radius */
}

.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #FF8C00, #fb923c);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin: 0;
}

.testimonials-subtitle strong {
    color: #FF8C00;
    font-weight: 700;
}

/* Grid de Depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

/* Card Individual - Glassmorphism */
.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 80px;
    color: rgba(255, 140, 0, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 0 0 2px rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 140, 0, 0.3);
}

/* Estrelas - Amarelo Ouro */
.testimonial-stars {
    font-size: 1.125rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    color: #fbbf24;
    /* Gold color for stars */
}

/* Texto do Depoimento */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Autor */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    /* White border */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info strong {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: #64748b;
}

/* Responsivo */
@media (max-width: 439px) {
    .testimonials-section {
        margin: 40px 16px;
        padding: 40px 20px;
        max-width: 449px;
    }

    .testimonials-title {
        font-size: 1.875rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 24px;
    }
}

/* Animação de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 0.4s;
}

.testimonial-card:nth-child(5) {
    animation-delay: 0.5s;
}