/* START Banner Slider */
.banner-slider {
  width: 100%;
  max-width: var(--container);
  height: 540px;
}

.banner-slider .swiper-navigation {
  color: var(--color-dark);
}

.banner-slider .swiper-navigation.swiper-button-prev {
  left: 0;
}

.banner-slider .swiper-navigation.swiper-button-next {
  right: 0;
}

.banner-slider .swiper-navigation::after {
  font-size: 20px;
  font-weight: 700;
}

.banner-slider .swiper-pagination .swiper-pagination-bullet {
  width: 60px;
  border-radius: 0;
  height: 4px;
  margin: 0;
  background-color: var(--color-primary);
  opacity: 0.35;
}

.banner-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  height: 8px;
}

.banner-slider .swiper-wrapper .banner-slider-content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
}

.banner-slider .banner-slider-content {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  height: 100%;
  gap: 16px;
  padding: 32px;
  max-width: 50%;
  z-index: 1;
  color: var(--color-primary-dark);
}

.banner-slider .banner-slider-content.banner-slider-content-left {
  padding-right: 72px;
}

.banner-slider .banner-slider-content h1,
.banner-slider .banner-slider-content h2 {
  color: var(--color-dark);
  font-size: 32px;
  font-weight: 700;
}

.banner-slider .banner-slider-content .banner-slider-content-featured {
  color: var(--color-primary);
  display: block;
}

.banner-slider .banner-slider-content.banner-slider-content-left {
  margin-right: auto;
}

.banner-slider .banner-slider-content.banner-slider-content-right {
  margin-left: auto;
}

.banner-slider .banner-slider-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-slider .banner-slider-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}

@media only screen and (max-width: 800px) {
  .banner-slider .swiper-wrapper .banner-slider-content-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .banner-slider .banner-slider-content {
    max-width: 100%;
  }

  .banner-slider .banner-slider-content .banner-slider-cta {
    width: 100%;
  }

  .banner-slider .banner-slider-content.banner-slider-content-left,
  .banner-slider .banner-slider-content.banner-slider-content-right {
    margin: 0 auto;
    padding: 32px;
  }

  .banner-slider .banner-slider-content h1,
  .banner-slider .banner-slider-content h2 {
    font-size: 24px;
  }

  .banner-slider .banner-slider-content p {
    font-size: 14px;
  }
}
/* END Banner Slider */

/* START Destaque Section */
.section-destaques {
  background-color: var(--color-white);
  padding: 96px 0;
}

.section-destaques .destaques-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-destaques .destaques-heading > h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-dark);
}

.section-destaques .destaques-heading > .destaque-cta {
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-dark);
}

.section-destaques .destaque-cta.destaque-cta-mobile {
  display: none;
}

.section-destaques .destaques-heading > .destaque-cta:hover {
  text-decoration: underline;
}

.section-destaques > .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media only screen and (max-width: 768px) {
  .section-destaques .destaque-cta-desktop {
    display: none !important;
  }

  .section-destaques .destaque-cta-mobile {
    display: flex !important;
    width: 100%;
  }
}

/* END Destaque Section */

/* START Diferenciais */
.diferenciais {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: 20px 0;
}

.diferenciais .container {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

@media only screen and (max-width: 900px) {
  .diferenciais .container {
    justify-content: flex-start;
  }
}

.diferenciais .diferencial-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 300;
}
/* END Diferenciais  */

/* START Section Totem */
.section-totem {
  padding: 96px 0;
}

.section-totem .container {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 32px;
}

.section-totem .totem-content {
  display: flex;
  flex-flow: column nowrap;
  gap: 16px;
  width: 100%;
  max-width: 50%;
}

.section-totem .totem-content .totem-content-heading {
  font-size: 28px;
  font-weight: 700;
}

.section-totem .totem-content .totem-content-text {
  display: flex;
  flex-flow: column nowrap;
  gap: 16px;
}

.section-totem .totem-content .totem-content-text p {
  font-size: 14px;
  color: var(--color-primary-dark);
}

.section-totem .totem-slide {
  width: 100%;
  max-width: 50%;
}

.section-totem .totem-slide .totem-slide-show .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.section-totem .totem-slide .totem-slide-show .swiper-slide img {
  width: 100%;
  max-width: 400px;
  height: 100%;
  object-fit: contain;
  border: 4px solid var(--color-gray-light);
}

@media only screen and (max-width: 768px) {
  .section-totem .container {
    flex-flow: column nowrap;
  }

  .section-totem .totem-content button {
    width: 100%;
  }

  .section-totem .totem-content,
  .section-totem .totem-slide {
    max-width: 100%;
  }
}
/* END Section Totem */

/* START Section Vantagens */
.section-vantagens {
  background-color: var(--color-gray-light);
}

.section-vantagens .container {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-height: fit-content;
}

.section-vantagens .vantagens-img,
.section-vantagens .vantagens-content {
  width: 100%;
  max-width: 50%;
}

.section-vantagens .vantagens-content {
  display: flex;
  flex-flow: column nowrap;
  gap: 16px;
}

.section-vantagens .vantagens-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
}

.section-vantagens .vantagens-content p {
  color: var(--color-primary-dark);
}

.section-vantagens .vantagens-img {
  mix-blend-mode: multiply;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media only screen and (max-width: 1000px) {
  .section-vantagens .container {
    flex-direction: column;
  }
  .section-vantagens .vantagens-img {
    display: none;
  }
  .section-vantagens .vantagens-content {
    max-width: 100%;
  }

  .section-vantagens .vantagens-content {
    padding: 44px 0;
  }
  .section-vantagens .vantagens-content a {
    width: 100%;
  }
}

/* START Segmentos */
.section-segmentos {
  padding: 72px 0;
}

.section-segmentos .container {
  display: flex;
  flex-flow: column nowrap;
  gap: 32px;
}

.section-segmentos .segmentos-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-segmentos .segmentos-heading .segmentos-heading-subtitle {
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-segmentos .segmentos-heading .segmentos-heading-subtitle span {
  font-size: 14px;
  color: var(--color-primary-dark);
  white-space: nowrap;
}

.section-segmentos .segmentos-heading .segmentos-heading-subtitle .divider {
  flex: 1;
  height: 1px;
  background-color: var(--color-primary);
}

.section-segmentos .segmentos-heading .segmentos-heading-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
}

.section-segmentos .segmentos-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.section-segmentos .segmentos-wrapper .segmento-card {
  flex: 0 1 calc((100% - 64px) / 3);
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--color-white);
  padding: 20px;
}

@media only screen and (max-width: 1024px) {
  .section-segmentos .segmentos-wrapper .segmento-card {
    flex: 0 1 calc((100% - 32px) / 2);
  }
}

@media only screen and (max-width: 640px) {
  .section-segmentos .segmentos-wrapper .segmento-card {
    flex: 0 1 100%;
  }
}

.section-segmentos .segmentos-wrapper .segmento-card > h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-segmentos .segmentos-wrapper .segmento-card > p {
  font-size: 14px;
  font-weight: 400;
}

.section-segmentos .segmento-card .background-segmento {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
/* END Segmentos */

/* START FAQ */
.section-faq {
  padding: 72px 0;
}

.section-faq .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-faq .faq-heading {
  display: flex;
  flex-flow: row nowrap;
  gap: 20px;
  align-items: center;
}

.section-faq .faq-heading > .divider {
  flex: 1;
  height: 1px;
  background-color: var(--color-primary);
}

.section-faq .faq-heading > h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
}

.section-faq .faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.section-faq .faq-wrapper .faq-item {
  overflow: hidden;
}

.section-faq .faq-wrapper .faq-item .faq-item-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  cursor: pointer;
  background: white;
  width: 100%;
  position: relative;
  border-bottom: 1px solid var(--color-primary-light);
}

.section-faq .faq-wrapper .faq-item .faq-item-heading:hover {
  border-bottom: 2px solid var(--color-primary);
}

.section-faq .faq-wrapper .faq-item .faq-item-heading:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.section-faq .faq-wrapper .faq-item .faq-item-heading .faq-question {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
}

.section-faq .faq-wrapper .faq-item .faq-item-heading .faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.section-faq .faq-wrapper .faq-item .faq-item-heading[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.section-faq .faq-wrapper .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.section-faq .faq-wrapper .faq-item .faq-answer.active {
  max-height: 9999px;
}

.section-faq .faq-wrapper .faq-item .faq-answer p {
  padding: 12px;
  color: var(--color-primary-dark);
}
/* END FAQ */

/* START Modal */
#modal-video-totem-selfbr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
  animation: fadeIn 0.3s ease-out forwards;
}

#modal-video-totem-selfbr.modal-closing {
  animation: fadeOut 0.3s ease-in forwards;
}

#modal-video-totem-selfbr .modal-video-totem-selfbr-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: auto;
  aspect-ratio: 16 / 9;
  background-color: var(--color-dark);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  opacity: 0;
  animation: zoomIn 0.3s ease-out 0.1s forwards;
}

#modal-video-totem-selfbr.modal-closing .modal-video-totem-selfbr-wrapper {
  animation: zoomOut 0.2s ease-in forwards;
}

#modal-video-totem-selfbr .btn-close-modal-video {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: var(--border-radius-full);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: all 0.3s ease;
}

#modal-video-totem-selfbr .btn-close-modal-video:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

#modal-video-totem-selfbr .btn-close-modal-video:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media only screen and (max-width: 768px) {
  #modal-video-totem-selfbr {
    padding: 10px;
  }

  #modal-video-totem-selfbr .btn-close-modal-video {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
  }
}
/* END Modal */
