.elementor-11 .elementor-element.elementor-element-96eda42{--display:flex;}.elementor-11 .elementor-element.elementor-element-96eda42:not(.elementor-motion-effects-element-type-background), .elementor-11 .elementor-element.elementor-element-96eda42 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.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-aa99888 *//* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
}

/* HEADER */
.mixes-header {
  width: 100%;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 999;
}

.mixes-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.mixes-logo img {
  height: 50px;
}

/* MENU */
.mixes-nav {
  display: flex;
  gap: 32px;
}

.mixes-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s;
}

.mixes-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}

.mixes-nav a:hover {
  opacity: 0.7;
}

.mixes-nav a:hover::after {
  width: 100%;
}

/* BOTÃO MOBILE */
.mixes-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
}

.mixes-toggle span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  left: 8px;
  transition: 0.3s;
}

.mixes-toggle span:nth-child(1) { top: 14px; }
.mixes-toggle span:nth-child(2) { top: 22px; }

.mixes-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 18px;
}

.mixes-toggle.active span:nth-child(2) {
  transform: rotate(-45deg);
  top: 18px;
}

/* MENU MOBILE FULL */
.mixes-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  height: 100vh;
  background: #000;
}

.mixes-mobile a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 3px;
}

/* RESPONSIVO */
@media (max-width: 900px) {

  .mixes-nav {
    display: none;
  }

  .mixes-toggle {
    display: block;
  }

  .mixes-mobile.active {
    display: flex;
  }

  .mixes-logo img {
    height: 38px;
  }

  .mixes-container {
    padding: 18px 20px;
  }
}/* End custom CSS */