.elementor-364 .elementor-element.elementor-element-359b13a{--display:flex;--min-height:0px;border-style:none;--border-style:none;}.elementor-364 .elementor-element.elementor-element-359b13a:not(.elementor-motion-effects-element-type-background), .elementor-364 .elementor-element.elementor-element-359b13a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-364 .elementor-element.elementor-element-a67ae10{width:100%;max-width:100%;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-a67ae10 *//* RESET GERAL DO MENU */
.carx-menu, .carx-menu * { box-sizing: border-box; }
.carx-menu {
  width: 100%;
  background: #000;                /* Preto absoluto */
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;  /* Logo à esquerda, menu à direita */
  min-height: 64px;
}

/* Logo sempre à esquerda */
.carx-menu-logo {
  display: flex;
  align-items: center;
  padding: 10px 24px 10px 18px;
}
.carx-menu-logo img {
  height: 36px;
  max-width: 100%;
  display: block;
}

/* MENU PRINCIPAL - À DIREITA */
.carx-menu-list {
  list-style: none !important;   /* Remove bullets */
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 0 auto;
  padding: 0 30px 0 0;
  background: transparent;
  position: relative;
}

.carx-menu-list > li {
  position: relative;
  list-style: none !important;
}

.carx-menu-list > li > a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.09rem;
  padding: 12px 18px;
  display: block;
  border-radius: 12px;
  transition: background .14s;
}

.carx-menu-list > li > a:hover,
.carx-menu-list > li > a:focus {
  background: #1a1a1a;
}

/* SUBMENU */
.carx-menu-list li ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 210px;
  background: #000 !important;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 6px 24px #0005;
  z-index: 99;
  padding: 8px 0;
  list-style: none !important;
}
.carx-menu-list li:hover > ul,
.carx-menu-list li:focus-within > ul {
  display: block;
  animation: fadeInDown 0.22s;
}
.carx-menu-list li ul li {
  width: 100%;
  list-style: none !important;
}
.carx-menu-list li ul a {
  color: #fff;
  padding: 12px 28px;
  display: block;
  text-decoration: none;
  font-weight: 500;
  border-radius: 7px;
  transition: background .14s, color .14s;
  font-size: 1rem;
}
.carx-menu-list li ul a:hover,
.carx-menu-list li ul a:focus {
  background: #161616;
  color: #ffe600;
}

/* MENU SANDUICHE */
.carx-menu-icon {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 56px;
  width: 56px;
  cursor: pointer;
  margin-left: auto;
  margin-right: 14px;
  z-index: 3000;
}
.carx-menu-icon span,
.carx-menu-icon span:before,
.carx-menu-icon span:after {
  display: block;
  background: #ffe600;
  height: 4px;
  width: 33px;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s cubic-bezier(.61,.22,.33,1);
}
.carx-menu-icon span:before,
.carx-menu-icon span:after {
  content: '';
  position: absolute;
  left: 0;
}
.carx-menu-icon span:before { top: -10px; }
.carx-menu-icon span:after { top: 10px; }

#carx-menu-toggle { display: none; }
#carx-menu-toggle:checked ~ .carx-menu-list {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 62px;
  left: 0;
  width: 100vw;
  background: #000;
  padding: 28px 0 18px 0;
  box-shadow: 0 12px 24px #0008;
  border-radius: 0 0 16px 16px;
  z-index: 3333;
}
#carx-menu-toggle:checked ~ .carx-menu-list > li > ul {
  position: static;
  min-width: 100%;
  box-shadow: none;
  border-radius: 0;
}
#carx-menu-toggle:checked ~ .carx-menu-list li ul {
  background: #000 !important;
  padding-left: 0;
  padding-right: 0;
}
#carx-menu-toggle:checked ~ .carx-menu-list li ul a {
  padding-left: 36px;
}

/* MOBILE AJUSTES */
@media (max-width: 950px) {
  .carx-menu {
    flex-wrap: wrap;
    min-height: 56px;
  }
  .carx-menu-list {
    display: none;
    flex-direction: column;
    width: 100vw;
    padding: 0;
    position: absolute;
    top: 62px;
    left: 0;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 999;
  }
  .carx-menu-list > li { width: 100%; }
  .carx-menu-list > li > a {
    padding: 15px 26px;
    font-size: 1.09rem;
    border-radius: 0;
  }
  .carx-menu-list li ul {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: #000 !important;
  }
  .carx-menu-list li ul a {
    padding: 12px 38px;
    font-size: 0.99rem;
  }
  .carx-menu-icon {
    display: flex;
    margin-left: auto;
  }
}

/* ANIMAÇÃO SUBMENU */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-10px);}
  100% { opacity: 1; transform: translateY(0);}
}/* End custom CSS */