* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }


  .reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center
  }

  .arrow {
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    color: white;
    border: none;
    border-radius: 50%;
    transition: background-color 0.3s;
  }

 .esp{
    height: 20px;
 }

  .reviews-wrapper {
    overflow: hidden;
    width: 80%;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Exibe 3 colunas */
    gap: 20px;
    justify-items: center;
    margin-bottom: 20px;
  }

  .review {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .review .author-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: center;
  }

  .review:hover {
    transform: translateY(-5px);
  }

  .review .author-info img {
    border-radius: 50%;
    width: 30px; /* Foto menor */
    height: 30px; /* Foto menor */
    margin-right: 10px;
  }
  
  .review .author {
    font-weight: bold;
    text-align: left;
  }

  .review .rating {
    color: gold;
    margin-bottom: 10px;
  }

  .rating {
    color: gold;
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .review .text {
    font-size: 14px;
    color: #555;
    text-align: left;
  }
  
  .navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
  }
  
  .arrow {
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
  }
  
  .arrow:hover {
    background-color: #0056b3;
  }
  
  .arrow.hidden {
    visibility: hidden;
  }