@charset "UTF-8";
:root {
  --color-btn-square: #ef7d00;
  --color-btn-square-hover: #d45900;
  --color-btn-square-active: #ba4301;
  --color-btn-rounded: #ef7d00;
  --color-btn-rounded-hover: #d45900;
  --color-btn-rounded-active: #ba4301;
  --color-items-header-hover: #ef7d00;
  --color-items-header-active: #ba4301;
  --color-menu-header: #24195d;
  --color-btn-menu-header-hover: #ef7d00;
  --color-border-conteudo-hero: #ffffff;
  --color-font-base: #ffffff;
  --color-text-default: #505050;
  --color-item-box-banner-one: #ef7d00;
  --color-item-box-banner-two: #e06c00;
  --color-item-box-banner-three: #d55900;
  --color-ballon-text-one: #e0a059;
  --color-ballon-text-two: #e69244;
  --color-ballon-text-three: #da884d;
  --color-title-small-upperc: #ef7d00;
  --color-btn-small-upperc: #24195d;
  --color-btn-options-one: #24195d;
  --color-btn-options-two: #392798;
  --color-btn-options-three: #543cd0;
  --color-btn-options-four: #2b52df;
  --color-btn-options-five: #038cf3;
  --color-bb-btn-options-one: #24195d;
  --color-bb-btn-options-two: #392798;
  --color-bb-btn-options-three: #543cd0;
  --color-bb-btn-options-four: #2b52df;
  --color-bb-btn-options-five: #038cf3;
  --color-description-notices: #ef7d00;
  --color-big-font: #facc99;
  --color-ul-itens-text: #ef7d00;
  --color-effect-bg-img-desk: linear-gradient(
    to left,
    #543cd0 56.08%,
    rgba(84, 60, 208, 0) 100%
  );
  --color-effect-bg-img-mob: linear-gradient(
    to top,
    #543cd0 56.08%,
    rgba(84, 60, 208, 0) 100%
  );
  --color-bg-apps: #24195d;
  --color-btn-rounded-two: #24195d;
  --color-terms-footer: #ef7d00;
  --color-title-h1: #24195d;
  --color-bg-text-banner: #181041;
  --color-menu-options: #ef7d00;
  --color-bb-menu-options: #d6d6d6;
  /*Botao 1 - fale conosco 1*/
  --color-last-btn-def-one: #ef7d00;
  --color-font-last-btn-one-hover: #d45900;
  --color-border-last-btn-one-hover: #d45900;
  --color-bg-last-btn-one-hover: #fff1e1;
  --color-font-last-btn-one-active: #ba4301;
  --color-border-last-btn-one-active: #ba4301;
  --color-bg-last-btn-one-active: #ffffff;
  /*Botao 2 - fale conosco 1*/
  --color-bg-last-btn-def-two: #ef7d00;
  --color-bg-last-btn-two-hover: #d45900;
  --color-font-last-btn-two-active: #ffffff;
  --color-bg-last-btn-two-active: #ba4301;
  --color-label-form: #24195d;
  /*cores dos icones*/
  --color-icons-samp: #ef7d00;
  --color-light-icons: #d6d6d6;
  /*cor botao download app - header*/
  --color-download-app: #24195d;
  --color-menu-hamburger: #ef7d00;
}

* {
  font-family: "Montserrat", sans-serif !important;
  box-sizing: border-box !important;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
}

section {
  width: 100%;
  margin: 0 auto;
}

button,
select {
  outline: none;
  cursor: pointer;
}

a {
  text-decoration: none;
}

header {
  height: 80px;
  width: 100%;
  display: flex;
  margin: 0 auto;
  max-width: var(--width-sect-util);
  flex-direction: column;
}

header .div-one-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

#header .header-mobile {
  display: none;
}

/*responsivo HEADER*/
@media screen and (max-width: 500px) {
  #header .header-mobile {
    display: flex;
  }
}

/*hero*/
.hero {
  position: relative;
  max-width: var(--width-sect);
}

.hero .hero-mobile {
  display: none;
}

.hero .hero-desktop img {
  width: 100%;
  position: relative;
  min-width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.hero .conteudo-hero {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: end;
  margin: 0 auto;
  max-width: 1250px;
  flex-direction: column;
}

.conteudo-hero .box-interno-hero {
  border: none;
  display: flex;
  padding: 15px 40px;
  flex-direction: column;
  align-items: center;
}

.hero .box-interno-hero p {
  color: var(--color-font-base);
}

.box-interno-hero .medium-text {
  font-weight: 500;
  font-size: 22px;
}

.box-interno-hero button {
  background: var(--color-btn-rounded);
  border-radius: 30px;
  text-decoration: none;
  width: 215px;
  padding: 12px 0;
  border: none;
  font-weight: 400;
  font-size: 15px;
  color: var(--color-font-base);
  text-transform: uppercase;
  transition-duration: 0.4s;
}

.box-interno-hero button:hover {
  background-color: var(--color-btn-rounded-hover);
}

.box-interno-hero button:active {
  background-color: var(--color-btn-rounded-active);
}

.box-interno-hero .button-rounded {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
}

.box-interno-hero .button-rounded a {
  padding: 15px 0;
}

/*responsivo hero*/
@media screen and (max-width: 500px) {
  .hero .hero-desktop {
    display: none;
  }
  .hero .hero-mobile {
    display: block !important;
  }
  .hero .hero-mobile img {
    width: 100%;
  }
  .hero .conteudo-hero {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .conteudo-hero .box-interno-hero {
    margin: 0 auto;
  }
  .box-interno-hero .medium-text {
    font-size: 21px;
  }

  .box-interno-hero .button-rounded {
    margin: 15px 0;
  }
  .box-interno-hero button {
    font-size: 12px;
  }
}

.title-subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
}

.description-link {
  font-size: 15px;
  font-weight: 600;
  color: #170c66;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  overflow-y: hidden;
}

.loader {
  border: 8px solid #ffffff;
  border-radius: 50%;
  border-top: 8px solid #170c66;
  width: 45px;
  height: 45px;
  margin: 25% auto;
  -webkit-animation: spin 1.5s linear infinite;
  /* Safari */
  animation: spin 1.5s linear infinite;
  @media screen and (max-width: 500px) {
    margin: 100vw auto;
  }
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
