/* Cabeçalho */
.container_header {
  display: grid;
  grid-template-columns: 1fr 0.13fr;
  align-items: center;
  gap: 8px;
  margin: 8px 0 8px 8px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.content_header {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  position: relative;
  transition: background-color 0.3s ease;
  border-radius: 8px;
}

.mobile_icon_header {
  display: none;
}

.content_header.scrolled {
  background-color: #fff;
  backdrop-filter: blur(10px);
  margin: 4px;
  border-radius: 8px;
  height: 48px;
}

.logo_header {
  display: flex;
  padding-left: 16px;
  padding-top: 4px;
  height: 100%;
  align-items: center;
}

.logo_header img {
  width: 98.175px;
  height: 22px;

}

.nav_header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  height: 100%;
}
.item_nav_header {
  position: relative;
}
.item_nav_header a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'YSText', 'Suisse Intl', Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #1a1a1a
}

.NA_toggler_hover {
  display: inline;

}

.active_toggler_hover {
  display: none;
}

.item_nav_header {
  position: relative;
  right: 2%;
}

.item_nav_header a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'YSText', 'Suisse Intl', Arial, sans-serif;
  font-size: 14px;
  color: #1a1a1a;
}

.item_nav_header,
.log-in_header {
  padding: 6px 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.item_nav_header:hover,
.log-in_header:hover {
  border-radius: 8px;
  background-color: #e4e1e1;
}

.registration_header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.log-in_header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 9px;
  margin-right: 8px;
}

.log-in_header a {
  text-decoration: none;
  color: #000;
  font-family: YSText, Suisse Intl, Arial, sans-serif;
  font-size: 14px;
}

.btn_header {
  height: 48px;
  border-radius: 12px;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #3A3A3A 0%, #1A1A1A 80%);
  max-width: 208px;
}

.btn_header a {
  text-decoration: none;
  color: #fff;
  font-family: YSText, Suisse Intl, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  flex-shrink: 0;
}

.dropdown_menu {
  display: none;
}

.dropdown_menu.show {
  display: flex;
  position: absolute;
  top: 130%;
  flex-direction: column;
  padding: 4px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 12px 2px #24242412;
  z-index: 998;
  min-width: 100%;
  width: max-content
}

.dropdown_menu.show a {
  color: #2b2b2b;
  font-size: 16px;
  font-family: 'YSText', 'Suisse Intl', Arial, sans-serif;
}

.dropdown_menu.show a {
  border-radius: 12px;
  margin: 4px;
  padding: 8px 12px;
  transition: all 0.2s ease;
  box-shadow: inset 0 0 0 0 #f2f1ee;
  white-space: nowrap;
}

.dropdown_menu.show a:hover {
  color: #000;
  box-shadow: inset 500px 0 0 0 #f2f1ee;
}

.mobile_menu_toggle {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 4px;
    transition: all 0.3s;
}

.hamburger_line {
    width: 20px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animação do hamburger quando ativo */
.mobile_menu_toggle.active .hamburger_line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile_menu_toggle.active .hamburger_line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile_menu_toggle.active .hamburger_line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ====================================
   BACKDROP
   ==================================== */

.mobile_menu_backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile_menu_backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* ====================================
   OVERLAY DO MENU
   ==================================== */

.mobile_menu_overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    background: #f8f8f8;
    z-index: 1999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    border-radius: 0;
}

.mobile_menu_overlay.active {
    transform: translateX(0);
}

.mobile_menu_content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ====================================
   HEADER DO MENU
   ==================================== */

.mobile_menu_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px 16px 16px;
    background: #f2f1ee;
}

.mobile_menu_logo img {
    height: 24px;
    width: 98px;
}

.mobile_menu_close {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    color: #666;
}

.mobile_menu_close:hover {
    background: #f0f0f0;
    color: #1a1a1a;
}

/* ====================================
   NAVEGAÇÃO
   ==================================== */

.mobile_menu_nav {
    flex: 1;

    background-color: #f2f1ee;
}

.mobile_menu_list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile_menu_link {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    width: 100%;
    padding: 12px 16px;
    font-family: 'YSText';
    color: #1a1a1a;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile_menu_link:hover {
    background: rgba(26, 26, 26, 0.05);
    color: #000;
}

/* Seta do dropdown */
.dropdown_arrow {
    transition: transform 0.3s ease;
    color: #666;
}

.dropdown_toggle.active .dropdown_arrow {
    transform: rotate(180deg);
}

/* ====================================
   SUBMENUS
   ==================================== */

.mobile_submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile_submenu.active {
    max-height: 300px; /* Ajustar conforme necessário */
}

.mobile_submenu li {
    background-color: #f2f1ee;
}

.mobile_submenu li:last-child {
    border-bottom: none;
}

.mobile_submenu a {
text-decoration: none;
    color: #1a1a1a;
    min-height: 46px;
    display: flex;
    font-size: 18px;
    font-family: YSText, Suisse Intl, Arial, sans-serif;
    align-items: center;
    line-height: 26px;
    padding: 8px 0 8px 40px;
    box-sizing: border-box;
    cursor: pointer;
}

.mobile_submenu a:hover {
    background: #f8f8f8;
    color: #1a1a1a;
    padding-left: 45px;
}

/* ====================================
   ANIMAÇÕES EXTRAS
   ==================================== */

/* Entrada dos itens do menu */
.mobile_menu_overlay.active .mobile_menu_item {
    animation: slideInFromRight 0.3s ease forwards;
}

.mobile_menu_overlay.active .mobile_menu_item:nth-child(1) { animation-delay: 0.1s; }
.mobile_menu_overlay.active .mobile_menu_item:nth-child(2) { animation-delay: 0.15s; }
.mobile_menu_overlay.active .mobile_menu_item:nth-child(3) { animation-delay: 0.2s; }
.mobile_menu_overlay.active .mobile_menu_item:nth-child(4) { animation-delay: 0.25s; }

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Prevenir scroll quando menu aberto */
body.menu_open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
.mobile_menu_buttons{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: absolute;
    top: 55%;
    width: 100%;
        transition: all 0.8s ease;
    will-change: transform, position;
}
.btn_teste_vocacional{
    height: 48px;
    min-width: 120px;
    box-sizing: border-box;
    display: flex;
    align-self: stretch;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 12px;
    background: linear-gradient(180deg, #3A3A3A 0%, #1A1A1A 80%);
    border-bottom: 2px solid #000000;
    padding: 2px 20px 0;
    margin: 0 16px;
}
.btn_teste_vocacional a{
  font-size: 16px;
  font-weight: 500;
  font-family: YSText, Suisse Intl, Arial, sans-serif;
  color: #fff;
  text-decoration: none;
}
.btn_log-in{
  background-color: #00000014;
    height: 48px;
    border-radius: 12px;
    min-width: 120px;
    align-self: stretch;
    display: flex;
    margin-top: 16px;
    box-sizing: border-box;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 16px;
}
.btn_log-in a{
  font-size: 16px;
  font-weight: 500;
  font-family: YSText, Suisse Intl, Arial, sans-serif;
  color: #1a1a1a;
  text-decoration: none;
}

/* Solo Banner */
.content_solo_banner .body{
    background-color: #fff;
    padding: 24px 40px;
    border-radius: 12px;
}
.value_stamp p{
    font-size: 31px;
}
.content_solo_banner .info{
    justify-content: space-evenly;
}
.content_solo_banner h1{
    font-size: 91px;
}
img.fire_icon.four {
    left: 22%;
    top: -102%;
    z-index: -1;
}
img.fire_icon.two {
    left: 10%;
    bottom: 25%;
}
img.fire_icon.five {
    left: 26%;
    top: 36%;
}
img.fire_icon.three {
    left: 15%;
    top: 42%;
}
.stamp_validade p{
    font-size: 17px;
}
.stamp_validade {
    position: inherit;
    padding: 12px 16px;
    top: 0%;
    left: 0%;
    align-self: flex-start;
}
.stamp_validade--absolute {
    position: absolute;
}
.content_solo_banner .head {
    position: relative;
    height: 44px;
    top: 7%;
    left: 3%;
}