@charset "UTF-8";
:root {
  --main-blue: #002B9B;
  --main-green: #167523;
  --main-purple: #7D287D;
  --main-gray: #F3F3F3;
  --dark-Gray:#333;
  --main-orange:#FF5C00;
  --main-yellow:#FFB800;
}

.color-white {
  color: #fff;
}

/* Texto */
.color-light-gray {
  color: #F3F3F3;
}

.color-blue {
  color: var(--main-blue);
}

.color-green {
  color: var(--main-green);
}

.color-purple {
  color: var(--main-purple);
}

.color-gray {
  color: var(--dark-gray);
}

.color-orange {
  color: var(--main-orange);
}

.color-yellow {
  color: var(--main-yellow);
}

/* Fundo */
.bg-yellow {
  background-color: var(--main-yellow);
}

.bg-blue {
  background-color: var(--main-blue);
}

.bg-green {
  background-color: var(--main-green);
}

.bg-purple {
  background-color: var(--main-purple);
}

.bg-gray {
  background-color: var(--main-gray);
}

.bg-orange {
  background-color: var(--main-orange);
}

.py-7 {
  padding: 70px 0;
}

.size-f-48 {
  font-size: 32px;
}

.size-f-42 {
  font-size: 32px;
}

.size-f-36 {
  font-size: 26px;
}

.size-f-31 {
  font-size: 26px;
}

.size-f-18 {
  font-size: 18px;
}

.size-f-16 {
  font-size: 16px;
}

@font-face {
  font-family: 'inter';
  src: url(../fonts/Inter-VariableFont_opsz\,wght.ttf);
}

@font-face {
  font-family: 'Archivo';
  src: url(../fonts/Archivo-VariableFont_wdth,wght.ttf);
  font-weight: bold;
}

html,
body {
  position: relative;
  height: 100%;
}

h1, h2, h3, h4 {
  font-family: 'Archivo';
}

a {
  text-decoration: none;
  color: inherit;
}

ul, li {
  list-style: none;
}

.font-archivo {
  font-family: 'Archivo';
}

.font-inter {
  font-family: 'inter';
}

html {
  font-family: 'inter';
}

p {
  color: var(--dark-Gray);
  font-family: 'inter';
}

.btn-custom {
  text-transform: capitalize;
  background: transparent;
  border-radius: 5px;
  border: 2px solid;
  padding: 10px 25px;
  font-weight: bold;
}

.btn-custom a {
  display: flex;
  align-items: center;
  color: inherit;
}

.btn-icon {
  border-radius: 50%;
  padding: 13px;
  color: white;
  font-size: 23px;
  margin-left: 25px;
  text-align: center;
}

.btn-blue {
  color: var(--main-blue);
  border-color: var(--main-blue);
  transition: background 320ms ease, color 320ms ease border-color 320ms ease;
  box-shadow: none;
}

.btn-blue .btn-icon {
  background: var(--main-blue);
  transition: background 320ms ease , color 320ms ease;
}

.btn-blue:hover {
  background: var(--main-blue);
  color: #fff;
  border-color: #fff;
}

.btn-blue:hover .btn-icon {
  background: #fff;
  color: var(--main-blue);
}

.btn-purple {
  color: var(--main-purple);
  border-color: var(--main-purple);
  transition: background 320ms ease, color 320ms ease border-color 320ms ease;
  box-shadow: none;
}

.btn-purple .btn-icon {
  background: var(--main-purple);
  transition: background 320ms ease , color 320ms ease;
}

.btn-purple:hover {
  background: var(--main-purple);
  color: #fff;
  border-color: #fff;
}

.btn-purple:hover .btn-icon {
  background: #fff;
  color: var(--main-purple);
}

.btn-white {
  border-radius: 15px;
  color: var(--main-blue);
  background-color: #fff;
  background: #fff;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 320ms ease, color 320ms ease, border-color 320ms ease;
}

.btn-white .btn-icon {
  background: var(--main-blue);
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  transition: background 320ms ease, color 320ms ease;
}

.btn-white:hover {
  background: var(--main-purple);
  border-color: var(--main-purple);
  color: #fff;
}

.btn-white:hover a {
  color: #fff;
}

.btn-white:hover .btn-icon {
  background: #fff;
  color: var(--main-purple);
}

.navbar {
  box-shadow: none;
}

.swiper {
  width: 100%;
  max-height: 800px;
}

.menu-item {
  padding-bottom: 0;
}

.menu-item a {
  font-weight: bold;
}

.offcanvas-menu .menu-list li a {
  font-size: 28px !important;
  padding-bottom: 0 !important;
}

.navbar {
  background-color: #fff;
}

.logo {
  height: 40px;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}

.hamburger-btn .hamburger-icon {
  z-index: 9999;
  color: #fff;
  background: var(--main-blue);
  padding: 8px;
  border-radius: 50%;
  transition: background 350ms ease;
}

.hamburger-btn .hamburger-icon:hover {
  background: var(--main-purple);
}

.close-menu {
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  transition: background 350ms ease;
}

.close-menu:hover {
  background: var(--main-yellow);
}

.offcanvas-menu {
  position: fixed;
  z-index: 10;
  top: 0;
  left: -110%;
  width: 100vw;
  height: 100%;
  background-color: var(--main-blue);
  color: #fff;
  transition: left 0.3s ease;
  padding-top: 60px;
}

.offcanvas-menu .menu-list {
  list-style: none;
  padding: 0;
}

.offcanvas-menu .menu-list li {
  padding: 1rem;
  text-align: right;
}

.offcanvas-menu .menu-list li a {
  color: #fff;
  text-decoration: none;
  transition: color 320ms ease;
}

.offcanvas-menu .menu-list li a:hover {
  color: #FFB800;
}

.offcanvas-menu.active {
  left: 0;
}

.menu-social i {
  transition: color 350ms ease;
}

.menu-social i:hover {
  color: var(--main-yellow);
}

.video-content {
  position: relative;
}

.video-content video {
  border-radius: 0 0 30px 0;
  height: 396px;
  object-fit: cover;
  position: relative;
  z-index: 4;
}

.video-content .btn-custom {
  position: absolute;
  z-index: 5;
  right: 20px;
  top: 20px;
}

.whatsapp-content {
  z-index: 6;
  right: 10px;
  bottom: 10px;
  position: fixed;
  background: green;
  padding: 25px;
  border-radius: 50%;
  width: 70px;
  text-align: center;
  height: 70px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.whatsapp-content a {
  font-size: 32px;
  color: white;
}

.mointain-bg {
  position: relative;
}

.mointain-bg:after {
  position: absolute;
  z-index: 0;
  content: '';
  background-image: url("../img/como-funcioa-background.png");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  top: 36%;
  right: 0;
  height: 100%;
}

.howItWorks-section {
  background-color: var(--main-gray);
}

.elipse-slide-counter {
  border: 7px solid;
  border-radius: 50%;
  padding: 15px;
  width: 77px;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right-color: transparent;
}

.howWorks-slide .swiper-slide {
  transition: transform 350ms ease;
  border-radius: 25px;
}

.howWorks-slide .swiper-slide:hover {
  transform: scale(0.9);
}

.howWorks-slide .swiper-slide:nth-child(even) {
  background: var(--main-purple);
}

.howWorks-slide .swiper-slide:nth-child(odd) {
  background: var(--main-blue);
}

.howWorks-slide .swiper-pagination {
  position: relative !important;
  bottom: 0;
  margin-top: 30px;
}

.howWorks-slide .swiper-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
}

.howWorks-slide .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--main-blue);
}

.navigation-content {
  transform: translate(-10px, 0);
  margin-bottom: 25px;
}

.howWorks-slide .navigation-content .material-symbols-outlined {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 52px;
  height: 52px;
}

.howWorks-slide .navigation-content .swiper-button-next, .howWorks-slide .navigation-content .swiper-button-prev {
  width: auto;
  position: relative;
}

.howWorks-slide .navigation-content .swiper-button-next:after, .howWorks-slide .navigation-content .swiper-button-prev:after {
  display: none;
}

.howWorks-slide .navigation-content .swiper-button-next:hover .bg-blue, .howWorks-slide .navigation-content .swiper-button-prev:hover .bg-blue {
  background: var(--main-purple);
}

.howWorks-slide .navigation-content .swiper-button-next {
  right: 0;
}

.howWorks-slide .navigation-content .swiper-button-prev {
  margin-right: 20px;
  transform: rotateY(-180deg);
}

.testemonial-section {
  box-shadow: inset 0px -33px 44px -3px rgba(125, 40, 125, 0.1);
}

.advantages-card {
  max-width: 100%;
}

.advantages-card .card-title {
  max-width: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 11px;
}

#advantages-slide .splide__pagination {
  position: relative;
  margin-top: 25px;
}

#advantages-slide .splide__pagination .splide__pagination__page {
  background: #D9D9D9;
  height: 18px;
  width: 18px;
}

#advantages-slide .splide__pagination .is-active {
  background: var(--main-orange);
  transform: scale(1);
}

.depoiments-slide .swiper-slide {
  height: 100%;
}

.footer-form .form-control {
  background: transparent;
  padding: 15px 30px 15px;
  border: 1px solid #fff;
  border-radius: 15px;
  color: #fff;
}

.footer-form .form-control::placeholder {
  color: #fff !important;
}

.footer-icon {
  color: var(--main-blue);
  transition: color 350ms ease;
}

.footer-icon:hoveer {
  color: var(--main-purple);
}

#splide {
  background: red;
}

#splide .splide__slide {
  background: #fff;
  padding: 20px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  /* Espaço entre os itens */
}

.grid-item {
  background-color: white;
  border: 1px solid #6a1b9a;
  padding: 16px;
  color: #333;
  box-sizing: border-box;
}

.bg-light-gray {
  background-color: #f8f9fa;
  /* Um tom claro de cinza */
}

.footer-logo {
  max-width: 210px;
  /* Ajuste conforme necessário */
}

.footer-logo, .text-muted {
  color: #6c757d !important;
  /* Tom neutro para o texto */
}

hr.text-muted {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  /* Cor da linha divisória */
}

.teste {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-height: 700px;
  gap: 0;
  align-content: flex-start;
  gap: 15px;
}

.teste .teste-card {
  max-width: 100%;
}

.card-header img {
  width: 60px;
}

.card-header .bi-star-fill {
  color: #FFB800;
}

.testemonial-slide .depoiment-card {
  opacity: 1 !important;
  width: calc(100% - 15px);
  height: calc(100% - 20px);
}

.testemonial-slide .swiper-pagination-bullet {
  background: #D9D9D9;
  height: 18px;
  width: 18px;
}

.testemonial-slide .swiper-pagination-bullet-active {
  background: var(--main-yellow);
}

.privacy-link {
  transition: color 320ms ease;
}

.privacy-link:hover {
  color: var(--main-yellow);
}

@media screen and (min-width: 768px) {
  .py-7 {
    padding: 130px 0;
  }
  .size-f-48 {
    font-size: 48px;
  }
  .size-f-42 {
    font-size: 42px;
  }
  .size-f-36 {
    font-size: 36px;
  }
  .size-f-31 {
    font-size: 31px;
  }
  .size-f-22 {
    font-size: 22px;
  }
  .size-f-18 {
    font-size: 18px;
  }
  .offcanvas-menu {
    width: 50vw;
  }
  .video-content {
    max-height: 730px;
    height: 100%;
  }
  .video-content video {
    height: 100%;
  }
  .advantages-desktop {
    gap: 12px;
  }
  #depoimentos {
    position: relative;
  }
  #depoimentos:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    box-shadow: inset 0 -180px 95px -85px var(--main-purple);
  }
  #testimonial-carousel-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* ou ajuste para o número de colunas desejado */
    gap: 15px;
  }
  #testimonial-carousel {
    display: flex !important;
  }
  #testimonial-carousel .splide__slide__row {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 600px;
  }
  #testimonial-carousel .splide__list {
    display: flex !important;
    flex-wrap: wrap;
    flex-direction: column;
  }
  #testimonial-carousel .splide__slide {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 600px;
    padding: 10px;
    flex-grow: 0;
  }
  .splide__arrow--prev, .splide__arrow--next {
    position: relative !important;
  }
  .splide__arrow--prev {
    top: auto !important;
  }
  .splide__arrow--next {
    top: 20px !important;
  }
}

@media screen and (min-width: 996px) {
  .container {
    max-width: 1360px;
  }
  .teste {
    overflow-y: hidden;
    overflow: hidden;
    flex-direction: column;
  }
  .depositions-height {
    max-height: 900px;
    overflow-y: scroll;
    padding-top: 20px;
    overflow-x: hidden;
  }
  .teste-card {
    max-width: 30%;
  }
  .advantages-card {
    max-width: 330px;
    cursor: pointer;
    transition: transform 350ms ease;
  }
  .advantages-card:hover {
    transform: scale(0.9);
  }
  .advantages-card .card-title {
    max-width: 150px;
  }
}

#testimonial-carousel {
  max-width: 100%;
}

.splide__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
  max-height: 700px;
}

.splide__slide {
  display: flex;
  flex-direction: column;
}

.card{
	word-wrap: normal;
}
