.elementor-5552 .elementor-element.elementor-element-2a48b89{--display:flex;--min-height:60px;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-5552 .elementor-element.elementor-element-2a48b89.e-con{--align-self:center;}.elementor-5552 .elementor-element.elementor-element-0a2c6ac > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-5552 .elementor-element.elementor-element-0a2c6ac.elementor-element{--align-self:center;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-5552 .elementor-element.elementor-element-0a2c6ac > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-0a2c6ac *//* ========================================= */
/* RESET BÁSICO E ESTADO GLOBAL DO BODY */
/* ========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}


/* ========================================= */
/* HEADER FIXO */
/* ========================================= */

.header {
  width: 100%;
  background: black;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: transform 0.3s ease;
}

.container-header {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* ========================================= */
/* LOGO DESKTOP E MOBILE */
/* ========================================= */

.logo img {
  height: 40px;
  transition: filter 0.3s ease;
}

.menu-mobile .logo-mobile img {
  height: 40px;
  filter: brightness(0) invert(0);
}


/* ========================================= */
/* MENU DESKTOP */
/* ========================================= */

.menu-desktop {
  display: flex;
  gap: 24px;
}

.menu-desktop a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-family: 'Public Sans';
  font-weight: 700;
  transition: opacity 0.3s, border-bottom 0.3s;
  position: relative;
}

.menu-desktop:hover a {
  opacity: 0.4;
}

.menu-desktop a:hover {
  opacity: 1;
}

.menu-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.menu-desktop a:hover::after {
  transform: scaleX(1);
}


/* ========================================= */
/* AÇÕES DESKTOP (LOGIN E CARRINHO) */
/* ========================================= */

.acoes-desktop {
  display: flex;
  align-items: center;
  gap: 12px;
}

.acoes-desktop img {
  width: 24px;
}

/* Separador vertical entre ícone e botão */
.divisor-vertical {
  height: 37px;
  width: 1px;
  background-color: white;
  margin: 0 4px;
}

/* ======================== */
/* BOTÃO LOGIN (VISITANTE) */
/* ======================== */

.acoes-desktop {
  display: flex;
  align-items: center;
  gap: 12px;
}

.acoes-desktop .login {
  background: transparent;
  border: 1px solid white;
  color: white;
  font-size: 16px;
  font-weight: 700;
    font-family: 'Public Sans';
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 4px;
      animation: pisca 1.5s infinite;
    box-shadow: 0px 0px 20px -5px #fff; /*mude a cor aqui*/
}

@keyframes pisca {
    70% {
        box-shadow: 0 0 0 18px transparent;
    }
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

.acoes-desktop img {
  width: 24px;
}


/* ========================================= */
/* MENU MOBILE */
/* ========================================= */

.menu-icon {
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  display: none;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .container-header {
    margin: 0 !important;
  }

  .menu-desktop,
  .acoes-desktop {
    display: none;
  }
}

.hamburger {
  width: 100%;
  height: 100%;
  position: relative;
}

.hamburger span {
  background: white;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  transition: all 0.4s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.menu-open .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
  background: black;
}

.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
  background: black;
}


/* ============================== */
/* MENU MOBILE COMPLETO */
/* ============================== */

.menu-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: white;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1000;
}

.menu-mobile.ativo {
  transform: translateX(0%);
}

.menu-mobile .container-header.mobile {
  padding: 20px 24px;
  display: block;
}

.menu-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 24px 0;
  height: 100%;
  width: 100%;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links a {
  font-size: 32px;
  font-weight: 400;
  color: black;
  text-decoration: none;
}

.acoes-mobile {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding-left: 4px;
}

.acoes-mobile .login {
  border: 1px solid black;
  background: none;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: black;
  border-radius: 4px;
}

.acoes-mobile .icones img {
  width: 20px;
  filter: brightness(0) invert(0);
}

.acoes-mobile .icones {
  align-items: center;
}


/* ========================================= */
/* DROPDOWN CATEGORIA (DESKTOP) */
/* ========================================= */

.dropdown-matematica:hover > .menu-link,
.submenu-matematica:hover ~ .menu-link {
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
  opacity: 1;
}

.menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.4);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.dropdown-matematica:hover ~ .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.dropdown-matematica {
  position: relative;
  z-index: 1000;
}

.submenu-matematica {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-32%);
  width: 1068px;
  height: 273px;
  background: #000;
  padding: 8px;
  border-radius: 8px;
  display: none;
}

.dropdown-matematica:hover .submenu-matematica {
  display: block;
}

.submenu-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  height: 100%;
}

.submenu-inner a {
  width: 257px;
  height: 257px;
  background: #1B1C1C;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: background 0.3s, transform 0.2s;
  padding: 0;
  margin: 0;
}

.submenu-inner a:hover {
  transform: translateY(-2px);
}

.submenu-inner a img {
  width: 257px;
  height: 174px;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
  display: block;
}

.submenu-inner a h4 {
  margin: 8px 8px 4px 16px;
  font-size: 16px;
  font-family: 'Public Sans';
  font-weight: 700;
}

.submenu-inner a p {
  margin: 0 8px 0 16px;
  font-size: 16px;
  font-family: 'Public Sans';
  color: #626262;
  font-weight: 100;
}



/* ========================================= */
/* BOTÃO LOGIN – USUÁRIO LOGADO */
/* ========================================= */

.icone-user-logado {
  margin-right: 6px;
  font-size: 20px;
}

.user-logged-menu {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-family: "Public Sans";
  font-weight: 700;
}

.user-logged-menu .login {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: white;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  font-size: 14px;
  cursor: pointer;
  gap: 6px;
}/* End custom CSS */