@charset "UTF-8";
/* ============================================= */
/*                   VARIÁVEIS                   */
/* ============================================= */
:root {
  --gotham: "Gotham", sans-serif;
  /* Cores */
  --white: #ffffff;
  --gray-400: #f1f1f1;
  --gray-500: #efefef;
  --gray-700: #7a7a7a;
  --gray-900: #233447;
  --black: #000000;
  --brand-color-1: #002038;
  --brand-color-1-hover: #00111f;
  --brand-color-2: #1c4389;
  --text-color: #060132;
  --primary: #96752b;
  --green-2: #F0FBFA;
  --green-3: #58C2CF;
  --bpo-primary: #FF6E00;
  --whatsapp: #25d366;
  --whatsapp-hover: #167f3d;
  /* Gradientes */
  --gradient-1: linear-gradient(63deg, rgba(83,188,217,1) 0%, rgba(95,204,186,1) 100%);
  /* Sombra */
  --shadow-1: 4px 5px 10px rgba(200, 200, 200, 0.25);
  /* Espaçamentos */
  --half: 12px;
  --base: 24px;
  --double: 48px;
  /* Tipografia */
  --text-base: 14px;
  --text-uppercase: uppercase;
}

/* ============================================= */
/*                   GLOBAL STYLES               */
/* ============================================= */
* {
  font-family: var(--gotham);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gotham) !important;
  line-height: 100%;
  font-weight: 400;
}

.section-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-padding-half {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 960px) {
  .section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (min-width: 960px) {
  .vertical-align {
    gap: 0;
    align-items: center;
  }
}
.divisor {
  width: 60px;
  height: 10px;
  background-color: var(--primary);
  margin-bottom: 10px;
}

.section-left-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 10px;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  position: absolute;
  left: 40px;
  bottom: -40px;
  display: none;
}
@media (min-width: 767px) {
  .section-left-title {
    display: block;
  }
}

/* ============================================= */
/*                   HEADINGS                    */
/* ============================================= */
h1, .h1 {
  font-size: 34px;
}
h1 br, .h1 br {
  display: none;
}
@media (min-width: 960px) {
  h1, .h1 {
    font-size: 50px;
  }
  h1 br, .h1 br {
    display: block;
  }
}

h4, .h4 {
  font-size: 20px;
}
@media (min-width: 960px) {
  h4, .h4 {
    font-size: 24px;
  }
}

h5, .h5 {
  font-size: 16px;
}
@media (min-width: 960px) {
  h5, .h5 {
    font-size: 20px;
  }
}

/* ============================================= */
/*                   TEXTOS                     */
/* ============================================= */
p {
  font-size: 16px;
}

.semi {
  font-size: 16px;
}

.semi-small {
  font-size: 14px;
}

small, .small {
  font-size: 12px;
}

.text-fx {
  font-size: 16px !important;
  position: relative;
  z-index: 0;
  display: inline;
  line-height: 120%;
  padding: 0.1rem 0.5rem 0rem 0.4rem;
  background-color: var(--primary);
  background-image: var(--primary);
}
@media (min-width: 991px) {
  .text-fx {
    font-size: 20px !important;
  }
}

.text-right {
  text-align: right;
}

/* ============================================= */
/*                  TYPOGRAPHY                  */
/* ============================================= */
.font-light {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-semibold {
  font-weight: 500 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-serif {
  font-family: "ivypresto-display", serif;
  font-weight: 400;
  font-style: italic;
}

/* ============================================= */
/*                 BUTTONS                      */
/* ============================================= */
.btn {
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.btn:active, .btn:focus, .btn:hover {
  border: 2px solid transparent;
}
@media (min-width: 960px) {
  .btn {
    padding: 16px 26px;
    font-size: 16px;
  }
  .btn:active, .btn:focus, .btn:hover {
    padding: 16px 32px;
    border: 2px solid transparent;
  }
}
.btn-link {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: currentColor;
  border-bottom: 2px solid currentColor;
  width: fit-content;
  margin-top: 0;
  transition: padding ease-in-out 0.3s;
  border-radius: 0;
  padding: 10px 0;
}
.btn-link img {
  transition: right ease-in-out 0.3s;
  height: 13px;
  position: relative;
  top: -3px;
  right: 0;
  fill: currentColor;
  margin-left: 5px;
}
.btn-link:hover {
  padding: 10px 5px 10px 0;
  color: currentColor;
  border-bottom: 2px solid currentColor;
}
.btn-link:hover img {
  right: -5px;
}

.btn-sm {
  font-size: 14px;
  padding: 14px 24px;
}
.btn-sm:active, .btn-sm:focus, .btn-sm:hover {
  padding: 14px 28px !important;
}
.btn-sm-not-hover-fx:hover {
  padding: 14px 24px;
}

.btn-secondary {
  color: var(--white);
  background-color: var(--black);
}
.btn-secondary:active, .btn-secondary:focus, .btn-secondary:hover {
  color: var(--white);
  background-color: var(--black);
}
.btn-secondary.outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-primary {
  color: var(--white);
  background-color: var(--primary);
}
.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
  color: var(--white);
  background-color: var(--primary);
}

/* ============================================= */
/*                  FOOTER                      */
/* ============================================= */
.footer-whats {
  position: fixed;
  z-index: 120;
  right: 15px;
  pointer-events: none;
  opacity: 0;
  bottom: -100px;
  transition: all 0.5s;
}
.footer-whats img {
  height: 50px;
  width: 50px;
}
@media (min-width: 960px) {
  .footer-whats img {
    height: 60px;
    width: 60px;
  }
}
.footer-whats.active {
  bottom: 15px;
  opacity: 1;
  pointer-events: initial;
}
.footer-whats.active:hover {
  bottom: 20px;
}

/* ============================================= */
/*                MISCELLANEOUS                 */
/* ============================================= */
img.lazyload,
img.lazyloading {
  object-fit: none;
}

.relative {
  position: relative;
}

body.nav-menu {
  overflow: hidden;
}

.seo-page-title {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

/* ============================================= */
/*                RIBBON ROTATOR                */
/* ============================================= */
.ribbon-rotator {
  background-color: var(--primary);
  position: relative;
  z-index: 1;
}
.ribbon-rotator-content {
  height: 60px;
  width: 100%;
  background-image: url("../../images/ribbon-rotator.svg");
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 40px;
  animation: marquee_horizontal 55s linear infinite;
}
.ribbon-rotator.black {
  background-color: var(--black);
}
@media (min-width: 960px) {
  .ribbon-rotator-content {
    height: 80px;
    background-size: auto 50px;
  }
}
@keyframes marquee_horizontal {
  100% {
    background-position: -3000px center;
    top: -10px;
  }
}

/* ============================================= */
/*                ZEZTRA BPO                    */
/* ============================================= */
.zeztra-bpo {
  --primary: var(--bpo-primary);
}
.zeztra-bpo .btn-primary,
.zeztra-bpo .btn-primary:hover,
.zeztra-bpo .payments-icon {
  background-color: var(--bpo-primary);
}

body.menu-open {
  overflow: hidden;
}
body.menu-open::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* fundo escuro */
  backdrop-filter: blur(2px);
  z-index: 1000;
}
body.menu-open .page-nav {
  position: relative;
  z-index: 1050;
}

@media (max-width: 1199px) {
  .page-nav-list .dropdown-menu.show {
    top: 0 !important;
  }
  .page-nav-list .dropdown-menu.show .dropdown-item {
    pointer-events: initial;
  }
}
.dropdown-menu {
  padding: 20px 25px;
  border: transparent;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.dropdown-menu .ia-icon {
  max-width: 90%;
  display: none !important;
}
@media (max-width: 1199px) {
  .dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    width: 100dvw;
    height: 100dvh;
    pointer-events: initial;
    position: fixed;
    overflow: auto;
  }
  .dropdown-menu.show .col-lg-2,
  .dropdown-menu.show .col-lg-4:not(:last-of-type) {
    margin-bottom: 30px !important;
  }
  .dropdown-menu.show ul {
    opacity: 1;
    position: relative;
    z-index: 1500;
    visibility: visible;
    height: fit-content;
    grid-template-columns: 1fr;
  }
}
.dropdown-menu .dropdown-item {
  text-transform: unset !important;
  padding: 8px 0;
}
.dropdown-menu .dropdown-item:hover {
  background: transparent;
}
.dropdown-menu .dropdown-item.breve {
  opacity: 0.6;
  color: #586874;
  pointer-events: none;
  position: relative;
}
.dropdown-menu .dropdown-item.breve span {
  background-color: #e2e6e9;
  color: #586874;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 600;
  padding: 2px 5px;
  border-radius: 5px;
  margin-left: 2px;
  white-space: nowrap;
  position: absolute;
  margin-left: 5px;
  margin-top: 3px;
}/*# sourceMappingURL=base.css.map */