@charset "UTF-8";
.texto label {
  color: #82fc79;
  padding: 0 1.5em;
  font-weight: 600;
  cursor: pointer;
}

.texto label.ver-menos {
  padding: 0 10px !important;
}

.ia-lightbox-button {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(114, 255, 117, 0.8);
  color: #1B3738;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: 0.2s ease;
  border: 0px;
}

.ia-lightbox-button:hover {
  background: rgba(114, 255, 117, 0.8);
  color: #1B3738;
}

.ia-lightbox-button svg {
  flex-shrink: 0;
}

#box-ia p {
  color: #ffffff;
  font-size: 14px;
  margin-top: 20px;
}

.ba-wrap {
  height: 520px;
  touch-action: none; /* essencial */
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

/* camada do "depois" por cima, recortada */
.ba-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 50%); /* começa no meio */
  transition: clip-path 0.18s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  will-change: clip-path;
}

/* handle */
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  outline: none;
  cursor: ew-resize;
  transition: left 0.18s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.ba-line {
  position: absolute;
  left: -1px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.ba-knob {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(7px);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-auto-flow: column;
  place-content: center;
  gap: 10px;
  pointer-events: none; /* clique/drag pega no botão pai */
}

.ba-arrow {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid #fff;
  opacity: 0.95;
}

.ba-arrow.right {
  transform: rotate(180deg);
}

/* labels opcionais */
.ba-label {
  position: absolute;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font: 600 12px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing: 0.2px;
}

.ba-label.before {
  left: 12px;
}

.ba-label.after {
  right: 12px;
}

#box-ia .ia-gallery {
  position: relative;
}
#box-ia .ia-slide {
  position: relative;
}
#box-ia .imagelightbox-arrow {
  cursor: pointer;
  width: 42px;
  height: 42px;
  border: 0;
  padding: 0;
  background: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
}
#box-ia .imagelightbox-arrow:before {
  width: 42px;
  height: 42px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#box-ia .imagelightbox-arrow-left {
  left: 16px;
}
#box-ia .imagelightbox-arrow-left:before {
  background-image: url(../images/back.svg);
}
#box-ia .imagelightbox-arrow-right {
  right: 16px;
}
#box-ia .imagelightbox-arrow-right:before {
  background-image: url(../images/next.svg);
}
#box-ia .ia-gallery-prev,
#box-ia .ia-gallery-next {
  top: 65%;
  transform: translateY(-50%);
}

.ia-fullscreen-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.ia-fullscreen-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.ia-fullscreen-dialog {
  position: relative;
  z-index: 2;
  width: min(1440px, 100vw - 48px);
  height: calc(100vh - 48px);
  margin: 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ia-fullscreen-gallery {
  position: relative;
  width: 100%;
}
.ia-fullscreen-gallery .ba-wrap {
  height: min(82vh, 980px);
  border-radius: 18px;
}
.ia-fullscreen-gallery .imagelightbox-arrow {
  cursor: pointer;
  width: 42px;
  height: 42px;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 999px;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 7;
}
.ia-fullscreen-gallery .imagelightbox-arrow:before {
  width: 42px;
  height: 42px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.ia-fullscreen-gallery .imagelightbox-arrow-left {
  left: 16px;
}
.ia-fullscreen-gallery .imagelightbox-arrow-left:before {
  background-image: url(../images/back.svg);
}
.ia-fullscreen-gallery .imagelightbox-arrow-right {
  right: 16px;
}
.ia-fullscreen-gallery .imagelightbox-arrow-right:before {
  background-image: url(../images/next.svg);
}

.ia-fullscreen-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  z-index: 8;
}
.ia-fullscreen-close:before, .ia-fullscreen-close:after {
  content: "";
  position: absolute;
  left: 25px;
  top: 14px;
  width: 2px;
  height: 24px;
  background: #fff;
}
.ia-fullscreen-close:before {
  transform: rotate(45deg);
}
.ia-fullscreen-close:after {
  transform: rotate(-45deg);
}

.ia-fullscreen-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  #box-ia p {
    margin-top: 32px;
    padding-bottom: 30px;
  }
  .ba-wrap {
    width: auto;
    height: 250px;
  }
  .ba-knob {
    width: 48px;
    height: 48px;
  }
  .ia-fullscreen-dialog {
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
    margin: 10px auto;
  }
  .ia-fullscreen-gallery .ba-wrap {
    height: calc(65vh - 120px);
  }
  .ia-fullscreen-gallery .imagelightbox-arrow {
    width: 42px;
    height: 42px;
    top: 116%;
  }
  .ia-fullscreen-gallery .imagelightbox-arrow:before {
    width: 42px;
    height: 42px;
    background-size: contain;
  }
  .ia-fullscreen-gallery .imagelightbox-arrow-left {
    left: 8px;
  }
  .ia-fullscreen-gallery .imagelightbox-arrow-right {
    right: 8px;
  }
  .ia-fullscreen-close {
    width: 44px;
    height: 44px;
  }
  .ia-fullscreen-close:before, .ia-fullscreen-close:after {
    left: 21px;
    top: 10px;
    height: 22px;
  }
  #box-ia .ia-gallery-prev,
  #box-ia .ia-gallery-next {
    top: 116%;
  }
  #box-ia .imagelightbox-arrow-left {
    left: 8px;
  }
  #box-ia .imagelightbox-arrow-right {
    right: 8px;
  }
}/*# sourceMappingURL=detalheIA.css.map */