@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700&display=swap");
.bg-dark-blue {
  background-color: #223254 !important;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.light {
  font-weight: 300 !important;
}

.ff-heading {
  font-family: "Bebas Neue", Arial, sans-serif !important;
}

.ff-secondary {
  font-family: "Montserrat", Arial, sans-serif !important;
}

html,
body {
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
}

.section-title {
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 4em;
  color: #ffffff;
  line-height: 1.1em;
  letter-spacing: 0.02em;
  text-align: left;
  margin-bottom: 0;
}
.section-title span {
  font-weight: 400;
  display: inline;
}

.event-card {
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(34, 50, 84, 0.08);
  border-radius: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: auto;
}
.event-card .card-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #223254;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.header-bar {
  width: 100%;
  height: 10px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.header-bar--top {
  margin-bottom: 0;
}
.header-bar--bottom {
  margin-top: 0;
}
.header-bar span {
  display: block;
  height: 100%;
  flex: 1 1 33.333%;
}
.header-bar span:nth-child(1) {
  background: #0068ff;
}
.header-bar span:nth-child(2) {
  background: #223254;
}
.header-bar span:nth-child(3) {
  background: #5497e8;
}
.header-bar--bottom span:nth-child(1) {
  background: #5497e8;
}
.header-bar--bottom span:nth-child(2) {
  background: #0068ff;
}
.header-bar--bottom span:nth-child(3) {
  background: #223254;
}

.site-header {
  background: #ffffff;
  min-height: 90px;
}
.site-header .row {
  min-height: 90px;
}

.header-logo {
  width: auto;
}
.header-logo--main {
  max-width: 25vw;
}
.header-logo--gov {
  max-width: 25vw;
}

.navbar-toggler {
  background: transparent;
  border: none;
  padding: 8px 12px;
  border-radius: 0;
  position: relative;
  z-index: 1101;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 32px;
  height: 3px;
  background: #0068ff;
  position: relative;
  transition: all 0.3s ease;
}
.navbar-toggler-icon::before, .navbar-toggler-icon::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: #0068ff;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.navbar-toggler-icon::before {
  top: -10px;
}
.navbar-toggler-icon::after {
  top: 10px;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  background: transparent;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}
.navbar-toggler[aria-expanded=true] {
  position: fixed;
  top: 24px;
  right: 24px;
  padding: 20px;
}

.main-menu {
  font-size: 1.1rem;
}
.main-menu .d-flex {
  display: flex !important;
}
.main-menu a {
  text-decoration: none;
}
.main-menu .navbar-nav {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.main-menu .navbar-nav > li {
  display: block;
}

@media (max-width: 992px) {
  .main-menu.collapse:not(.show) {
    display: none !important;
  }
  .navbar-collapse:not(.show) {
    display: none !important;
  }
  .main-menu a {
    background: transparent !important;
    color: #000000 !important;
    border-radius: 0;
    padding: 2vh 3vh;
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: 0.02em;
    font-size: clamp(1.4rem, 5vh, 3rem);
    text-align: center;
  }
  .main-menu a:hover {
    color: #000000;
    text-decoration: none;
    background: transparent !important;
  }
  .main-menu.collapse {
    transition: none;
  }
  .main-menu.collapse.show {
    opacity: 0;
    animation: menuOverlayFadeIn 120ms ease-out forwards;
    will-change: opacity;
  }
}
@keyframes menuOverlayFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Fullscreen overlay when menu is open */
.main-menu.collapse.show {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 1050;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.main-menu.collapse.show .navbar-nav,
.main-menu.collapse.show .d-flex {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 3vh;
  text-align: center;
}
.main-menu.collapse.show .main-menu a {
  width: auto;
  background: transparent;
  color: #000000 !important;
  border-radius: 0;
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
  text-align: center;
}
.main-menu.collapse.show .main-menu a:hover {
  color: #000000;
  text-decoration: none;
}

@media (min-width: 1200px) {
  .main-menu {
    display: block !important;
  }
  .main-menu .navbar-nav {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
  }
  .main-menu .navbar-nav > li > a {
    display: inline-block;
    background: #0068ff;
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    line-height: 1.2;
    transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  }
  .main-menu .navbar-nav > li > a:hover,
  .main-menu .navbar-nav > li > a:focus {
    opacity: 0.85;
    color: #ffffff;
    text-decoration: none;
  }
}
.site-footer {
  background: #222;
  color: #fff;
}
.site-footer a {
  color: #fff;
  text-decoration: underline;
}

.footer-bar-top {
  border-top: 6px solid #5497e8;
}

.footer-logo {
  width: auto;
}

.footer-menu .footer-link {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.6rem;
  letter-spacing: -1.5px;
  font-weight: 300;
}

.footer-menu__col--left {
  padding-left: 16px;
}

.footer-menu__col--right {
  padding-right: 16px;
}

.border-start-blue {
  border-left-color: #0068ff !important;
  border-left-width: 3px !important;
}

.footer-contact .border-start-blue {
  padding-top: 24px;
  padding-bottom: 24px;
}

.section-about {
  background-image: url("assets/img/crosses.jpg");
  background-color: #0068ff;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
}
.section-about .container,
.section-about .container-fluid,
.section-about .row,
.section-about .col-lg-3,
.section-about .col-lg-9 {
  position: relative;
  z-index: 2;
}
.section-about .container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}
.section-about .container,
.section-about .container-fluid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.section-about .event-card p {
  font-size: 1.2rem;
  color: #223254;
  margin-bottom: 32px;
}
.section-about .card-title {
  font-size: 1.8rem;
  color: #0068ff;
}
.section-about .card-title strong,
.section-about .card-title .highlight {
  color: #223254;
}
.section-about .btn-saiba,
.section-about .btn-learn,
.section-about .btn-topics {
  background: #0068ff;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 0;
  padding: 12px 0;
  width: 100%;
  text-align: center;
  letter-spacing: 0.02em;
  transition: background 0.3s;
}
.section-about .btn-saiba:hover,
.section-about .btn-learn:hover,
.section-about .btn-topics:hover {
  background: #223254;
}
.section-about .row {
  margin-left: 0;
  margin-right: 0;
}
.section-about .row .col-md-6 {
  padding: 0 16px;
}
.section-about .row.g-4 {
  gap: 0;
  row-gap: 32px;
}
.section-about .col-lg-3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 0;
  margin-bottom: 32px;
}
.section-about .col-lg-9 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-home {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.banner {
  background: #fff;
  color: #fff;
}
.banner__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.banner__col {
  flex-basis: 100%;
  max-width: 100%;
}
.banner__col--image {
  background: transparent;
}
.banner__col--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 24px;
}
.banner__title {
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 1.8rem;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.banner__subtitle {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 20px;
  background: #223254;
  padding: 10px;
}
.banner__subtitle strong {
  font-weight: 700;
}
.banner__date {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  background: #0068ff;
  padding: 10px;
}
.banner__date .bold {
  font-weight: 700;
  font-size: 1.3rem;
}

.presentation {
  background: #f8f9fa;
  color: #222;
}

.logos {
  background: #fff;
  border: 1px solid #eaeaea;
}

@media (max-width: 992px) {
  .banner-home {
    height: auto;
  }
  .banner-img {
    height: 100vh;
    object-fit: contain;
    object-position: center;
    display: block;
    background-color: #fff;
  }
}
@media (min-width: 992px) {
  .section-about .container {
    flex-direction: row;
  }
  .section-about .col-lg-3 {
    justify-content: flex-end;
    padding-right: 32px;
    margin-bottom: 0;
  }
  .banner__container {
    flex-direction: row;
  }
  .banner__col {
    flex-basis: 50%;
    max-width: 50%;
  }
  .banner__col--text {
    padding: 0 80px;
  }
  .banner__title {
    font-size: 3rem;
  }
  .banner__subtitle {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .section-about .event-card {
    margin-bottom: 24px;
  }
  .section-about .row.g-4 {
    row-gap: 24px;
  }
}
.section-participation {
  padding: 120px 0;
}
.section-participation .section-title {
  color: #0068ff;
  text-align: center;
  margin-bottom: 1rem;
}
.section-participation .text-blue {
  color: #0068ff;
}
.section-participation .text-dark-blue {
  color: #223254;
  margin-bottom: 2rem;
}
.section-participation .btn-register {
  border-radius: 0;
  padding: 12px 120px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.25em;
}

.section-about {
  position: relative;
}
.section-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: #5497e8;
  z-index: 1;
}

.section-schedule {
  background: #223254;
  background-image: url("assets/img/schedule-half-circle.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 10em 0;
}
.section-schedule .container,
.section-schedule .container-fluid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.section-schedule .container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}
.section-schedule::before, .section-schedule::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background: #5497e8;
  z-index: 1;
}
.section-schedule::before {
  top: 0;
}
.section-schedule::after {
  bottom: 0;
}
.section-schedule .card-title {
  color: #0068ff;
}
.section-schedule .btn-learn {
  background: #0068ff;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 0;
  padding: 12px 0;
  width: 100%;
  text-align: center;
  letter-spacing: 0.02em;
  transition: background 0.3s;
}
.section-schedule .btn-learn:hover {
  background: #223254;
}
.section-schedule .row {
  gap: 0;
  row-gap: 32px;
}
.section-schedule .row .col-md-6 {
  padding: 0 16px;
}

.section-login {
  background: #fff;
  color: #222;
  padding: 80px 0;
}
.section-login h1 {
  font-family: "Bebas Neue", Arial, sans-serif;
  color: #223254;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.section-login #congresso-loginform {
  background: #fff;
  border: 1px solid #eaeaea;
  padding: 24px;
  border-radius: 0;
}
.section-login #congresso-loginform label {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  color: #223254;
  margin-bottom: 4px;
}
.section-login #congresso-loginform input[type=text],
.section-login #congresso-loginform input[type=password] {
  width: 100%;
  border-radius: 0;
  border: 1px solid #ccc;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-family: "Montserrat", Arial, sans-serif;
}
.section-login #congresso-loginform .forgetmenot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 16px;
}
.section-login #congresso-loginform .submit .button-primary {
  background: #0068ff;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
  padding: 10px 16px;
}
.section-login #congresso-loginform .submit .button-primary:hover {
  background: #223254;
}
.section-login .lostpassword-link a {
  color: #0068ff;
}

.section-certificados {
  background: #f8f9fa;
  color: #222;
  padding: 80px 0;
  position: relative;
}
.section-certificados::before, .section-certificados::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background: #5497e8;
  z-index: 1;
}
.section-certificados::before {
  top: 0;
}
.section-certificados::after {
  bottom: 0;
}
.section-certificados h1 {
  font-family: "Bebas Neue", Arial, sans-serif;
  color: #0068ff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.section-certificados .card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 0;
  box-shadow: none;
}
.section-certificados .card-title {
  font-family: "Bebas Neue", Arial, sans-serif;
  color: #223254;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-certificados .btn-primary {
  background: #0068ff;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 0;
  padding: 10px 16px;
  text-transform: uppercase;
  transition: background 0.3s ease;
}
.section-certificados .btn-primary:hover {
  background: #223254;
}
.section-certificados .alert {
  border-radius: 0;
}
@media (max-width: 768px) {
  .section-certificados .row.g-4 {
    row-gap: 24px;
  }
  .section-certificados .card {
    margin-bottom: 12px;
  }
}
