/* ===========================
   Expert Brand Design Tokens
   =========================== */
:root {
  --orange-100: #fff0e6;
  --orange-300: #ffd1b3;
  --orange-500: #ffb380;
  --orange-700: #ff944d;
  --orange-900: #ff6400;
  --blue-100: #e6e7fb;
  --blue-300: #b3b5ef;
  --blue-500: #8c8fe0;
  --blue-700: #6a6dcf;
  --blue-900: #36388c;
  --gray-100: #f5f5f5;
  --gray-300: #e0e0e0;
  --gray-500: #9e9e9e;
  --gray-900: #444444;
  --white: #ffffff;
  --color-primary: var(--orange-900);
  --color-secondary: var(--blue-900);
  --color-gray-light: var(--gray-100);
  --color-gray-mid: var(--gray-500);
  --color-gray-dark: var(--gray-900);
  --color-white: var(--white);
  --gradient-brand: linear-gradient(
    135deg,
    var(--orange-900) 0%,
    var(--blue-900) 100%
  );
}

/* Utility classes */
.text-brand-primary {
  color: var(--color-primary) !important;
}
.text-brand-secondary {
  color: var(--color-secondary) !important;
}
.bg-brand-primary {
  background-color: var(--color-primary) !important;
}
.bg-brand-secondary {
  background-color: var(--color-secondary) !important;
}
.bg-gray-light {
  background-color: var(--color-gray-light) !important;
}

.btn-exp-primary {
  background-image: var(--gradient-brand);
}
.btn-exp-primary {
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
  box-shadow: 0px 0px 2px #ddd;
}

.btn-exp-primary:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
  box-shadow: 0px 0px 8px #ddd;
}

.btn-exp-primary:hover {
  background-color: var(--color-secondary);
  color: #eee;
  box-shadow: 5px 5px 8px #ddd;
}

.btn-fill {
  width: 100%;
  font-size: 1rem !important;
  margin-top: 5px;
}

#about-img {
  max-width: 50%;
  margin-top: -150px;
}

.about-image {
  margin-top: -150px;
}

.justify-content-end {
  margin-top: -100px;
}

.navbar-brand {
  margin-left: 1rem;
  margin-right: 1rem;
  width: 195px;
  flex: 0 0 195px;
}

.navbar-nav .nav-item.aluno-expt {
  display: flex;
  align-items: center;
  margin-right: 12px;
}

.navbar-nav .nav-item.aluno-expt a {
  border: 2px solid var(--color-primary);
  border-radius: 999px;
  color: var(--color-primary) !important;
  line-height: 1;
  padding: 0.7rem 1.2rem !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-item.aluno-expt a::before {
  display: none !important;
}

.navbar-nav .nav-item.aluno-expt a:hover,
.navbar-nav .nav-item.aluno-expt a:focus {
  background-color: var(--color-primary);
  color: var(--color-white) !important;
}

@media (max-width: 991px) {
  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.44);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.12s ease,
      visibility 0.12s ease;
    z-index: 8;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  body.mobile-nav-open .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
  }

  .navbar-area {
    position: relative;
    z-index: 10;
  }

  .navbar-area .container,
  .navbar-area .row,
  .navbar-area .col-lg-12,
  .navbar-area .navbar {
    position: static;
  }

  .navbar-collapse {
    background: #f8f9fc;
    border-top: 1px solid rgba(54, 56, 140, 0.08);
    left: 0 !important;
    right: 0;
    width: 100vw !important;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    z-index: 11 !important;
    padding: 12px 16px 16px !important;
    border-radius: 0;
  }

  .navbar-nav .nav-item.aluno-expt {
    display: block;
  }

  .navbar-nav .nav-item.aluno-expt a,
  .navbar-nav .nav-item .main-btn.main-btn-blue-filled {
    min-height: 52px;
    height: auto !important;
    padding: 0.75rem 1.2rem !important;
    text-align: center;
    margin: 6px 0;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1 !important;
  }

  .navbar-brand {
    width: 180px;
    flex-basis: 180px;
  }

  .landing-page .navbar-toggler.active .toggler-icon:nth-of-type(1),
  .landing-page .navbar-toggler.active .toggler-icon:nth-of-type(3) {
    transform: none;
    top: 0;
  }

  .landing-page .navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 1;
  }
}

/* Botões "Visitante" e "Área do Aluno" no menu mobile */
.navbar-nav .nav-item .main-btn.main-btn-blue-filled {
  color: #ffffff !important;
  display: flex;
  width: 100%;
  text-align: center;
  margin: 6px 0;
  padding: 0.75rem 1.2rem;
  height: auto !important;
  align-items: center;
  justify-content: center;
  line-height: 1 !important;
}

/* Todos os itens do nav ocupam largura total no mobile */
@media (max-width: 991px) {
  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-item a {
    display: block;
    width: 100%;
  }
}

/* Botões principais ocupam largura total no mobile */
@media (max-width: 767px) {
  .main-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Footer: mapa e botões de acesso rápido em largura total */
@media (max-width: 991px) {
  .subscribe-content {
    max-width: 100% !important;
  }

  .footer-link-wrapper {
    display: block !important;
  }

  .footer-link {
    padding-left: 0 !important;
    width: 100%;
  }

  .footer-link .link {
    width: 100%;
  }
}

.logo-expt {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(2px 2px 2px rgb(0 0 0 / 0.2));
}

.logo-stick {
  width: 100%;
}

.logo-footer {
  width: 170px;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  margin-right: 0;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.float:hover {
  background-color: #2b9752;
  color: #fff;
}

.my-float {
  margin-top: 16px;
}
.my-float:hover {
  color: #fff;
}

#razao-cnpj {
  font-size: 10px;
}

.alertMsgBorder {
  border: 3px solid rgb(255, 0, 0);
}
