/* Calificación principal */
.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .rating .score {
    font-size: 4rem;
    font-weight: bold;
    color: #444;
    margin-right: 15px;
  }
  
  .rating .stars {
    font-size: 2.5rem;
    color: #FFD700;
  }
  
  .rating .reviews {
    margin-left: 15px;
    font-size: 1.2rem;
    color: #666;
  }
  
  .review-button {
    background-color: #0066ff;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
  }
  
  /* Estilos para el carrusel de reseñas */
  .reviews-slider {
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow-x: scroll;
    padding: 20px 0;
    scrollbar-width: none; 
  }
  
  .reviews-slider::-webkit-scrollbar {
    display: none; 
  }
  
  .review {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: left;
  }
  
  .review:hover {
    transform: translateY(-10px);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  }
  
  .review .stars {
    font-size: 1.2rem;
    color: #FFD700;
    margin-bottom: 10px;
  }
  
  .review .text {
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
    word-wrap: break-word; 
    white-space: normal;
  }
  
  .review .author {
    display: flex;
    align-items: center;
    margin-top: 10px;
  }
  
  .review .author img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  
  .review .author .name {
    font-weight: bold;
    color: #333;
  }
  
  .review .author .verified {
    color: #00c853;
    margin-left: 5px;
  }
  