/*
| -------------------------
|   Variable
| --------------------------
*/

:root {
    --white: #fff;
    --black: #000;
    --gray: #545454;

    --indigo-500: #4100e0;

    --blue-500: #284196;
    --blue-800: #0f227c;
    --blue-900: #131b3b;

    --pink-500: #d40e8c;
    --pink-800: #b1098b;
}

/*
| -------------------------
|   Global
| --------------------------
*/
html {
    overflow-x: hidden;
}
body {
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    line-height: 2.1rem;
    background: url(/images/bg-body.png?c5537ead42f26c1776e061f23e068b2c) no-repeat top center/cover;
}
a {
    color: var(--blue-500);
    text-decoration: none;
}
p,
ul,
ol {
    font-size: 16px;
    line-height: initial;
}

/*
| -------------------------
|   Geral
| --------------------------
*/
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.row .column {
    flex-grow: 1;
    flex-basis: 100%;
    margin-bottom: 24px;
}

/* Video Responsivo */
.video {
    position: relative;
    padding-bottom: 55%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.video object,
.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ml-auto {
    margin-left: auto;
}
.mr-auto {
    margin-right: auto;
}

/* Block */
.hidden {
    display: none;
}
.show {
    display: block;
}

/* Flex */
.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.flex-col-reverse {
    flex-direction: column-reverse;
}
.flex-row {
    flex-direction: row;
}
.flex-row-reverse {
    flex-direction: row-reverse;
}
.items-center {
    align-items: center;
}
.items-start {
    align-items: flex-start;
}
.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}
.justify-start {
    justify-content: flex-start;
}
.justify-end {
    justify-content: flex-end;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}
.justify-evenly {
    justify-content: space-evenly;
}

.flex-1 {
    flex-basis: 100px !important;
}
.flex-2 {
    flex-basis: 200px !important;
}
.flex-3 {
    flex-basis: 300px !important;
}
.flex-4 {
    flex-basis: 400px !important;
}
.flex-5 {
    flex-basis: 500px !important;
}
.flex-6 {
    flex-basis: 600px !important;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Tablet */
@media (min-width: 768px) {
    .row .column {
        flex-basis: auto;
    }
}

/* 
  Reset
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
ol,
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}

/* 
| --------------------------- 
|   FOOTER
| --------------------------- 
*/
.footer {
  padding-top: 5.6rem;
  padding-bottom: 5.6rem;
  background: url(/images/bg-footer.png?9c989826d5713458ce0a15869f951090) no-repeat top left;
  background-size: cover;
  color: var(--white);
}
.footer .footer__container .logo {
  max-width: 200px;
  margin-bottom: 36px;
}
.footer .footer__container strong {
  display: block;
  margin-bottom: 1.8rem;
  font-size: 2.1rem;
  color: var(--white);
}
.footer .footer__container ul {
  margin-bottom: 2.4rem;
}
.footer .footer__container ul li::marker {
  content: "- ";
  display: block;
  padding-inline: 1.2rem;
  color: var(--white);
}
.footer .footer__container ul li a {
  color: var(--white);
}
.footer .footer__container address {
  font-style: normal;
  font-size: 3.6rem;
  font-weight: bold;
  text-shadow: 0 4px 12px var(--black);
  color: var(--pink-500);
}
.footer .footer__container address + a {
  display: block;
  margin-top: 1.2rem;
  color: var(--white);
}

/* Credit */
.credit {
  background: var(--pink-500);
  color: var(--white);
  text-align: center;
}
.credit .column {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-bottom: 0;
}

/* 
| --------------------------- 
|   HEADER
| --------------------------- 
*/
.header {
  position: fixed;
  display: flex;
  width: 100%;
  height: 75px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 500;
}
.header__container > .logo {
  display: none;
}
.header__container {
  display: flex;
}

@media (min-width: 1024px) {
  .header__container .nav__container .button--mobile,
  .header__container .nav__container .logo {
    display: none;
  }
  .header__container > .logo {
    display: block;
    max-width: 200px;
  }
  .header__container {
    align-items: center;
    justify-content: space-between;
  }
}

/* 
| --------------------------- 
|   MENU
| --------------------------- 
*/
.nav {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.nav,
.nav__container {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
}
.nav .nav__container > .logo {
  margin: 0 auto;
}
.menu__container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  padding: 1.2rem;
  margin-top: 7.5rem;
  background: var(--white);
  width: 100%;
  height: 100%;
}

/* opened menu mobile */
.opened .menu__container {
  display: block;
}
.menu__container li a {
  display: block;
  padding: 0.5rem 0;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: var(--gray);
}
.menu__container li a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--pink-500);
  transition: 0.3s;
}
.header__container li a:hover::after,
.header__container li a.active::after {
  width: 100%;
}

/* Desktop */
@media (min-width: 1024px) {
  .nav {
    flex: 1;
    justify-content: space-between;
  }
  .opened .menu__container,
  .menu__container {
    display: flex;
    justify-content: center;

    position: static;
    padding: 1.2rem;
    margin-top: 0;
    gap: 4.8rem;

    background: transparent;
  }
}

/* 
| --------------------------- 
|   PAGE
| --------------------------- 
*/
.page .hero {
  /* masked */
  mask-image: url("/images/img-masked.png");
  mask-size: 100% 90%;
  mask-repeat: no-repeat;
  mask-position: top left;
  -webkit-mask-image: url("/images/img-masked.png");
  -webkit-mask-size: 100% 90%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: top left;
}
.page .hero .hero__container {
  display: flex;
  align-items: center;
  padding-block: 7.5rem;
  height: 500px;

  background-image: url(/images/bg-faq-mobile.png?29045a8cc91a6bb4f85a04bc9811f181);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  color: var(--white);
}
.page .hero__container h1 {
  font-size: 3.6rem;
  line-height: initial;
  margin-bottom: 2.4rem;
  color: var(--white);
}
.page .hero__container h2 {
  margin-bottom: 2.4rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2.8rem;
  color: var(--white);
}
.page h1 {
  color: var(--blue-500);
}
.page h2 {
  font-size: 3.6rem;
  line-height: initial;
  color: var(--blue-500);
}
.page h3 {
  text-transform: uppercase;
  color: var(--blue-500);
}

/* Tablet */
@media (min-width: 768px) {
  .page .hero__container .column {
    max-width: 350px;
    margin-top: 5rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .page .hero .hero__container {
    min-height: 720px;
  }
  .page .hero__container .column {
    max-width: 340px;
  }
  .page .hero__container h1 {
    font-size: 4.8rem;
    line-height: initial;
    margin-bottom: 2.4rem;
  }
  .page .hero__container h2 {
    margin-bottom: 2.4rem;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 2.8rem;
  }
}

/* 
| --------------------------- 
|   SLIDE
| --------------------------- 
*/
.slide .slide__container {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  color: var(--white);

  /* masked */
  -webkit-mask-image: url("/images/img-masked.png");
  -webkit-mask-size: 100% 90%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: top left;
}
.slide .slide__container h2 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 4.8rem;
  text-shadow: 0 4px 12px var(--black);
  margin-block: 2.4rem;
  color: var(--white);
}
.slide .slide__container p {
  margin-bottom: 1.2rem;
}
.slide .slide__container a {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  background: var(--pink-500);
  color: var(--white);
}
.slide .slide-hero {
  position: relative;
}

/* swiper js */
.slide .slide-hero .swiper-button-prev::after,
.slide .slide-hero .swiper-button-next::after {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: bold;
}
.slide .slide-hero .swiper-pagination {
  bottom: unset;
  margin-top: -15%;
}
.slide .slide-hero .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--pink-500);
}

/* Tablet */
@media (min-width: 768px) {
  .slide .slide__container {
    min-height: 720px;
    display: flex;
    align-items: center;
  }
  .slide .slide__container .column {
    max-width: 450px;
    margin-left: 10%;
  }
  /* swiper js */
  .slide .slide-hero .swiper-pagination {
    bottom: 24%;
  }
  .slide .slide-hero .swiper-pagination-bullet {
    background: var(--white);
    opacity: 1;
  }
  .slide .slide-hero .swiper-button-prev {
    left: 5%;
  }
  .slide .slide-hero .swiper-button-next {
    right: 5%;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .slide .slide__container {
    min-height: 720px;
  }
  .slide .slide-hero .swiper-pagination {
    bottom: 16%;
  }
}

/* Desktop Large */
@media (min-width: 1400px) {
  .slide .slide-hero .swiper-button-prev,
  .slide .slide-hero .swiper-button-next {
    top: 40%;
    transform: translateY(-50%);
  }
  .slide .slide-hero .swiper-button-prev {
    left: 18%;
  }
  .slide .slide-hero .swiper-button-next {
    right: 18%;
  }
  .slide .slide-hero .swiper-pagination {
    bottom: 20%;
  }
}

/*
| ---------------------------
|   PAGE: COMO CONTRATAR
| ---------------------------
*/
.page-faq .faq {
    background: none;
}
.page-faq .faq::after {
    content: none;
}

.page-faq .hero__container form span {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 26px;
    box-shadow: 0 14px 18px rgb(0 0 0 / 50%);
}
.page-faq .hero__container form input {
    margin: 0;
    flex: 1;
    border: 0 none;
    background: none;
    color: var(--gray);
}

.page-faq .hero__container form input::-moz-placeholder {
    color: var(--gray);
}

.page-faq .hero__container form input::placeholder {
    color: var(--gray);
}

.page-faq .hero__container form img {
    max-width: 26px;
}

/* sections */
.page-faq .faq .row {
    margin-bottom: 2rem;
}
.page-faq .faq header {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-faq .faq header h2 {
    max-width: 300px;
    margin: 0;
    font-size: 2.8rem;
    line-height: 3.6rem;
    text-align: center;
    color: var(--blue-500);
}
.page-faq .faq .faq__accordion .faq__accordion-content dl {
    margin-bottom: 0;
}
.page-faq .faq__container > article,
.page-faq .faq__container > footer {
    text-align: center;
}
.page-faq .faq__container article a {
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 0.75rem;
    display: block;
}

.page-faq .faq__container article .faq__form {
    width: inherit;
    max-width: 650px;
    padding: 2rem;
    border-radius: 14px;
    background-color: #ededed;
    box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.25);
}

.faq__form input,
.faq__form textarea {
    padding: 1.25rem 0.75rem;
    border: 1px solid var(--blue-500);
    background-color: #e1e1e1;
    border-radius: 6px;
}

.faq__form input::-moz-placeholder, .faq__form textarea::-moz-placeholder {
    color: var(--black);
    font-family: "Montserrat", sans-serif;
}

.faq__form input::placeholder,
.faq__form textarea::placeholder {
    color: var(--black);
    font-family: "Montserrat", sans-serif;
}

.faq__form button[type="submit"] {
    padding: 0.75rem 2.25rem;
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Desktop */
@media (min-width: 1024px) {
    .page-faq .hero .hero__container {
        min-height: 720px;
        background-image: url(/images/bg-faq-desktop.png?c1cf659ae82fd5b3e049f085a05f353b);
    }

    .page-faq .faq .row {
        flex-direction: column;
        align-items: center;
    }
    .page-faq .faq header h2 {
        max-width: initial;
        font-size: 3.6rem;
    }
    .page-faq .faq__container article {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .page-faq .faq__container .faq__accordion {
        padding: 3rem 9.2rem !important;
        max-width: inherit !important;
    }
    .page-faq .faq__accordion .faq__accordion-content dt {
        gap: unset;
        justify-content: space-between;
        font-size: 2.25rem !important;
    }
    .page-faq .faq__accordion .faq__accordion-content dd {
        padding: 1.8rem;
        text-align: left;
        font-size: 2.1rem;
        line-height: initial;
    }
    .quer-saber-mais {
        margin-top: 102px;
    }
    .quer-saber-mais header {
        margin-bottom: 6rem;
    }
    .quer-saber-mais .row:nth-child(2) {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .quer-saber-mais .row article {
        flex-direction: column;
        text-align: left;
    }

    .nao-acho .faq__form input::-moz-placeholder, .nao-acho .faq__form textarea::-moz-placeholder {
        font-size: 1.8rem;
        font-weight: 400;
    }

    .nao-acho .faq__form input::placeholder,
    .nao-acho .faq__form textarea::placeholder {
        font-size: 1.8rem;
        font-weight: 400;
    }
}

/* 
| --------------------------- 
|   PAGE: GLOSSARIO
| --------------------------- 
*/
.page-glossary .content header {
  text-align: center;
}
.page-glossary .content header h3 {
  font-style: italic;
  text-transform: inherit;
  color: var(--pink-500);
}
.page-glossary .content dl dt {
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--blue-500);
}
.page-glossary .content dl dd {
  padding: 0 1.4rem 1.4rem;
  margin-bottom: 1.8rem;
  position: relative;
}
.page-glossary .content dl dd::before {
  content: "";
  display: block;
  border-left: 1px solid var(--pink-500);
  border-bottom: 1px solid var(--pink-500);
  border-radius: 0 0 0 24px;
  width: 100%;
  height: 70%;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Desktop */
@media (min-width: 1024px) {
  .page-glossary .content header {
    margin-bottom: 7.2rem;
  }
  .page-glossary .content header h3 {
    font-size: 2.1rem;
  }

  .page-glossary .content dl dt {
    font-size: 2.8rem;
  }
  .page-glossary .content dl dd {
    margin-bottom: 3.6rem;
    font-size: 2.1rem;
    line-height: initial;
  }
}

/*
| ---------------------------
|   HOME
| ---------------------------
*/

/* Seção Contratar */
.hire {
    background-image: url(/images/bg-home-hire.png?699388616b2592a2c1f96bacd9b17df5);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
}
.hire__container {
    padding-top: 12.6rem;
    padding-bottom: 10.5rem;
}
.hire__container .column:first-child {
    color: var(--white);
    text-align: right;
}
.hire__container .column:first-child h2 {
    margin-bottom: 1.6rem;
}
.hire__container .column:last-child img {
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.8);
}

/* Seção Produtos */
.product__container {
    padding-top: 4.8rem;
    padding-bottom: 3.6rem;
}
.product__container .column:first-child {
    text-align: center;
    color: var(--blue-500);
    margin-bottom: 4.8rem;
}
.product__container .column:first-child h2 {
    margin-bottom: 1.8rem;
}

.product__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}
.product__list .product__item {
    flex: 1 0 40%;
    gap: 1.2rem;
}
.product__list .product__item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.product__item a img {
    max-width: 90px;
}
.product__item a cite {
    font-style: normal;
    font-weight: bold;
    text-align: center;
    color: var(--blue-500);
}
.product__item a cite::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 0.2rem;
    background: var(--pink-500);
}

/* Section Testeminial */
.testimony {
    background: url(/images/bg-testimonials.png?cbaa0828f9e04b3c1d6cef314e7f3aaf) no-repeat top center;
    background-size: cover;
    padding-top: 7.2rem;
}
.testimony .testimony__container h2 {
    color: var(--white);
}
.testimony .column:last-child {
    position: relative;
}
.testimony__list {
    width: 100%;
    max-width: 300px;
    padding: 3.6rem 0 4.8rem 1.4rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.testimony__list .testimony__item {
    /* width: 100%; */
    /* max-width: 450px; */
    position: relative;
    box-shadow: -24px -12px 24px rgba(0, 0, 0, 0.1);
}

.testimony__list .testimony__item::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    border-radius: 12px;
    background: var(--blue-900);
    transform: translate(-14px, 14px);
    z-index: 0;
}

.testimony__list .testimony__item::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;

    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(-14px, 40px);

    border: 26px solid var(--blue-900);
    border-right-color: transparent;
    border-bottom-color: transparent;
}
.testimony__item .testimony__image {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 200;
    max-width: 72px;
    transform: translate(-24px, -44px);
}
.testimony__item .testimony__image img {
    border-radius: 50%;
    border: 2px solid var(--pink-500);
}
.testimony__item .testimony__body {
    /* max-width: 450px; */
    position: relative;
    padding: 2.8rem 1.2rem 1.2rem 4.8rem;
    border-radius: 14px;
    background: var(--white);
    z-index: 100;
}
.testimony__item .testimony__body::before {
    content: "";
    display: block;
    width: 100%;
    height: 50px;

    position: absolute;
    top: 0;
    left: 0;
    transform: skewY(-0.2deg) translateY(-12px) rotate(3.2deg);

    background: var(--white);
    border-radius: 18px 24px 18px 18px;
    z-index: -1;
}
.testimony__item .testimony__body cite {
    font-style: normal;
    font-weight: bold;
    color: var(--blue-900);
}
.testimony__item .testimony__body cite > span {
    color: var(--blue-500);
}

.testimony .column:last-child .swiper-button-prev {
    margin-left: -6%;
    color: var(--white);
}
.testimony .column:last-child .swiper-button-next {
    margin-right: -6%;
    color: var(--white);
}
.testimony .column:last-child .swiper-button-prev::after,
.testimony .column:last-child .swiper-button-next::after {
    font-size: 1.75rem;
    font-weight: bold;
}
.slide-testimony .swiper-pagination {
    bottom: 0;
}
.slide-testimony
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--pink-500);
}

.slide-testimony .swiper-pagination .swiper-pagination-bullet {
    background: var(--gray);
    opacity: 1;
}

/* FAQ */
.faq {
    background: url(/images/bg-faq-mobile.png?29045a8cc91a6bb4f85a04bc9811f181) no-repeat top left/contain;
}
.faq header h2 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: bold;
    margin-block: 48px;
}
.faq header .column {
    margin-bottom: 0;
}
.faq .faq__container .faq__accordion {
    width: 100%;
    max-width: 520px;
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgb(0 0 0 / 50%);
    color: var(--white);
    background: url(/images/bg-accordion.png?48e80ae66985f3b81b11a90564441a4f) no-repeat top left/cover;
}
.faq .faq__accordion .faq__accordion-content dl {
    margin-bottom: 5.6rem;
    display: flex;
    flex-direction: column;
}
.faq .faq__accordion .faq__accordion-content dt {
    display: flex;
    align-items: center;
    gap: 24px;

    font-size: 1.75rem;

    cursor: pointer;
    margin-bottom: 2.4rem;
}
.faq .faq__accordion .faq__accordion-content dd {
    display: none;
    padding: 1rem;
    margin-block: 1.75rem;
    border: 1px solid var(--pink-500);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.25);
}
.faq .faq__accordion .faq__accordion-content dd.active {
    display: block;
}

.faq .faq__accordion .faq__accordion-content dt.active {
    margin-bottom: 0;
}
.faq .faq__accordion .faq__accordion-footer form span {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.65);
    padding: 0.5rem;
    border-radius: 6px;
}
.faq .faq__accordion .faq__accordion-footer span input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: none;
    color: var(--gray);
    margin-bottom: 0;
}
.faq .faq__accordion .faq__accordion-footer span input::-moz-placeholder {
    color: var(--gray);
}
.faq .faq__accordion .faq__accordion-footer span input::placeholder {
    color: var(--gray);
}
.faq .faq__accordion .faq__accordion-footer span img {
    padding: 0.5rem;
    max-width: 24px;
}

/* Tablet */
@media (min-width: 768px) {
    .hire {
        background-size: contain;
    }
    .hire__container .row {
        flex-direction: row-reverse;
        flex-wrap: nowrap;
        gap: 3.6rem;
    }
    .hire__container .row .column {
        flex-basis: 50%;
    }

    .product__list {
        max-width: 720px;
        margin: 0 auto;
        gap: 5.6rem 2.4rem;
    }
    .product__list .product__item {
        max-width: 150px;
    }
    .product__container .column:first-child {
        max-width: 550px;
        margin-inline: auto;
    }

    .testimony .testimony__list {
        max-width: 460px;
    }
    .faq header h2 {
        font-size: 3.5rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hire__container .row .column:first-child {
        max-width: 450px;
        padding-block: 36px;
    }
    .hire__container .row .column:last-child img {
        max-width: 550px;
        margin-left: auto;
    }
    .hire__container .column:first-child h2 {
        margin-bottom: 3.6rem;
        font-size: 3.5rem;
    }

    .product__container {
        padding-block: 8rem;
    }
    .product__list {
        max-width: unset;
    }
    .product__container .column:first-child h2 {
        font-size: 3.5rem;
    }

    .testimony {
        background-image: url(/images/bg-testimony-desktop.png?6ab576b7b5963f236974c32a1cbd54e2);
        background-size: contain;
        background-position: top left;
        margin-bottom: 10rem;
    }
    .testimony .testimony__list {
        max-width: 940px;
    }
    .testimony .column:last-child .swiper-button-prev,
    .testimony .column:last-child .swiper-button-next {
        display: none;
    }
    .testimony .testimony__container h2 {
        font-size: 3.5rem;
    }

    .faq {
        background: none;
        position: relative;
        margin-bottom: 10rem;
    }
    .faq::after {
        content: "";
        display: block;
        background-image: url(/images/bg-faq-mobile.png?29045a8cc91a6bb4f85a04bc9811f181),
            linear-gradient(
                180deg,
                #4300dc 10%,
                #5b01ab 36%,
                #740394 50%,
                #b6098b 90%
            );
        width: 100%;
        min-height: 400px;
        position: absolute;
        background-size: contain, contain;
        background-position: 50% 0%, top right;
        background-repeat: no-repeat;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0 100px 0 100px;
    }
}

/* Desktop Large */
@media (min-width: 1200px) {
    .testimony .testimony__list {
        max-width: 1200px;
    }
}

/* 
| --------------------------- 
|   ONBOARD
| --------------------------- 
*/

.page-onboard .content {
  background-image: url(/images/bg-onboard-1.png?483eae43fac3a6dcbf3682fe04b84b91);
  background-repeat: no-repeat;
  background-position: 100px 110%;
  background-size: contain;
}
.page-onboard .content .row {
  gap: 2.4rem;
}
.page-onboard .content .column h2 {
  margin-bottom: 1.2rem;
}
.page-onboard .content .column img {
  border-radius: 16px;
  box-shadow: -8px 10px 12px rgba(0, 0, 0, 0.3);
}

/* Tablet */
@media (min-width: 768px) {
  .page-onboard .content {
    background-position: 200% 100%;
    padding-top: 3rem;
  }
  .page-onboard .content .column {
    flex: 1;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .page-onboard .content {
    background-position: 110% 100%;
    height: 440px;
  }
}

/* Laptop | Notebook */
@media (min-width: 1280px) {
  .page-onboard .content {
    height: 560px;
  }
}

/* Monitor */
@media (min-width: 1444px) {
  .page-onboard .content {
    height: 680px;
    background-size: 50% 100%;
    background-position-x: 100%;
  }
}

/* 
| --------------------------- 
|   PAGE: PARCEIROS
| --------------------------- 
*/
.page-partners .content {
  padding-bottom: 4.8rem;
}
.page-partners .content header {
  margin-bottom: 3.6rem;
}
.page-partners .content header h2 {
  font-size: 2.4rem;
  text-align: center;
}
.page-partners .content article img {
  width: 100%;
  max-width: 250px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-partners .content .slide-partners {
  width: 100%;
  max-width: 1000px;
  height: 200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding-inline: 2.4rem;
}
.slide-partners .swiper-button-prev {
  left: 0;
}
.slide-partners .swiper-button-next {
  right: 0;
}
.slide-partners .swiper-button-prev,
.slide-partners .swiper-button-next {
  color: var(--black);
  font-weight: bold;
}
.slide-partners .swiper-button-prev::after,
.slide-partners .swiper-button-next::after {
  font-size: 1.8rem;
}

.slide-partners .swiper-pagination {
  bottom: 24px;
}
.slide-partners .swiper-pagination span {
  background: var(--gray);
}

.slide-partners .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.4rem;
}

.slide-partners .swiper-wrapper .swiper-slide img {
  transition: 0.3s;
  filter: grayscale(1);
}
.slide-partners .swiper-wrapper .swiper-slide:hover img {
  filter: initial;
}

/* Desktop */
@media (min-width: 1024px) {
  .page-partners .content {
    padding-bottom: 12.6rem;
  }
  .page-partners .content header {
    margin-bottom: 0;
  }
}

/* 
| --------------------------- 
|   PAGE: POLITICA DE PRIVACIDADE
| --------------------------- 
*/
.page-private {
  margin-bottom: 7.2rem;
}
.page-private .hero h1 {
  white-space: nowrap;
}
.page-private .content .column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-private .content .column h2 {
  max-width: 660px;
  margin-bottom: 2.4rem;
}

/*
| ---------------------------
|   PAGE: PRODUTOS
| ---------------------------
*/
.page-product .hero__container .column {
    max-width: 490px;
}

/* Template Product */
.page-product .content .column {
    text-align: center;
}
.page-product .content h1,
.page-product .content h2,
.page-product .content h3,
.page-product .content p,
.page-product .content ul,
.page-product .content ol {
    color: var(--blue-500);
    margin-bottom: 1.6rem;
}
.page-product .content ul,
.page-product .content ol {
    text-align: left;
    margin-left: 4.8rem;
}
.page-product .content ol {
    list-style: auto;
    margin-left: 3.6rem;
}
.page-product .content ol li {
    margin-bottom: 1.2rem;
}
.page-product .content ol li::marker {
    font-size: 1.8rem;
    color: var(--pink-500);
}
.page-product .content ul li::marker {
    content: "-   ";
    font-size: 2.4rem;
    color: var(--pink-500);
}
.page-product .content blockquote {
    margin: 3.6rem 0;
    font-size: 2.4rem;
    font-style: italic;
    line-height: 3.6rem;
    text-align: center;
    color: var(--blue-500);
}
/* Tablet */
@media (min-width: 768px) {
    .page-product .content .row:last-child .column {
        text-align: left;
        flex: 1;
    }
}

/* 
| --------------------------- 
|   SINISTRO
| --------------------------- 
*/
.page-sinister {
  margin-bottom: 100px;
}

.page-sinister .content .column:first-child > h2 {
  text-align: center;
  margin-bottom: 1.2rem;
}

.page-sinister .login {
  margin-top: 4.8rem;
  padding-bottom: 1.4rem;
  background: url(/images/bg-page-sinistro-login.png?a6e50a90f7908e21bab65b95a97df9ca) no-repeat 0%
    top/200% 100%;
  height: 340px;
}
.page-sinister .login .column form,
.page-sinister .login .column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-sinister .login .column {
  max-width: 360px;
}
.page-sinister .login header {
  text-align: center;
  color: var(--white);
  margin-bottom: 2.8rem;
  margin-top: 2.4rem;
}
.page-sinister .login strong {
  font-size: 2.1rem;
}
.page-sinister .login p {
  font-size: 1.6rem;
}
.page-sinister .login .column form {
  width: 100%;
}
.page-sinister .login form input {
  border-radius: 6px;
  border: 1px solid var(--pink-500);
  height: 28px;
}
.page-sinister .login form button[type="submit"] {
  font-weight: bold;
  font-size: 1.6;
  text-transform: uppercase;
  padding-inline: 2.4rem;
}
.page-sinister .login footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-sinister .login footer a {
  display: block;
  padding-top: 0.8rem;
  font-size: 1.2rem;
  color: var(--white);
}
.page-sinister .login footer a:hover {
  text-decoration: underline;
}

/* Tablet */
@media (min-width: 768px) {
  .page-sinister .login header {
    text-align: left;
  }
  .page-sinister .login {
    background-size: cover;
  }
  .page-sinister .login .column form,
  .page-sinister .login .column {
    align-items: start;
  }
  .page-sinister .login form footer {
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
  }
  .page-sinister .login form footer a {
    padding-top: 0;
  }
}

/* Desktop */
@media (min-width: 1280px) {
  .page-sinister .login {
    background-size: contain;
    background-position-x: right;
    height: 460px;
  }
  .page-sinister .login .row {
    padding-block: 2.5vw;
    padding-inline: 2vw;
  }
}

/* Desktop large */
@media (min-width: 1444px) {
  .page-sinister .login {
    height: 540px;
  }
  .page-sinister .login .row {
    padding-inline: 3vw;
  }
}

/* 
| --------------------------- 
|   PAGE: SOBRE NOS
| --------------------------- 
*/

.page-about .content {
  margin-bottom: 4rem;
}
.page-about .content .column {
  text-align: center;
}

/* Cotação */
.page-quotation .column {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 36px;
}
.card-quotation {
    width: 100%;
    max-width: 676px;

    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    padding: 24px;

    background: #f4f3f3;
    border: 1px solid #dadada;
    border-radius: 6px;
}
.card-quotation.--border {
    padding: 0;
    flex-direction: column;
    border-color: var(--gray);
}
.card-quotation.--border .card-header {
    border-bottom: 1px solid var(--gray);
}
.card-quotation.--border .card-header,
.card-quotation.--border .card-body {
    padding: 14px;
}
.card-quotation.--border .card-body {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.card-quotation.--border-0 {
    border: none;
}
.card-quotation.--bg-transparent {
    background: transparent;
}
/* Form */
.form-quotation fieldset {
    border: 0 none;
}
.form-quotation fieldset span {
    flex: 1 1 300px;
}
.form-quotation fieldset label {
    display: block;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #6b6868;
}
.form-quotation fieldset input,
.form-quotation fieldset select {
    margin-bottom: 0;

    font-size: 16px;

    color: #989898;
    border: 1px solid #bbb6b6;
    border-radius: 4px;
}
.form-quotation input::-moz-placeholder {
    font-size: 16px;
    color: #989898;
}
.form-quotation input::placeholder {
    font-size: 16px;
    color: #989898;
}
.form-quotation .error {
    color: red;
}
.form-quotation footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    gap: 12px;
}

/* CEP Input */
.quotation-cep {
    display: flex;
    align-items: flex-end;
    gap: 18px;
}

/* Input Checkbox */
.input-check-group {
    padding-block: 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;
}
.input-check-group .input-check {
    flex: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.input-check .input-check-label {
    margin: 0;
    font-weight: normal;
    color: var(--gray);
}

/* Input Checkbox Toggle */
.input-check-toggle {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 12px;
    background: var(--white);
    border-radius: 6px;
}

.input-check-toggle strong {
    font-weight: 500;
}

.input-check-toggle label {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 !important;
    background: #d9d9d9;
    border: 3px solid #d9d9d9;
    width: 100%;
    max-width: 50px;
    height: 25px;
    border-radius: 50px;

    transition: all 500ms ease;
}

.input-check-toggle label::before {
    position: absolute;
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: #989898;
    border-radius: 50px;

    transition: all 500ms ease;
}
.input-check-toggle input:checked ~ label {
    background-color: #67ec52;
    border-color: #67ec52;
}
.input-check-toggle input:checked ~ label::before {
    right: 0;
    background-color: #fff;
}
.input-check-toggle input {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

/* Input Radio Custom */
.input-check-radio input[type="radio"] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.input-check-radio .input-check-label {
    height: 100px;
    padding: 0 36px;

    display: flex;
    align-items: center;

    border: 2px solid #dadada;
    background: var(--white);
    border-radius: 6px;

    cursor: pointer;

    gap: 12px;
}

.input-check-radio .input-check-label .input-check-input {
    width: 100%;
    max-width: 16px;
    height: 16px;

    display: block;

    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--gray);
    border-radius: 50px;
}

.input-check-radio .input-check-label .input-check-text {
    font-weight: normal;
}

.input-check-radio input[type="radio"]:checked ~ .input-check-label {
    background: #f4f3f3;
}

.input-check-radio
    input[type="radio"]:checked
    ~ .input-check-label
    .input-check-input {
    background: var(--gray);
}

/* timeline */
.time-line .time-line-item {
    display: block;
    max-width: 24px;
    height: 24px;
    border-radius: 50px;
    border: 2px solid #f4f3f3;
    box-shadow: 0 0 0 2px #545454;
    background: #f3f3f3;
}
.time-line .time-line-item.--active {
    background: #545050;
}
.time-line {
    position: relative;
    height: 36px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.time-line::before {
    content: "";
    display: block;
    position: absolute;
    top: 35%;
    transform: translateY(50%);
    background: #545050;
    width: 100%;
    height: 4px;
    z-index: -1;
}

/*
| ---------------------------
|   BUTTON
| ---------------------------
*/

.button {
    background: transparent;
    border: 0 none;
    padding: 0.5rem;
}
.button.button--mobile {
    color: var(--blue-500);
}
.button.button--quotation {
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 6px;
    border: 1px solid var(--pink-500);
}

.button.button--pink {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: var(--pink-500);
    color: var(--white);
}

/* Link */
.link.link--all {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    font-weight: bold;
    text-align: center;
    color: var(--pink-500);
}
.link.link--all > i {
    color: var(--gray);
}
.link.link--all > i::before {
    display: inline-block;
    width: 32px;
    height: 32px;

    border: 1px solid #ccc;
    border-radius: 50%;
    line-height: 32px;
}
.button.button--step-next,
.button.button--finally {
    padding-inline: 18px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: normal;
    font-size: 16px;
    text-transform: inherit;

    color: var(--white);
    border-radius: 4px;
    border-color: #545050;
    background: #545050;
}
.button.button--step-prev {
    padding-inline: 18px;
    height: 50px;

    font-size: 16px;

    color: #545050;
    border: 2px solid #545050;
    border-radius: 4px;
}
.button.--icon {
    justify-content: space-between;
    gap: 12px;
}

@media (min-width: 1024px) {
    .button.button--quotation {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
        text-transform: uppercase;
    }
}

/*
| -------------------------
|   Form
| --------------------------
*/
input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
select {
    height: 50px;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
select,
textarea {
    display: block;
    padding: 1.2rem;
    margin-bottom: 1.75rem;
    width: 100%;

    outline: none;
}
input[type="submit"],
button {
    cursor: pointer;
}

form strong {
    display: block;
    color: var(--gray);
}

/* 
| --------------------------- 
|   MODAL
| --------------------------- 
*/
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
}
[data-modal].show {
  display: block;
}
.modal .modal__container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 550px;
}

.modal .modal__content {
  background-color: var(--pink-500);
  border-radius: 16px;
}
.modal .modal__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.2rem 1.2rem 0;
}
.modal .modal__header button {
  font-weight: normal;
  color: var(--black);
  background: transparent;
  border: 0 none;
}
.modal .modal__body {
  padding: 0.8rem 2.4rem 2.4rem;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
}

/* 
| --------------------------- 
|   SOCIAL
| --------------------------- 
*/
.social ul {
  display: flex;
  gap: 1.6rem;
}
.social ul > li::marker {
  content: "" !important;
}
.social li a img {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
/* Desktop */
@media (min-width: 1024px) {
  .social {
    position: fixed;
    top: 25%;
    right: 0;
    z-index: 500;
  }
  .social ul {
    flex-direction: column;
    gap: 0.8rem;
    margin: 0 !important;
    padding: 1.8rem;
    position: relative;
    z-index: 500;
  }
  .social::after {
    content: "";
    display: block;

    position: absolute;
    top: 0px;
    bottom: 0;
    left: 0;
    right: -10px;

    background: rgba(0, 0, 0, 0.5);
    border-radius: 24px 0 0 24px;
    transform: perspective(360px) rotateY(-40deg) translateX(-3px);

    z-index: 400;
  }
}

/*
|=============================
|   Global
|=============================
*/

/*
|=============================
|   Layouts
|=============================
*/

/*
|=============================
|   Pages
|=============================
*/

/*
|=============================
|   Components
|=============================
*/

