@charset "UTF-8";

@font-face {
  font-family: "Lexend Deca";
  src: url(../fonts/LexendDeca-VariableFont_wght.ttf) format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-dark-bg: #030d26;
  --color-card-dark: #0e1038;
  --color-teal: #00d9dc;
  --color-section-teal: #9de7ff;
  --color-white: #ffffff;
  --color-text-light: #ffffff;
  --color-text-dark: #01061a;
  --color-text-muted: #b8bfcf;
  --color-text-muted-dark: #b8bfcf;
  --color-border: rgba(255, 255, 255, 0.12);
  --color-border-dark: rgba(14, 16, 56, 0.15);
  --font-base: "Lexend Deca", sans-serif;
  --font-mono: "Space Mono", monospace;
}

/* Reset */
*,
*:before,
*:after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Base */
.hp-page html,
.hp-page {
  font-size: 16px;
  scroll-behavior: smooth;
}

body.page-template-page-homepage,
body.page-template-page-contacts {
  font-family: var(--font-base);
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  background-color: #030d26;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.hp-page a {
  color: inherit;
  text-decoration: none;
}
.hp-page img {
  max-width: 100%;
  display: block;
}

/* Layout */
.hp-page .container {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  max-width: 78.75rem;
  margin-left: auto;
  margin-right: auto;
}

/* Header */
.hp-page .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background-color: transparent;
  transition: background-color 0.5s ease;
}
@media (max-width: 991.98px) {
  .hp-page .site-header {
    height: 76px;
    padding: 0;
    overflow: hidden;
    transition: height 0.35s ease, background-color 0.35s ease;
  }
  .hp-page .site-header.nav-open {
    height: 100vh;
    background-color: #0E2240;
  }
}
.hp-page .site-header--scrolled {
  background-color: #030d26;
}

.hp-page .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  min-height: 76px;
}
.hp-page .nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hp-page .nav__logo img {
  /* height: 5rem; */
  width: auto;
  transform: translate(-1.5625rem);
  max-width: 140px;
}
.hp-page .nav__login-btn {
  text-transform: uppercase;
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 3.4375rem;
}

/* Footer */
.hp-page .site-footer {
  padding-top: 3.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.hp-page .site-footer .strong-link {
  color: #00d9dc;
  font-weight: 600;
}

.hp-page .footer__top {
  position: relative;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  padding-bottom: 3.125rem;
}
.hp-page .footer__top:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
}
.hp-page .footer__brand {
  flex: 0 0 16.25rem;
}
.hp-page .footer__brand-name {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}
.hp-page .footer__desc {
  font-size: 0.8125rem;
  color: #fff;
  line-height: 1.7;
}
.hp-page .footer__accessibility {
  height: 1.875rem;
}
.hp-page .footer__nav {
  flex: 0 0 auto;
  padding-right: 8.75rem;
}
@media (max-width: 991.98px) {
  .hp-page .footer__nav {
    padding-right: 0;
  }
}
.hp-page .footer__nav-title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.375rem;
}
.hp-page .footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hp-page .footer__nav-list a {
  font-size: 0.875rem;
  color: #fff;
  transition: opacity 0.2s ease;
}
.hp-page .footer__nav-list a:hover {
  text-decoration: underline;
  opacity: 0.75;
}
.hp-page .footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  width: 100%;
}
.hp-page .footer__bottom-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.hp-page .footer__logo img {
  height: 5.75rem;
  object-fit: contain;
  margin-left: -1.25rem;
}
.hp-page .footer__copyright {
  font-size: 0.75rem;
  color: #fff;
  width: 100%;
  text-align: left;
}
.hp-page .footer__copyright a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
@media (max-width: 991.98px) {
  .hp-page .footer__copyright br {
    display: none;
  }
}
.hp-page .footer__social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
@media (max-width: 991.98px) {
  .hp-page .footer__top {
    flex-direction: column;
    gap: 3.75rem;
    text-align: center;
  }
  .hp-page .footer__brand {
    flex: none;
  }
  .hp-page .footer__bottom {
    gap: 0.9375rem;
    padding-bottom: 2.5rem;
    padding-top: 1.25rem;
  }
  .hp-page .footer__bottom-logos {
    justify-content: space-between;
  }
  .hp-page .footer__copyright {
    text-align: center;
  }
}

/* Hero */
.hp-page .hero {
  overflow: hidden;
}
.hp-page .hero__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 991.98px) {
  .hp-page .hero__inner {
    gap: 0;
    flex-direction: column;
  }
}
.hp-page .hero__content {
  flex: 1 1 50%;
  max-width: 32.5rem;
}
.hp-page .hero__title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}
.hp-page .hero__title .title-gradient {
  background: linear-gradient(90deg, #00d9dc, #8e78ce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hp-page .hero__desc {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.4;
}
@media (max-width: 991.98px) {
  .hp-page .hero__desc br {
    display: none;
  }
}
.hp-page .hero__visuals {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 991.98px) {
  .hp-page .hero__visuals {
    flex-wrap: wrap;
    order: -1;
    margin-top: -6.875rem;
    margin-bottom: -3.125rem;
  }
}
.hp-page .hero__image {
  max-width: 150%;
  transform: translate(7%);
}
@media (max-width: 991.98px) {
  .hp-page .hero__image {
    max-width: 140%;
    transform: translate(4%);
  }
}

/* About */
.hp-page .about {
  padding: 3.75rem 0 0;
  color: #fff;
}
.hp-page .about__inner {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
@media (max-width: 991.98px) {
  .hp-page .about__inner {
    flex-direction: column;
    gap: 1.875rem;
  }
}
.hp-page .about__heading {
  margin-bottom: 2.1875rem;
}
@media (max-width: 991.98px) {
  .hp-page .about__heading {
    margin-bottom: 1.25rem;
    flex: none;
  }
}
.hp-page .about__col {
  flex: 1;
  font-size: 1.25rem;
  line-height: 1.4;
}
@media (max-width: 991.98px) {
  .hp-page .about__col {
    font-size: 1rem;
  }
}
.hp-page .about__col p + p {
  margin-top: 1rem;
}
.hp-page .about__footnote {
  font-size: 0.875rem;
  color: #b8bfcf;
  line-height: 1.4;
}

/* Aims */
.hp-page .aims {
  padding: 10rem 0;
}
@media (max-width: 991.98px) {
  .hp-page .aims {
    padding: 5.625rem 0 6.25rem;
  }
}
.hp-page .aims__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.hp-page .aims__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* Application Period */
.hp-page .application-period {
  background-color: #9de7ff;
  padding: 3.75rem;
  width: 74.375rem;
  max-width: 90%;
  margin-inline: auto;
  border-radius: 1.75rem;
}
@media (max-width: 991.98px) {
  .hp-page .application-period {
    max-width: calc(100% - 3.75rem);
    padding: 3.125rem 1.875rem;
  }
}
.hp-page .application-period__inner {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .hp-page .application-period__inner {
    flex-direction: column;
    gap: 0;
  }
}
.hp-page .application-period__info {
  width: 65%;
}
.hp-page .application-period__info p {
  color: #01061a;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.875rem;
}
.hp-page .application-period__info p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .hp-page .application-period__info {
    width: 100%;
  }
}
.hp-page .application-period__title {
  margin-bottom: 1.875rem;
}
.hp-page .application-period__dates {
  display: flex;
  gap: 3.75rem;
  margin-top: 3.75rem;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .hp-page .application-period__dates {
    gap: 1.875rem;
  }
}
.hp-page .application-period__actions {
  flex: 0 0 20rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 5rem;
}
@media (max-width: 991.98px) {
  .hp-page .application-period__actions {
    flex: none;
    width: 100%;
    padding-top: 3.75rem;
  }
}

.hp-page .date-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.hp-page .date-badge__icon {
  background-color: #01061a;
  border-radius: 0.75rem;
  padding: 1rem;
}
.hp-page .date-badge__text {
  display: flex;
  flex-direction: column;
}
.hp-page .date-badge__label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #01061a;
}
.hp-page .date-badge__date {
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 600;
  color: #01061a;
}

/* Evaluation */
.hp-page .evaluation {
  padding: 7.5rem 0 0;
}
@media (max-width: 991.98px) {
  .hp-page .evaluation {
    padding: 6.25rem 0 0;
  }
}
.hp-page .evaluation__header {
  text-align: center;
  max-width: 37.5rem;
  margin-inline: auto;
  margin-bottom: 3.75rem;
}
.hp-page .evaluation__subtitle {
  color: #b8bfcf;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.hp-page .evaluation__swiper .swiper-pagination {
  display: none;
  position: relative;
  bottom: auto;
  margin-top: 1.875rem;
}
.hp-page .evaluation__swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #0e1038;
  opacity: 0.4;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.hp-page
  .evaluation__swiper
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #00d9dc;
  opacity: 1;
}
@media (max-width: 991.98px) {
  .hp-page .evaluation__swiper {
    display: block;
  }
  .hp-page .evaluation__swiper .swiper-pagination {
    display: flex;
    justify-content: center;
  }
}

/* CTA */
.hp-page .cta {
  padding: 7.5rem 0 0;
}
@media (max-width: 991.98px) {
  .hp-page .cta {
    padding: 5.625rem 0 6.25rem;
  }
}
.hp-page .cta__inner {
  text-align: center;
  max-width: 37.5rem;
  margin-inline: auto;
}
.hp-page .cta__title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.875rem;
}
.hp-page .cta__desc {
  color: #b8bfcf;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 3.75rem;
}
@media (max-width: 991.98px) {
  .hp-page .cta__desc {
    margin-bottom: 2.1875rem;
  }
}

/* Help */
.hp-page .help {
  padding: 6.25rem 0 4.375rem;
}
@media (max-width: 991.98px) {
  .hp-page .help {
    padding: 0 0 6.25rem;
  }
}
.hp-page .help__inner {
  text-align: center;
  background-color: #030d26;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.125rem;
  padding: 2.8125rem 3.75rem 3.125rem;
  max-width: 50rem;
  margin-inline: auto;
}
@media (max-width: 991.98px) {
  .hp-page .help__inner {
    padding: 2.8125rem 2.1875rem;
  }
}
.hp-page .help__icon {
  text-align: center;
}
.hp-page .help__icon img {
  display: inline-block;
}
.hp-page .help__title {
  font-size: 2.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.9375rem;
}
.hp-page .help__desc {
  color: #b8bfcf;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.hp-page .link--teal {
  color: #00d9dc;
  text-decoration: underline;
  word-wrap: break-word;
}
.hp-page .link--teal:hover {
  text-decoration: none;
}

/* Utilities */
.hp-page .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
.hp-page .section-title--dark {
  color: #01061a;
}

/* Buttons */
.hp-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-base);
  font-size: 0.875rem;
  border-radius: 0.75rem;
  height: 3.4375rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}
.hp-page .btn--block {
  display: flex;
  width: 100%;
}
.hp-page .btn--primary {
  background-color: #00d9dc;
  border-color: #00d9dc;
  color: #01061a;
}
.hp-page .btn--primary:hover {
  background-color: #00b1b3;
  border-color: #00b1b3;
}
.hp-page .btn--submit {
  background-color: #00d9dc;
  border-color: #00d9dc;
  color: #01061a;
  width: 20rem;
  max-width: 90%;
  height: 3.625rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  box-shadow: 0 8px 14px rgba(0, 217, 220, 0.5);
}
.hp-page .btn--submit:hover {
  background-color: #74ddff;
  border-color: #74ddff;
}
.hp-page .btn--login {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
  font-size: 0.8125rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
}
.hp-page .btn--login:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
.hp-page .btn--outline-dark {
  background-color: transparent;
  border-color: #01061a;
  color: #01061a;
}
.hp-page .btn--outline-dark:hover {
  background-color: rgba(14, 16, 56, 0.06);
}
.hp-page .btn--dark {
  background-color: #01061a;
  border-color: #01061a;
  color: #00d9dc;
  box-shadow: 0 8px 14px rgba(1, 6, 25, 0.5);
}
.hp-page .btn--dark:hover {
  background-color: #030f41;
  border-color: #030f41;
}
.hp-page .btn--register {
  background-color: #01061a;
  border-color: #01061a;
  color: #fff;
}
.hp-page .btn--outline.is-active {
  background-color: #00d9dc;
  border-color: #00d9dc;
  color: #01061a;
}

/* Badge */
.hp-page .badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.3125rem 0.875rem;
  height: 1.5625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00d9dc;
  border: 2px solid #00d9dc;
  border-radius: 999px;
}

/* Cards */
.hp-page .card {
  border-radius: 1.125rem;
  padding: 3.75rem;
}
.hp-page .card__icon img {
  min-width: 1.5625rem;
}
.hp-page .card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.hp-page .card__desc {
  font-size: 0.8125rem;
  line-height: 1.65;
  white-space: break-spaces;
}

.hp-page .card--aim {
  background-color: #0e1038;
  flex: 1 1 calc(33.333% - 0.875rem);
  min-width: 12.5rem;
  color: #fff;
  border-radius: 1.125rem;
  padding: 1.875rem;
  border: 2px solid rgba(14, 16, 56, 0.15);
  display: flex;
  gap: 1rem;
}
.hp-page .card--aim .card__title {
  color: #fff;
}
.hp-page .card--aim .card__desc {
  color: #b8bfcf;
}
@media (max-width: 991.98px) {
  .hp-page .card--aim {
    flex: 1 1 100%;
  }
}

.hp-page .card--criteria {
  background-color: #fff;
  border: 1px solid rgba(14, 16, 56, 0.1);
  width: 100%;
  text-align: center;
  border-radius: 1.125rem;
  padding: 1.875rem;
  min-height: 18.125rem;
}
@media (max-width: 991.98px) {
  .hp-page .card--criteria {
    max-width: 15.625rem;
    margin-inline: auto;
  }
}
.hp-page .card--criteria .card__icon {
  display: flex;
  justify-content: center;
}
.hp-page .card--criteria .card__icon img {
  width: 5rem;
  height: 5rem;
  margin-bottom: 1.25rem;
}
.hp-page .card--criteria .card__title {
  color: #01061a;
  font-size: 1.125rem;
  white-space: break-spaces;
}
.hp-page .card--criteria .card__desc {
  color: #01061a;
}

/* Modal */
.hp-page .modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 5.125rem;
  padding-right: calc((100% - 78.75rem) / 2 + 1.875rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.hp-page .modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 991.98px) {
  .hp-page .modal-overlay {
    padding-right: 0;
  }
}
.hp-page .modal {
  background-color: #fff;
  border-radius: 0;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.18);
  padding: 3.125rem 1.5625rem;
  width: 100%;
  max-width: 23rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.hp-page .modal__title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #01061a;
  margin: 0;
  margin-bottom: 0.25rem;
}
.hp-page .modal__form {
  display: flex;
  flex-direction: column;
}
.hp-page .modal__input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1.5px solid rgba(14, 16, 56, 0.15);
  border-radius: 0.75rem;
  font-family: var(--font-base);
  font-size: 0.9375rem;
  color: #01061a;
  background: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.hp-page .modal__input::placeholder {
  color: #b8bfcf;
}
.hp-page .modal__input:focus {
  border-color: #01061a;
}
.hp-page .modal__input:invalid:not(:placeholder-shown) {
  border-color: #d0382e;
}
.hp-page .modal__register {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 0.625rem;
}
.hp-page .modal__register-prompt {
  font-size: 1.125rem;
  color: #01061a;
  font-weight: 600;
  margin: 0;
}

/* Suppress old theme styles on new-design pages */
body.page-template-page-homepage #masthead,
body.page-template-page-homepage .banner-wrapper,
body.page-template-page-homepage #content,
body.page-template-page-contacts #masthead,
body.page-template-page-contacts .banner-wrapper,
body.page-template-page-contacts #content {
  display: none !important;
}

.nav__menu {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__menu li {
  padding: 23px 0;
  vertical-align: middle;
  position: relative;
}

.nav__menu li a {
  color: inherit;
  text-decoration: none;
}

.nav__menu .sub-menu {
  position: absolute;
  min-width: 195px;
  background: #fff;
  text-align: left;
  top: 70px;
  left: -10px;
  z-index: 9;
  min-height: 50px;
  display: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__menu li:hover .sub-menu {
  display: block;
}

.nav__menu .sub-menu li {
  padding: 20px 10px;
  border-bottom: 1px solid;
  width: 100%;
  margin-left: 0;
}

.nav__menu .sub-menu a {
  padding: 0 5px;
  font-size: 14px;
}

.current_page_item a:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #009994;
    transition: width 0.3s;
}

#area-pessoal-item .sub-menu a{
    color: #58585b;
    /* font-weight: bold; */
    /* text-transform: uppercase; */
}

/* ── Mobile navigation ──────────────────────────────────────────────────────── */
.hp-page .containerburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  position: static; /* override style.css absolute positioning */
  z-index: auto;
}

.hp-page .containerburger .bar1,
.hp-page .containerburger .bar2,
.hp-page .containerburger .bar3 {
  display: block;
  width: 25px;
  height: 4px;
  margin: 4px 0;
  border-radius: 40px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.hp-page .containerburger.change .bar1 {
  transform: rotate(-45deg) translate(-2px, 3px);
}

.hp-page .containerburger.change .bar2 {
  opacity: 0;
}

.hp-page .containerburger.change .bar3 {
  transform: rotate(45deg) translate(-8px, -9px);
}

@media (max-width: 991.98px) {
  .hp-page .containerburger {
    display: block;
  }

  /* Logged-out: keep logo + login btn on one row */
  .hp-page .nav {
    flex-wrap: nowrap;
    align-items: center;
    min-height: 76px;
  }

  /* Logged-in: allow nav__menu to wrap below the logo/burger row */
  .logged-in .hp-page .nav {
    flex-wrap: wrap;
    align-content: flex-start;
  }

  /* Logo fills left, burger fills right, both stay in the 76px top row */
  .hp-page .nav__logo {
    flex: 1;
  }

  /* Menu occupies its own full-width row below, clipped by header height */
  .hp-page .nav__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 0;
    list-style: none;
    position: static;
    background: transparent;
    box-shadow: none;
  }

  .hp-page .nav__menu > li {
    width: 100%;
    padding: 0.75rem 1.875rem;
    text-align: center;
  }

  .hp-page .nav__menu .sub-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    min-width: unset;
    display: none;
    padding: 0;
  }

  .hp-page .nav__menu .menu-item-has-children.is-open > .sub-menu {
    display: block;
  }

  .hp-page .nav__menu .sub-menu li {
    border-bottom: none;
    padding: 0.5rem 1.875rem;
    text-align: center;
  }

  #area-pessoal-item .sub-menu a{
    color: #fff;
  
  }
}

/* ── Contacts page ─────────────────────────────────────────────────────────── */

.hp-page .contacts-hero {
  padding: 3.75rem 0;
  text-align: center;
}
.hp-page .contacts-hero__subtitle {
  color: #b8bfcf;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 1rem;
}
@media (max-width: 991.98px) {
  .hp-page .contacts-hero__subtitle {
    font-size: 0.9375rem;
  }
}

.hp-page .contacts-table-section {
  padding-bottom: 7.5rem;
}
@media (max-width: 991.98px) {
  .hp-page .contacts-table-section {
    padding-bottom: 5rem;
  }
}

.hp-page .contacts-table-wrap {
  background-color: #0e1038;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  overflow: hidden;
}

.hp-page .contacts-table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 991.98px) {
  .hp-page .contacts-table {
    display: none;
  }
}
.hp-page .contacts-table thead {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.hp-page .contacts-table th {
  padding: 1rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00d9dc;
  text-align: left;
}
.hp-page .contacts-table tbody tr {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hp-page .contacts-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.03);
}
.hp-page .contacts-table td {
  padding: 1.25rem 1.5rem;
  vertical-align: top;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #b8bfcf;
}
.hp-page .contacts-table td:first-child {
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  width: 14%;
}
.hp-page .contacts-table td:nth-child(2) {
  width: 58%;
}
.hp-page .contacts-table td:nth-child(3) {
  width: 28%;
}

.hp-page .contact-cards {
  display: none;
}
@media (max-width: 991.98px) {
  .hp-page .contact-cards {
    display: flex;
    flex-direction: column;
  }
}
.hp-page .contact-card {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hp-page .contact-card:first-child {
  border-top: none;
}
.hp-page .contact-card__country {
  font-size: 0.875rem;
  font-weight: 700;
  color: #00d9dc;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.hp-page .contact-card__info {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #b8bfcf;
  margin-bottom: 0.625rem;
}
.hp-page .contact-card__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b8bfcf;
  margin-bottom: 0.25rem;
}
#phcc-login-form .form-message{
  text-align: center;
}

