.elementor-1443 .elementor-element.elementor-element-4488315{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--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-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-bc11810 *//* === HEADER === */
.mc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.4s ease;
  padding: 16px 0;
  font-family: var(--font);
}
.mc-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 10px 0;
}

/* Quando o menu mobile está aberto, header fica escuro */
.mc-header.menu-open {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

.mc-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.mc-header-logo img {
  width: 120px;
  transition: all 0.3s;
}
.mc-header .mc-header-logo .logo-color { display: none; }
.mc-header.scrolled .mc-header-logo .logo-white { display: none; }
.mc-header.scrolled .mc-header-logo .logo-color { display: block; }

/* Quando menu aberto: SEMPRE logo branco */
.mc-header.menu-open .mc-header-logo .logo-white { display: block !important; }
.mc-header.menu-open .mc-header-logo .logo-color { display: none !important; }

/* Nav */
.mc-header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mc-header-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
}
.mc-header.scrolled .mc-header-nav a { color: var(--mc-gray); }
.mc-header-nav a:hover { color: var(--mc-teal); }
.mc-header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mc-teal);
  transition: width 0.3s;
}
.mc-header-nav a:hover::after { width: 100%; }

/* CTA Button */
.mc-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font);
  background: var(--mc-teal);
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--mc-teal);
}
.mc-header-cta:hover {
  background: transparent;
  color: var(--mc-teal);
}
.mc-header-cta svg { width: 16px; height: 16px;
margin-right: 5px;}

/* ═══════════════════════════════════════
   HAMBURGER — FIX
   ═══════════════════════════════════════ */
.mc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  z-index: 10001; /* Acima do overlay */
  position: relative;
}
.mc-hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}

/* Scroll = cinza (normal) */
.mc-header.scrolled .mc-hamburger span {
  background: var(--mc-gray);
}

/* ACTIVE = SEMPRE branco (está sobre fundo escuro) */
.mc-hamburger.active span {
  background: white !important;
}

/* X animation */
.mc-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mc-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mc-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════
   MOBILE MENU OVERLAY
   ═══════════════════════════════════════ */
.mc-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 120px;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* mobile safe */
  background: rgba(11, 19, 43, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mc-mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

/* Menu links */
.mc-mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s;
  font-family: var(--font);
  padding: 14px 32px;
  border-radius: 8px;
  display: block;
  text-align: center;
}
.mc-mobile-menu a:hover,
.mc-mobile-menu a:active {
  color: white;
  background: rgba(26, 156, 136, 0.12);
}

/* CTA no mobile menu */
.mc-mobile-menu .mc-header-cta {
  margin-top: 24px;
  padding: 14px 36px;
  font-size: 15px;
  background: var(--mc-teal);
  color: white;
  border: 2px solid var(--mc-teal);
}
.mc-mobile-menu .mc-header-cta:hover {
  background: #15876e;
  border-color: #15876e;
  color: white;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .mc-header-nav { display: none; }
  .mc-header-cta.desktop { display: none; }
  .mc-hamburger { display: flex; }
}
button#mc-fcl {
    display: none;
}/* End custom CSS */