/* Avoar Turismo - Seção de Depoimentos CORRIGIDA */

/* Fundo igual ao restante da página (sem azul) */
.testimonials-section {
  background: transparent;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  display: none;
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

/* Header com Rating do Google */
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 3px;
  color: #ff5c00;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.testimonials-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}

/* Google Rating Badge - link clicável para página de avaliações no Google */
a.google-rating-badge,
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255, 92, 0, 0.1);
  border: 1.5px solid rgba(255, 92, 0, 0.25);
  border-radius: 14px;
  padding: 14px 32px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.google-rating-badge:hover,
.google-rating-badge:hover {
  background: rgba(255, 92, 0, 0.15);
  border-color: rgba(255, 92, 0, 0.4);
}

.google-rating-count {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.google-rating-badge-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-rating-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rating-score {
  font-size: 24px;
  font-weight: 800;
  color: #ff5c00;
}

.rating-stars {
  display: flex;
  gap: 4px;
}

.rating-stars .fa-star {
  color: #ffc107;
  font-size: 14px;
  filter: drop-shadow(0 0 2px rgba(255, 193, 7, 0.3));
}

/* Carousel Container - CORRIGIDO */
.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
  margin: 0;
}

.testimonials-carousel {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 92, 0, 0.12);
  border-radius: 20px;
  padding: 0;
  min-height: 320px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

/* Testimonial Item - CORRIGIDO PARA TRANSIÇÃO FUNCIONAR */
.testimonial-item {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s ease, visibility 0s 0.7s;
  pointer-events: none;
  box-sizing: border-box;
  z-index: 1;
}

.testimonial-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.7s ease, transform 0.7s ease, visibility 0s 0s;
  pointer-events: auto;
  z-index: 2;
}

.testimonial-item.active:hover {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
}

.testimonial-item.prev {
  transform: translateX(-60px);
  opacity: 0;
}

/* Stars na avaliação */
.testimonial-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 18px;
  align-items: center;
  flex-shrink: 0;
}

.testimonial-stars .fa-star {
  color: #ffc107;
  font-size: 16px;
  filter: drop-shadow(0 0 3px rgba(255, 193, 7, 0.3));
}

/* Texto do depoimento - CORRIGIDO OVERFLOW */
.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 500;
  max-height: none;
  overflow: visible;
  display: block;
  letter-spacing: 0.3px;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Nome do avaliador */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5c00 0%, #ff7a33 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 19px;
  box-shadow: 0 4px 12px rgba(255, 92, 0, 0.3);
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.testimonial-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.testimonial-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  font-weight: 500;
}

/* Navigation Dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  max-width: 100%;
  flex-wrap: nowrap;
  padding: 0 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-dots::-webkit-scrollbar {
  display: none;
}

.dot {
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  flex-shrink: 0;
}

.dot.active {
  background: #ff5c00;
  transform: scale(1.5);
  box-shadow: 0 0 8px rgba(255, 92, 0, 0.6);
}

.dot:hover {
  background: rgba(255, 92, 0, 0.7);
  transform: scale(1.2);
}

/* Arrow Navigation */
.testimonials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 92, 0, 0.12);
  border: 1.5px solid rgba(255, 92, 0, 0.3);
  color: #ff5c00;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(5px);
}

.testimonials-arrow:hover {
  background: rgba(255, 92, 0, 0.25);
  border-color: #ff5c00;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 16px rgba(255, 92, 0, 0.4);
}

.testimonials-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.testimonials-arrow.prev {
  left: -60px;
}

.testimonials-arrow.next {
  right: -60px;
}

.testimonials-arrow i {
  font-size: 17px;
  font-weight: 700;
}

/* ========== RESPONSIVIDADE CORRIGIDA ========== */

/* Desktop 1920x1080: base (já aplicado acima) */

/* Desktop 1400px - 1368x768 e 1360x760 - CORRIGIDO */
@media (max-width: 1400px) {
  .testimonials-container {
    max-width: 900px;
    padding: 0 32px;
  }

  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-header {
    margin-bottom: 50px;
  }

  .testimonials-title {
    font-size: 2.5rem;
  }

  .testimonials-carousel {
    min-height: 300px;
  }

  .testimonial-item {
    min-height: 300px;
    padding: 45px 50px;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.65;
  }

  .testimonials-arrow.prev {
    left: -50px;
  }

  .testimonials-arrow.next {
    right: -50px;
  }

  .google-rating-badge {
    padding: 12px 28px;
  }

  .rating-score {
    font-size: 22px;
  }

  .testimonials-dots {
    margin-top: 36px;
  }

  .dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
  }
}

/* Desktop 1200px - Tablet landscape */
@media (max-width: 1200px) {
  .testimonials-container {
    max-width: 800px;
    padding: 0 24px;
  }

  .testimonials-section {
    padding: 70px 0;
  }

  .testimonials-header {
    margin-bottom: 45px;
  }

  .testimonials-title {
    font-size: 2.2rem;
  }

  .testimonials-carousel {
    min-height: 280px;
  }

  .testimonial-item {
    min-height: 280px;
    padding: 40px 44px;
  }

  .testimonial-text {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .testimonial-stars .fa-star {
    font-size: 15px;
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 18px;
  }

  .testimonial-info h4 {
    font-size: 15px;
  }

  .testimonials-arrow {
    width: 42px;
    height: 42px;
  }

  .testimonials-arrow.prev {
    left: -24px;
  }

  .testimonials-arrow.next {
    right: -24px;
  }

  .testimonials-arrow i {
    font-size: 16px;
  }

  .google-rating-badge {
    padding: 11px 24px;
    gap: 14px;
  }

  .rating-score {
    font-size: 20px;
  }

  .testimonials-dots {
    margin-top: 32px;
  }
}

/* Tablet portrait 768px */
@media (max-width: 768px) {
  .testimonials-container {
    max-width: 100%;
    padding: 0 20px;
  }

  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-label {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .testimonials-title {
    font-size: 1.9rem;
    margin-bottom: 20px;
  }

  .testimonials-carousel {
    min-height: 260px;
  }

  .testimonial-item {
    min-height: 260px;
    padding: 36px 32px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .testimonial-stars {
    margin-bottom: 14px;
  }

  .testimonial-stars .fa-star {
    font-size: 14px;
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 16px;
  }

  .testimonial-author {
    gap: 12px;
  }

  .testimonial-info h4 {
    font-size: 14px;
  }

  .testimonial-info p {
    font-size: 11px;
  }

  .testimonials-arrow {
    width: 40px;
    height: 40px;
  }

  .testimonials-arrow.prev {
    left: -20px;
  }

  .testimonials-arrow.next {
    right: -20px;
  }

  .testimonials-arrow i {
    font-size: 15px;
  }

  .google-rating-badge {
    padding: 10px 20px;
    gap: 10px;
  }

  .google-rating-logo {
    font-size: 11px;
  }

  .rating-score {
    font-size: 18px;
  }

  .rating-stars .fa-star {
    font-size: 12px;
  }

  .testimonials-dots {
    margin-top: 28px;
    gap: 5px;
  }

  .dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
  }

  .dot.active {
    transform: scale(1.4);
  }
}

/* Mobile 480px */
@media (max-width: 480px) {
  .testimonials-container {
    padding: 0 16px;
  }

  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-header {
    margin-bottom: 32px;
  }

  .testimonials-label {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .testimonials-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .testimonials-carousel {
    min-height: 240px;
  }

  .testimonial-item {
    min-height: 240px;
    padding: 30px 24px;
  }

  .testimonial-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .testimonial-stars {
    margin-bottom: 12px;
  }

  .testimonial-stars .fa-star {
    font-size: 13px;
  }

  .testimonial-author {
    gap: 10px;
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 15px;
  }

  .testimonial-info h4 {
    font-size: 13px;
  }

  .testimonial-info p {
    font-size: 10px;
  }

  .testimonials-arrow {
    width: 36px;
    height: 36px;
  }

  .testimonials-arrow.prev {
    left: -18px;
  }

  .testimonials-arrow.next {
    right: -18px;
  }

  .testimonials-arrow i {
    font-size: 14px;
  }

  .google-rating-badge {
    padding: 8px 16px;
    font-size: 10px;
  }

  .google-rating-logo {
    font-size: 9px;
  }

  .rating-score {
    font-size: 16px;
  }

  .rating-stars .fa-star {
    font-size: 11px;
  }

  .testimonials-dots {
    margin-top: 24px;
    gap: 4px;
  }

  .dot {
    width: 5px;
    height: 5px;
    min-width: 5px;
  }

  .dot.active {
    transform: scale(1.5);
  }
}

/* Mobile pequeno 375px */
@media (max-width: 375px) {
  .testimonials-container {
    padding: 0 14px;
  }

  .testimonials-section {
    padding: 45px 0;
  }

  .testimonials-header {
    margin-bottom: 28px;
  }

  .testimonials-title {
    font-size: 1.4rem;
  }

  .testimonials-carousel {
    min-height: 220px;
  }

  .testimonial-item {
    min-height: 220px;
    padding: 26px 20px;
  }

  .testimonial-text {
    font-size: 12px;
    line-height: 1.55;
  }

  .testimonial-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 14px;
  }

  .testimonial-info h4 {
    font-size: 12px;
  }

  .testimonial-info p {
    font-size: 9px;
  }

  .testimonials-arrow {
    width: 34px;
    height: 34px;
  }

  .testimonials-arrow.prev {
    left: -17px;
  }

  .testimonials-arrow.next {
    right: -17px;
  }

  .testimonials-dots {
    gap: 3px;
    margin-top: 20px;
  }

  .dot {
    width: 5px;
    height: 5px;
    min-width: 5px;
  }
}

/* ========== RESPONSIVIDADE OTIMIZADA ========== */

/* Desktop 1920x1080: base (já aplicado acima) */

/* Desktop 1400px - 1368x768 e 1360x760 */
@media (max-width: 1400px) {
  .testimonials-container {
    padding: 0 28px;
  }

  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-header {
    margin-bottom: 60px;
  }

  .testimonials-title {
    font-size: 2.8rem;
    margin-bottom: 24px;
  }

  .testimonials-carousel {
    padding: 60px 52px;
    min-height: 350px;
  }

  .testimonial-item {
    padding: 60px 52px;
  }

  .testimonial-text {
    font-size: 17px;
    max-height: 120px;
  }

  .testimonials-arrow.prev {
    left: 20px;
  }

  .testimonials-arrow.next {
    right: 20px;
  }

  .google-rating-badge {
    padding: 14px 32px;
  }

  .rating-score {
    font-size: 24px;
  }

  .testimonials-dots {
    margin-top: 40px;
    gap: 7px;
  }

  .dot {
    width: 7px;
    height: 7px;
  }
}

/* Desktop 1200px - Tablet landscape */
@media (max-width: 1200px) {
  .testimonials-container {
    max-width: 950px;
    padding: 0 24px;
  }

  .testimonials-section {
    padding: 70px 0;
  }

  .testimonials-header {
    margin-bottom: 50px;
  }

  .testimonials-label {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .testimonials-title {
    font-size: 2.4rem;
    margin-bottom: 22px;
  }

  .testimonials-carousel {
    padding: 50px 44px;
    min-height: 320px;
  }

  .testimonial-item {
    padding: 50px 44px;
  }

  .testimonial-text {
    font-size: 16px;
    margin-bottom: 24px;
    max-height: 110px;
  }

  .testimonial-stars .fa-star {
    font-size: 16px;
  }

  .testimonial-avatar {
    width: 52px;
    height: 52px;
    font-size: 19px;
  }

  .testimonial-info h4 {
    font-size: 15px;
  }

  .testimonial-info p {
    font-size: 11px;
  }

  .testimonials-arrow {
    width: 44px;
    height: 44px;
  }

  .testimonials-arrow.prev {
    left: 16px;
  }

  .testimonials-arrow.next {
    right: 16px;
  }

  .testimonials-arrow i {
    font-size: 17px;
  }

  .google-rating-badge {
    padding: 12px 28px;
    gap: 14px;
  }

  .rating-score {
    font-size: 22px;
  }

  .testimonials-dots {
    margin-top: 36px;
    gap: 6px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }
}

/* Tablet portrait 768px */
@media (max-width: 768px) {
  .testimonials-container {
    max-width: 100%;
    padding: 0 20px;
  }

  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-label {
    font-size: 9px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .testimonials-title {
    font-size: 2.1rem;
    margin-bottom: 18px;
    line-height: 1.2;
  }

  .testimonials-carousel {
    padding: 40px 32px;
    min-height: 300px;
  }

  .testimonial-item {
    padding: 40px 32px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
    max-height: 100px;
  }

  .testimonial-stars {
    margin-bottom: 16px;
  }

  .testimonial-stars .fa-star {
    font-size: 15px;
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
    font-size: 17px;
  }

  .testimonial-info h4 {
    font-size: 14px;
  }

  .testimonial-info p {
    font-size: 11px;
  }

  .testimonials-arrow {
    width: 40px;
    height: 40px;
  }

  .testimonials-arrow.prev {
    left: 12px;
  }

  .testimonials-arrow.next {
    right: 12px;
  }

  .testimonials-arrow i {
    font-size: 16px;
  }

  .google-rating-badge {
    padding: 10px 24px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .google-rating-badge-content {
    gap: 10px;
  }

  .google-rating-logo {
    font-size: 11px;
  }

  .rating-score {
    font-size: 20px;
  }

  .rating-stars .fa-star {
    font-size: 13px;
  }

  .testimonials-dots {
    margin-top: 32px;
    gap: 5px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .dot.active {
    transform: scale(1.3);
  }
}

/* Mobile landscape 667px */
@media (max-width: 667px) {
  .testimonials-container {
    padding: 0 18px;
  }

  .testimonials-title {
    font-size: 1.9rem;
  }

  .testimonials-carousel {
    padding: 36px 28px;
    min-height: 280px;
  }

  .testimonial-item {
    padding: 36px 28px;
  }

  .testimonial-text {
    font-size: 14px;
    max-height: 92px;
  }

  .testimonial-author {
    gap: 12px;
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .testimonials-dots {
    gap: 4px;
  }
}

/* Mobile 480px */
@media (max-width: 480px) {
  .testimonials-container {
    padding: 0 16px;
  }

  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-header {
    margin-bottom: 32px;
  }

  .testimonials-label {
    font-size: 8px;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
  }

  .testimonials-title {
    font-size: 1.65rem;
    margin-bottom: 16px;
    font-weight: 800;
  }

  .testimonials-carousel {
    padding: 32px 24px;
    min-height: 260px;
  }

  .testimonial-item {
    padding: 32px 24px;
  }

  .testimonial-text {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 18px;
    max-height: 85px;
  }

  .testimonial-stars {
    margin-bottom: 12px;
  }

  .testimonial-stars .fa-star {
    font-size: 14px;
  }

  .testimonial-author {
    gap: 10px;
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
    font-size: 15px;
    min-width: 40px;
  }

  .testimonial-info h4 {
    font-size: 13px;
    font-weight: 700;
  }

  .testimonial-info p {
    font-size: 10px;
  }

  .testimonials-arrow {
    width: 36px;
    height: 36px;
  }

  .testimonials-arrow.prev {
    left: 10px;
  }

  .testimonials-arrow.next {
    right: 10px;
  }

  .testimonials-arrow i {
    font-size: 14px;
  }

  .google-rating-badge {
    padding: 8px 18px;
    font-size: 10px;
  }

  .google-rating-logo {
    font-size: 9px;
  }

  .rating-score {
    font-size: 18px;
  }

  .rating-stars .fa-star {
    font-size: 12px;
  }

  .testimonials-dots {
    margin-top: 28px;
    gap: 4px;
  }

  .dot {
    width: 5px;
    height: 5px;
  }

  .dot.active {
    transform: scale(1.4);
  }
}

/* Mobile pequeno 414px - iPhone XR, etc */
@media (max-width: 414px) {
  .testimonials-container {
    padding: 0 14px;
  }

  .testimonials-section {
    padding: 45px 0;
  }

  .testimonials-header {
    margin-bottom: 28px;
  }

  .testimonials-title {
    font-size: 1.5rem;
    margin-bottom: 14px;
  }

  .testimonials-carousel {
    padding: 28px 20px;
    min-height: 240px;
  }

  .testimonial-item {
    padding: 28px 20px;
  }

  .testimonial-text {
    font-size: 12px;
    line-height: 1.65;
    margin-bottom: 16px;
    max-height: 78px;
  }

  .testimonial-avatar {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .testimonial-info h4 {
    font-size: 12px;
  }

  .testimonials-dots {
    gap: 3px;
    margin-top: 24px;
  }
}

/* Mobile muito pequeno 375px - iPhone SE */
@media (max-width: 375px) {
  .testimonials-container {
    padding: 0 12px;
  }

  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-header {
    margin-bottom: 24px;
  }

  .testimonials-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }

  .testimonials-carousel {
    padding: 24px 18px;
    min-height: 220px;
  }

  .testimonial-item {
    padding: 24px 18px;
  }

  .testimonial-text {
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 14px;
    max-height: 70px;
    -webkit-line-clamp: 3;
  }

  .testimonial-stars .fa-star {
    font-size: 13px;
  }

  .testimonial-avatar {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .testimonial-info h4 {
    font-size: 11px;
  }

  .testimonial-info p {
    font-size: 9px;
  }

  .testimonials-arrow {
    width: 32px;
    height: 32px;
  }

  .testimonials-arrow.prev {
    left: 8px;
  }

  .testimonials-arrow.next {
    right: 8px;
  }

  .testimonials-arrow i {
    font-size: 12px;
  }

  .google-rating-badge {
    padding: 6px 14px;
    gap: 8px;
  }

  .rating-score {
    font-size: 16px;
  }

  .testimonials-dots {
    gap: 3px;
    margin-top: 20px;
  }

  .dot {
    width: 5px;
    height: 5px;
  }
}
