.avaliacoes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.avaliacoes-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.avaliacoes-section .section-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    width: 100%;
}

.avaliacoes-section .section-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.avaliacoes-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

.avaliacoes-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    margin-top: 20px;
}

.avaliacoes-resumo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 40px;
    gap: 30px;
    width: 100%;
    justify-content: center;
}

.resumo-principal {
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

.media-avaliacao {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.carrossel-avaliacoes {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
}

.carrossel-container-avaliacoes {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    justify-content: flex-start;
    width: max-content;
    margin: 0 auto;
    transform: translateX(0);
}

.avaliacao-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
}

.avaliacao-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.navegacao-avaliacoes {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-avaliacao {
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-avaliacao:hover {
    background-color: #2980b9;
}

.indicadores-avaliacoes {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 8px;
}

.indicador {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicador.ativo {
    background-color: #3498db;
}

.avaliacao-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0;
}

.user-avatar {
    display: none;
}

.user-details h4 {
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 3px;
    font-weight: 600;
}

.avaliacao-data {
    color: #95a5a6;
    font-size: 0.8rem;
    font-weight: 500;
}

.avaliacao-rating {
    text-align: right;
}

.estrelas {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
    justify-content: flex-end;
}

.estrelas .estrela {
    font-size: 1rem;
    color: #ddd;
    transition: color 0.3s ease;
}

.estrelas .estrela.ativa {
    color: #f39c12;
}

.loja-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}

.loja-badge.sorocaba {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.loja-badge.chapeco {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.avaliacao-content {
    margin-top: 15px;
}

.avaliacao-texto {
    color: #34495e;
    font-style: italic;
    line-height: 1.5;
    font-size: 0.9rem;
    position: relative;
    padding-left: 15px;
}

.avaliacao-texto::before {
    content: '"';
    font-size: 2rem;
    color: #667eea;
    position: absolute;
    left: -8px;
    top: -8px;
    font-family: serif;
    opacity: 0.3;
}

.no-avaliacoes {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px dashed #e0e0e0;
}

.no-avaliacoes-content i {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 20px;
    opacity: 0.7;
}

.no-avaliacoes-content h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.no-avaliacoes-content p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .avaliacoes-section {
        padding: 40px 0;
    }
    
    .avaliacoes-section .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .avaliacoes-section .section-header {
        margin-bottom: 30px;
    }
    
    .avaliacoes-section .section-header h2 {
        font-size: 2rem;
    }
    
    .avaliacoes-section .section-subtitle {
        font-size: 1rem;
    }
    
    .avaliacoes-resumo {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        align-items: center;
    }
    
    .resumo-principal {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .media-avaliacao {
        font-size: 14px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .carrossel-avaliacoes {
        max-width: 100%;
        width: 100%;
    }
    
    .carrossel-container-avaliacoes {
        justify-content: center;
        gap: 15px;
        max-width: 100%;
    }
    
    .avaliacao-card {
        flex: 0 0 calc(100% - 30px);
        min-width: calc(100% - 30px);
        max-width: calc(100% - 30px);
        padding: 15px;
    }
    
    .avaliacao-header {
        margin-bottom: 12px;
    }
    
    .user-details h4 {
        font-size: 0.9rem;
    }
    
    .avaliacao-data {
        font-size: 0.75rem;
    }
    
    .avaliacao-texto {
        font-size: 0.85rem;
    }
    
    .estrelas .estrela {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .avaliacoes-section {
        padding: 30px 0;
    }
    
    .avaliacoes-section .container {
        padding: 0 10px;
    }
    
    .avaliacoes-section .section-header {
        margin-bottom: 25px;
    }
    
    .avaliacoes-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .avaliacoes-section .section-subtitle {
        font-size: 0.9rem;
    }
    
    .avaliacoes-resumo {
        gap: 15px;
        width: 100%;
    }
    
    .media-avaliacao {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 15px;
    }
    
    .avaliacao-card {
        padding: 12px;
        flex: 0 0 calc(100% - 20px);
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
    
    .carrossel-container-avaliacoes {
        gap: 10px;
    }
    
    .user-info {
        gap: 6px;
    }
    
    .user-details h4 {
        font-size: 0.85rem;
    }
    
    .avaliacao-data {
        font-size: 0.7rem;
    }
    
    .avaliacao-texto {
        font-size: 0.8rem;
    }
    
    .estrelas .estrela {
        font-size: 0.8rem;
    }
    
    .btn-avaliacao {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .indicador {
        width: 10px;
        height: 10px;
    }
}
