/* Barão Testemunhos - Frontend Styles */

.barao-testimonials-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

.barao-testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.barao-testimonials-title {
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  color: #1a1a1a;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.barao-tripadvisor-logo {
  max-width: 200px !important;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

.barao-testimonials-nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 15px;
}

.barao-testimonial-prev,
.barao-testimonial-next {
  width: 50px;
  height: 50px;
  border: 2px solid #333;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #333;
  padding: 0;
}

.barao-testimonial-prev:disabled,
.barao-testimonial-next:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.barao-testimonial-prev:not(:disabled):hover,
.barao-testimonial-next:not(:disabled):hover {
  background: #333;
  color: #fff;
}

.barao-testimonials-container {
  overflow: hidden;
  width: 100%;
}

.barao-testimonials-slider {
  display: flex;
  gap: 40px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.barao-testimonial {
  flex-shrink: 0;
  flex-grow: 0;
  padding: 50px 40px;
  text-align: center;
  border-radius: 0;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.barao-testimonial-rating {
  font-size: 24px;
  color: #000;
  margin-bottom: 25px;
  letter-spacing: 3px;
}

.barao-testimonial-title {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 25px 0;
  color: #1a1a1a;
  line-height: 1.4;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.barao-testimonial-content {
  font-size: 15px;
  line-height: 20px;
  color: #4a4a4a;
  margin: 0 0 30px 0;
  flex-grow: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.barao-testimonial-author {
  font-size: 14px;
  color: #1a1a1a;
  margin: 0;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
  .barao-testimonials-title {
    font-size: 36px;
    letter-spacing: 1px;
  }

  .barao-testimonials-nav {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 30px;
  }

  .barao-testimonial {
    padding: 40px 30px;
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .barao-testimonial-rating,
  .barao-testimonials-header,
  .barao-testimonial-title,
  .barao-testimonial-content {
    margin: 0;
  }

  .barao-testimonials-wrapper {
    padding: 60px 15px;
  }

  .barao-testimonials-title {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .barao-tripadvisor-logo {
    max-width: 160px;
  }

  .barao-testimonial {
    padding: 35px 25px;
    min-height: 350px;
  }

  .barao-testimonial-title {
    font-size: 20px;
  }

  .barao-testimonial-content {
    font-size: 14px !important;
    line-height: 19px;
  }
}

/* Animação */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.barao-testimonial {
  animation: fadeInUp 0.6s ease;
}
