@charset "UTF-8";
@font-face {
  font-family: "Mark Pro";
  src: url("../fonts/mark-pro/7200c6dd8ac604abe09f5159e53a40c0.woff2") format("woff2"), url("../fonts/mark-pro/7200c6dd8ac604abe09f5159e53a40c0.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Mark Pro", sans-serif;
  background: #F2F2F2;
  position: relative;
}
body.mobile-nav-active {
  overflow: hidden;
}
body.mobile-nav-active::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ==========================================================================
   Header e Navegação
   ========================================================================== */
#primary-navigation {
  padding: 15px 20px;
  transition: background-color 0.3s ease;
  width: 100%;
  z-index: 998;
  position: fixed;
  top: 0;
  left: 0;
}
#primary-navigation .desktop-menu-container {
  display: none;
}
#primary-navigation .logo-container img {
  width: 180px;
  max-width: 100%;
}
#primary-navigation .mobile-toggle-wrapper {
  display: flex;
  justify-content: flex-end;
}

#mobile-menu-toggle {
  position: relative;
  display: block;
  width: 30px;
  height: 22px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 10000;
}
#mobile-menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #1D279A;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#mobile-menu-toggle span:nth-child(1) {
  top: 0px;
}
#mobile-menu-toggle span:nth-child(2) {
  top: 9px;
}
#mobile-menu-toggle span:nth-child(3) {
  top: 18px;
}
#mobile-menu-toggle.is-active span {
  background: #FFFFFF;
}
#mobile-menu-toggle.is-active span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}
#mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
  left: -30px;
}
#mobile-menu-toggle.is-active span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}

/* ==========================================================================
   Menu Lateral Customizado
   ========================================================================== */
#mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #1D279A;
  box-shadow: -5px 0px 25px rgba(0, 0, 0, 0.2);
  z-index: 9998;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
#mobile-nav-panel.is-open {
  transform: translateX(0);
}
#mobile-nav-panel ul {
  margin: 80px 0 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
#mobile-nav-panel li a {
  color: #FFFFFF;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 22px 30px;
  display: block;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease-out;
}
#mobile-nav-panel li a:hover, #mobile-nav-panel li a:focus {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 35px;
}

/* ==========================================================================
   Estilos Gerais e Footer
   ========================================================================== */
#primary-footer {
  background: #1D279A;
  border-radius: 30px 30px 0 0;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
#primary-footer__logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
#primary-footer__logos .logo-1 {
  width: 220px;
  max-width: 100%;
}
#primary-footer__logos .logo-2 {
  width: 45px;
}
#primary-footer__logos span {
  color: #FFFFFF;
  font-size: 14px;
}
#primary-footer__slogan {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.3;
  margin-top: 20px;
}

.title {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.title.title-white {
  color: #FFFFFF;
}
.title.title-blue {
  color: #1D279A;
}
.title img {
  width: 30px !important;
}

textarea.form-custom {
  height: 100px;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (min-width: 576px) {
  #primary-footer__logos {
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .title {
    font-size: 45px;
    margin-bottom: 30px;
  }
  .title-small {
    font-size: 30px;
  }
  .text {
    font-size: 16px;
    line-height: 40px;
  }
  .text a {
    color: #000000;
    text-decoration: none;
  }
  #mobile-menu-toggle, #mobile-nav-panel {
    display: none !important;
  }
  #primary-navigation {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 30px 60px;
  }
  #primary-navigation .logo-container img {
    width: 70%;
  }
  #primary-navigation .desktop-menu-container {
    display: block;
  }
  #primary-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }
  #primary-navigation li a {
    color: #1D279A;
    font-size: 18px;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  #primary-navigation li a:hover, #primary-navigation li a:focus {
    opacity: 0.7;
  }
  #primary-footer {
    flex-direction: row;
    justify-content: space-between;
    padding: 30px 60px;
    text-align: left;
  }
  #primary-footer__logos .logo-1 {
    width: 191px;
  }
  #primary-footer__slogan {
    font-size: 20px;
    text-align: right;
    margin-top: 0;
  }
}