.elementor-773 .elementor-element.elementor-element-18fff09{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0%;--padding-bottom:0%;--padding-left:5%;--padding-right:5%;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:1024px){.elementor-773 .elementor-element.elementor-element-18fff09{--padding-top:0rem;--padding-bottom:0rem;--padding-left:0rem;--padding-right:0rem;}}@media(min-width:768px){.elementor-773 .elementor-element.elementor-element-18fff09{--content-width:1440px;}}/* Start custom CSS for container, class: .elementor-element-18fff09 *//* ========== RESET + BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ========== HEADER STICKY + SCROLL ========== */
#myHeader {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  backdrop-filter: none;
  z-index: 999;
  transition: transform 0.4s ease,
              background-color 0.4s ease,
              backdrop-filter 0.4s ease;
}
/* Escurece após 200px ou fora da homepage */
#myHeader.scrolled {
  background: rgba(18, 75, 126,1); /* cor do header quando scrolled */
  backdrop-filter: blur(8px);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;   /* centraliza horizontalmente */
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top:5px;
  padding-bottom:5px;
  position: relative;
}

.logo-container img {
  height: 60px;
}

/* Para dispositivos até 1512px */
@media (max-width: 1512px) {
  .header-container {
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* Para dispositivos acima de 1512px */
@media (min-width: 1513px) {
  .header-container {
    padding-left: 0;
    padding-right: 0;
  }
}


/* ========== BOTÃO "MENU" (DESKTOP) ========== */
.menu-btn {
  display: inline-block; /* visível em desktop */
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  z-index: 1002;
  transition: background-color 0.3s ease;
  -webkit-tap-highlight-color: transparent; /* remove highlight no Safari mobile */
}
.menu-btn:hover {
  background-color: rgba(255,255,255,0.1);
}

/* ========== BOTÃO HAMBURGUER (MOBILE) ========== */
.menu-button {
  display: none; /* só em mobile */
  width: 40px; 
  height: 30px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1002;
  position: relative;

  /* Remover destaque cor-de-rosa no iOS */
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-appearance: none;
  appearance: none;
}
.menu-button .line {
  position: absolute;
  width: 30px; 
  height: 3px;
  background: #fff;
  border-radius: 2px;
  left: 50%; 
  transform: translateX(-50%);
  transition: transform 0.4s ease, opacity 0.4s ease, width 0.4s ease;
}
.line1 { top: 3px; }
.line2 { top: 13px; }
.line3 { top: 23px; }
/* Animar em "X" */
.menu-button.active .line1 {
  transform: translateX(-50%) translateY(10px) rotate(45deg);
}
.menu-button.active .line2 {
  width: 0; 
  opacity: 0;
}
.menu-button.active .line3 {
  transform: translateX(-50%) translateY(-10px) rotate(-45deg);
}

/* ========== OVERLAY (Desktop + Mobile) ========== */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; 
  height: 100vh;
  background: rgba(18, 75, 126,0.8); /* mesmo tom usado no header scrolled */
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 500;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========== .my-menu-container => envolve menu-items + botões ========== */
.my-menu-container {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

/* ========== MENU ITEMS => DESKTOP (padrão) ========== */
.menu-items {
  position: absolute; 
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.menu-items.active {
  transform: translateY(-50%) translateX(-150px);
  opacity: 1;
  pointer-events: auto;
}

.menu-items a {
  color: #fff !important;
  text-decoration: none; 
  font-size: 16px;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}
/* Sublinhado no hover => apenas UMA linha */
.menu-items a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease, left 0.3s ease;
  color: #fff !important;
}
.menu-items a:hover::after {
    color: #fff;
  width: 100%;
  left: 0;
}

/* SUBMENU (DESKTOP) => vertical, sem fundo extra */
.dropdown-group {
  position: relative;
  display: flex; 
  align-items: center;
}
.dropdown-toggle {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.arrow {
  margin-left: 4px;
  transition: transform 0.3s ease;
}
.sub-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0; right: 0;
  display: flex;
  flex-direction: column; 
  gap: 8px;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sub-menu.show {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}
.sub-menu a {
  text-decoration: none;
  position: relative;
  font-size: 15px;
  padding: 4px 0;
}
.sub-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease, left 0.3s ease;
}
.sub-menu a:hover::after {
  width: 100%;
  left: 0;
}

/* ========== MOBILE => OFF-CANVAS (override) ========== */
@media (max-width: 1024px) {
  .menu-btn {
    display: none;  
  }
  .menu-button {
    display: block; 
  }
    .logo-container {
  margin-top: 5px;
}
  .logo-container img {
  height: 40px;
}

  .menu-items {
    position: fixed !important;
    top: 0; right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(18, 75, 126,1);
    transform: translateX(100%) !important;
    transition: transform 0.4s ease !important;
    flex-direction: column;
    gap: 20px;
    padding: 80px 20px;
    opacity: 1;
    pointer-events: auto;
    align-items: flex-start;
    z-index: 900;
  }
  .menu-items.active {
    transform: translateX(0) !important;
  }

  .dropdown-group {
    display: block !important;
  }
  .sub-menu {

    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    display: none !important;
    background: none !important;
  }
  .sub-menu.show {
    display: flex !important;
  }
  .sub-menu a {
    margin-left: 20px; 
    top: 15px !important;  
  }
}

/* ========== Remover cor rosa no foco e clique (desktop + mobile) ========== */
.menu-btn,
.menu-button {
  -webkit-tap-highlight-color: transparent; /* remove highlight no Safari mobile */
}

/* Remove hover/focus/active background */
.menu-button:hover,
.menu-button:focus,
.menu-button:active {
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Para o .menu-btn também, se necessário */
.menu-btn:focus,
.menu-btn:active {
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}/* End custom CSS */