/* Estilos para o mock de avaliações quando EmbedSocial falhar */

.reviews-mock {
    padding: 20px;
    background: transparent;
    border-radius: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.review-item {
    background: white;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.review-avatar{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.review-stars {
    color: #ffc107;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-content {
    margin-bottom: 8px;
}

.review-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.review-date {
    color: #999;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
}

/* Responsividade */
@media (max-width: 768px) {
    .reviews-mock {
        padding: 15px;
        max-height: 350px;
    }
    
    .review-item {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .review-header {
        margin-bottom: 8px;
    }
    
    .review-avatar img {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    
    .review-name {
        font-size: 14px;
    }
    
    .review-stars {
        font-size: 12px;
    }
    
    .review-content p {
        font-size: 13px;
    }
    
    .review-date {
        font-size: 11px;
    }
}

/* Dark mode */
.dark-mode .reviews-mock {
    background: #2d3748;
}

.dark-mode .review-item {
    background: #1a202c;
    border-left-color: #00d4ff;
}

.dark-mode .review-name {
    color: #e2e8f0;
}

.dark-mode .review-content p {
    color: #cbd5e0;
}

.dark-mode .review-date {
    color: #718096;
}

/* Animação de entrada */
.reviews-mock .review-item {
    animation: slideInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.reviews-mock .review-item:nth-child(1) { animation-delay: 0.1s; }
.reviews-mock .review-item:nth-child(2) { animation-delay: 0.2s; }
.reviews-mock .review-item:nth-child(3) { animation-delay: 0.3s; }
.reviews-mock .review-item:nth-child(4) { animation-delay: 0.4s; }
.reviews-mock .review-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
