/* Seção principal */
.avaliacoes-linhas {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Card resumo */
.avaliacao-resumo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.resumo-esquerda {
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-logo {
    width: 40px;
    height: auto;
}

.nota strong {
    font-size: 2.5em;
    color: #004aad;
    margin-right: 5px;
}

.nota .stars {
    color: #FFD700;
    font-size: 1.2em;
}

.avaliacao-resumo p {
    margin: 0;
    color: #333;
    font-size: 1em;
}

/* Lista de avaliações */
.avaliacoes-lista {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.avaliacao-item {
    background: #fff;
    border-left: 4px solid #004aad;
    padding: 15px 20px;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.avaliacao-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.cabecalho {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cabecalho img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #eee;
}

.cabecalho a {
    color: #004aad;
    text-decoration: none;
}

.cabecalho a:hover {
    text-decoration: underline;
}

.cabecalho .stars {
    color: #FFD700;
    font-size: 0.9em;
}

.cabecalho .tempo {
    color: #777;
    font-size: 0.8em;
}

.texto {
    color: #333;
    font-size: 0.95em;
    line-height: 1.4em;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* número de linhas visíveis */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
