/* Animação underline no menu */
.menu-link-underline {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.menu-link-underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #0077ff;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
  transform-origin: left;
}

.menu-link-underline:hover::after {
  transform: scaleX(1);
}

/* Hover efeito na seção de contato */
.contact-hover {
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.contact-hover:hover {
  color: #fff !important;
  background: #25d366 !important;
  border-radius: 4px;
  box-shadow: 0 2px 8px #25d36633;
}

.contact-hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #25d366;
  opacity: 0;
  transition: opacity 0.2s;
}

.contact-hover:hover::after {
  opacity: 1;
}





/* Botão hamburguer */
.hamburger-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10001;
}

/* Exibir no mobile */
@media (max-width: 900px) {
  .hamburger-button {
    display: block;
    position: sticky;
  }

  .horizontal-menu {
    display: none !important;
  }
}

/* Portal do menu - animado */
.menu-portal {
  position: fixed;
  inset: 0;
  background-color: white;
  z-index: 10000;
  padding: 2rem;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.menu-portal.open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}


/* Conteúdo do menu */
.menu-content {
  max-width: 300px;
  margin: auto;
}

/* Botão de fechar */
.wixui-hamburger-close-button {
  font-size: 2rem;
  background: none;
  border: none;
  float: right;
  cursor: pointer;
}

/* Lista de links */
.menu-content nav ul {
  list-style: none;
  padding: 0;
}

.menu-content nav ul li {
  margin: 1rem 0;
}

.menu-content nav ul li a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #333;
}






.testimonial-section {
  background-color: #fff;
  padding: 4rem 2rem;
}

.testimonial-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.testimonial-card.active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-image img {
  max-width: 300px;
  height: auto;
  display: block;
}

.testimonial-content {
  flex: 1;
  min-width: 280px;
}

.testimonial-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #222;
}

.testimonial-author {
  display: block;
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #555;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffffcc;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.2rem 0.8rem;
  border-radius: 5px;
  color: #333;
  z-index: 10;
  transition: background 0.3s ease;
}

.arrow:hover {
  background: #eee;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-image img {
    margin: 0 auto;
  }

  .testimonial-content {
    padding: 1rem;
  }
}

.image-fit-height-wrapper,
.image-fit-height-container,
.image-fit-height,
.image-fit-height .h1DYhE,
.image-fit-height .QebvG3,
.image-fit-height wow-image,
.image-fit-height wow-image picture {
  height: fit-content !important;
  max-height: none !important;
  min-height: 0 !important;
  display: block !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  position: static !important;
  flex: unset !important;
}

.image-fit-height wow-image img {
  height: 200px !important;
  width: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}



















.testimonial-carousel-wrapper {
  width: 80vw !important;
  margin-bottom: 2rem !important;
}

.testimonial-carousel-track {
  display: flex !important;
  transition: transform 0.5s ease-in-out !important;
  width: 100% !important;
}

.testimonial-slide {
  min-width: 100% !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem !important;
  gap: 2rem !important;
}

/* setas */
.testimonial-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  background: none !important;
  border: none !important;
  font-size: 2rem !important;
  cursor: pointer !important;
  color: #333 !important;
}

.testimonial-arrow.left {
  left: 1rem !important;
}

.testimonial-arrow.right {
  right: 1rem !important;
}

/* mobile */
@media (max-width: 900px) {
  .testimonial-slide {
    gap: 1.5rem !important;
    padding: 1rem !important;
  }
}

