/* CSS para limitação de comentários a 2 linhas */
.review-comment {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    height: calc(1.4em * 2); /* Altura fixa para 2 linhas */
}

/* Altura fixa para todos os cards */
.review-card {
    height: 165px; /* Ajuste conforme necessário */
}

.review-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.review-name {
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
}

.review-time {
  font-size: 12px;
  line-height: 16px;
  color: rgba(17, 17, 17, 0.5);
  margin-bottom: 15px;
}

.review-comment-container {
    flex-grow: 1;
    margin-top: 5px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border: 2px solid #ddd;
    top: 50%;
    transform: translateY(-50%);
}

#reviewCarousel .carousel-control-prev:hover,
#reviewCarousel .carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.2);
    border-color: #999;
}

#reviewCarousel .carousel-control-prev {
    left: -70px;
}

#reviewCarousel .carousel-control-next {
    right: -70px;
}

/* Container com padding para acomodar os botões */
#reviewCarousel .carousel-container {
    padding: 0 80px;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}







.review-content {
    text-align: center;
    margin-bottom: 10px;
}

.rating-display {
    margin-bottom: 0px; /* Espaço entre as duas linhas */
}

.score {
    font-size: 24px;
    font-weight: bold;
    color: #333;

}

.stars {
    color: #ffd700;
    font-size: 25px;

}

.review-count {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}





#carouselOtica {
    display: block;
}

@media (max-width: 767px) {
    #carouselOtica {
        display: none !important;
    }  
}