/* ===================================
   SEÇÃO DE DEPOIMENTOS GOOGLE
   Avaliações reais dos alunos
   =================================== */

.depoimentos-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.depoimentos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #f39c12, #e74c3c);
}

/* Header dos Depoimentos */
.depoimentos-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-depoimentos {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-subtitle-depoimentos {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 25px;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.google-rating .stars {
    display: flex;
    gap: 5px;
}

.google-rating .stars i {
    color: #f39c12;
    font-size: 1.8rem;
}

.rating-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    padding: 8px 20px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Grid de Depoimentos */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

/* Card de Depoimento */
.depoimento-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid #3498db;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Card Destaque */
.depoimento-card.destaque {
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
    border-top: 4px solid #f39c12;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.2);
}

.badge-destaque {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(243, 156, 18, 0.3);
}

/* Header do Card */
.depoimento-header-card {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.depoimento-card.destaque .avatar {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.info h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.stars-small {
    display: flex;
    gap: 3px;
}

.stars-small i {
    color: #f39c12;
    font-size: 0.9rem;
}

/* Texto do Depoimento */
.depoimento-texto {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 15px;
}

/* Destaque de Palavras Positivas */
.destaque-positivo {
    color: #2ecc71;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(46, 204, 113, 0.05));
    padding: 2px 6px;
    border-radius: 4px;
}

/* Conquista/Badge */
.conquista {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #27ae60;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
    border-left: 4px solid #27ae60;
}

/* CTA Final */
.depoimentos-cta {
    text-align: center;
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.depoimentos-cta h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 800;
}

.depoimentos-cta p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.btn-depoimentos {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.btn-depoimentos:hover {
    background: linear-gradient(135deg, #229954, #1e8449);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.4);
}

.btn-depoimentos i {
    font-size: 1.3rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .depoimentos-section {
        padding: 60px 15px;
    }
    
    .section-title-depoimentos {
        font-size: 1.8rem;
    }
    
    .section-subtitle-depoimentos {
        font-size: 1rem;
    }
    
    .google-rating {
        flex-direction: column;
        gap: 10px;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .depoimento-card {
        padding: 25px 20px;
    }
    
    .depoimento-texto {
        font-size: 1rem;
    }
    
    .depoimentos-cta {
        padding: 35px 25px;
    }
    
    .depoimentos-cta h3 {
        font-size: 1.5rem;
    }
    
    .depoimentos-cta p {
        font-size: 1rem;
    }
    
    .btn-depoimentos {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title-depoimentos {
        font-size: 1.5rem;
    }
    
    .google-rating .stars i {
        font-size: 1.4rem;
    }
    
    .rating-text {
        font-size: 1.1rem;
    }
    
    .depoimento-card {
        padding: 20px 15px;
    }
    
    .avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .info h4 {
        font-size: 1rem;
    }
    
    .badge-destaque {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}
