.elementor-22 .elementor-element.elementor-element-cf93311{--display:flex;}/* Start custom CSS for html, class: .elementor-element-21edb6a */:root{
  --niu-max: 1200px;
  --niu-pad: 18px;
  --niu-teal: #1f5a5a;
  --niu-teal-hover:#214f4f;
  --niu-border:#e7ecec;
  --niu-text:#1b1f1f;
  --niu-muted:#6a7777;
  --niu-bg:#ffffff;
  --niu-topbar:#f6f8f8;
  --niu-font: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
}

/* BASE */
.niu-header{
  font-family: var(--niu-font);
  background: var(--niu-bg);
  border-bottom: 1px solid var(--niu-border);
}

.niu-container{
  max-width: var(--niu-max);
  margin: 0 auto;
  padding: 0 var(--niu-pad);
}

/* TOP BAR */
.niu-topbar{
  background: var(--niu-topbar);
  border-bottom: 1px solid var(--niu-border);
  font-size: 13px;
}

.niu-topbar__row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 10px 0;
}

.niu-top-left,
.niu-top-right{
  display:flex;
  gap:14px;
  align-items:center;
}

.niu-pill{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border:1px solid var(--niu-border);
  border-radius:999px;
  background:#fff;
}

.niu-pill select{
  border:none;
  background:transparent;
  font:inherit;
  cursor:pointer;
}

.niu-link{
  text-decoration:none;
  color:var(--niu-text);
  font-weight:600;
}

.niu-phone{
  text-decoration:none;
  color:var(--niu-text);
  font-weight:700;
}

/* MAIN HEADER */
.niu-main__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  gap:20px;
}

/* LOGO */
.niu-logo-img{
  max-height: 50px;   /* 👈 PROBÁ con 40px */
  width: auto;
}

.niu-logo__mark{
  font-size:44px;
  font-weight:900;
  line-height:1;
}

.niu-logo__sub{
  font-size:13px;
  color:var(--niu-muted);
  font-weight:600;
  margin-bottom:4px;
}

/* NAV */
/* NAV contenedor */
.niu-nav {
  display: flex;
  align-items: center;
}

/* UL del menu */
.niu-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

/* Links del menu */
.niu-menu > li > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  text-decoration: none;
  color: #111 !important;   /* por si algún estilo global los deja blancos */
  font-weight: 600;
  line-height: 1;
}


/* Dropdown */
.has-dropdown{
  position: relative;
}

.has-dropdown > a{
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
}

/* Dropdown bien pegado debajo del item */
.has-dropdown > .niu-dropdown{
  position: absolute;
  left: 0;
  top: calc(100% + 12px);  /* bajada prolija */
  min-width: 260px;

  margin: 0;
  padding: 14px 0;
  list-style: none;

  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;

  z-index: 99999;
}

.has-dropdown:hover > .niu-dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Items */
.niu-dropdown a{
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  color: #111;
}
.niu-dropdown a:hover{
  background: #f4f4f4;
}


/* Mostrar dropdown */
.has-dropdown:hover .niu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.niu-menu a{
  text-decoration:none;
  color:var(--niu-text);
  font-weight:700;
  font-size:15px;
}

/* ESTIMATOR */
.niu-estimator{
  color:var(--niu-teal);
  font-weight:800;
}

/* CTA */
.niu-cta{
  background:#ac8350;
  color:#fff;
  text-decoration:none;
  padding:14px 20px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.niu-cta:hover{
  background: #2b422e;
  color: white;
}

/* RESPONSIVE */
@media (max-width:1024px){
  .niu-main__row{
    flex-wrap:wrap;
  }

  .niu-nav{
    order:3;
    justify-content:flex-start;
  }
}

@media (max-width:640px){
  .niu-menu{
    flex-wrap:wrap;
    gap:14px;
  }

  .niu-logo__mark{
    font-size:36px;
  }
}/* End custom CSS */