.elementor-30 .elementor-element.elementor-element-8b47c92{--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;}/* Start custom CSS for html, class: .elementor-element-1020042 *//* Forçar tamanho correto da logo */
.header-logo {
    height: 48px !important;
    width: auto !important;
    max-height: 48px !important;
}

/* Evitar estourar container */
.header__logo-img img {
    max-width: 100%;
    height: auto;
    display: block;
}

.header__inner {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9999;
}

/* LOGO COMO IMAGEM */
.header__logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo {
  height: 55px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 79, 129, 0.6));
  transition: .2s ease;
}

.header-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 14px rgba(255, 79, 129, 1));
}

/* MENU DESKTOP */
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  opacity: .85;
  transition: .2s ease;
}

.header__nav a:hover {
  opacity: 1;
  color: #FF4F81;
}

/* BOTÕES */
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-hdr {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: .2s ease;
}

/* Outline rosa */
.btn-hdr--outline {
  border: 2px solid #FF4F81;
  color: #FF4F81;
}

.btn-hdr--outline:hover {
  background: #FF4F81;
  color: #000;
}

/* MOBILE - ÍCONE */
.hamburger {
  display: none;
  font-size: 32px;
  color: #FF4F81;
  cursor: pointer;
  z-index: 10001;
}

/* BACKDROP ESCURO ATRÁS DO MENU (❗correção principal) */
.mobile-backdrop {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  visibility: hidden;
  transition: .35s ease;
  z-index: 9997;
}

/* Quando o menu abre */
.mobile-menu.open ~ .mobile-backdrop {
  opacity: 1;
  visibility: visible;
}

/* MENU MOBILE */
.mobile-menu {
  position: fixed;
  top: 0;                 /* corrigido */
  right: -100%;
  width: 260px;
  height: 100vh;          /* corrigido */
  background: #0a0a12;
  padding: 90px 25px 25px; /* deixa espaço para o header */
  transition: .35s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: -12px 0 28px rgba(0,0,0,0.6);
  z-index: 9998;
}


.mobile-menu a {
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* BOTÃO MOBILE */
.mobile-menu .btn-hdr {
  margin-top: 20px;
  text-align: center;
}

/* MOBILE RESPONSIVO */
@media (max-width: 900px) {
  .header__nav,
  .header__actions {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

/* MENU ABERTO */
.mobile-menu.open {
  right: 0;
}

/* LOGO MENOR NO MOBILE */
@media (max-width: 600px) {
  .header-logo {
    height: 45px;
  }
}/* End custom CSS */