.elementor-6250 .elementor-element.elementor-element-68a7ead{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-6250 .elementor-element.elementor-element-9cf8c69 > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 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-2cf37c8 *//* ========================= */
/* HEADER GLASS */
/* ========================= */
.header-glass {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;

  backdrop-filter: blur(14px);
  background: rgba(2, 6, 23, 0.4);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* CONTENEDOR */
.header-inner {
  max-width: 1300px;
  margin: auto;
  padding: 14px 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ========================= */
/* LOGO */
/* ========================= */
.logo img {
  height: 60px;
  filter: brightness(0) invert(1); /* 🔥 vuelve blanco el logo */
  opacity: 0.95;
}

/* ========================= */
/* NAV */
/* ========================= */
.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

/* underline premium */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #157EB1;
  transition: 0.3s;
}

.nav a:hover {
  color: white;
}

.nav a:hover::after {
  width: 100%;
}

/* ========================= */
/* ACTIONS */
/* ========================= */
.actions {
  display: flex;
  gap: 12px;
}

/* BOTON OUTLINE */
.btn-ghost {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
}

/* BOTON PRINCIPAL */
.btn-main {
  background: linear-gradient(135deg, #157EB1, #1da1f2);
  padding: 10px 20px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;

  box-shadow: 0 10px 25px rgba(21,126,177,0.35);
  transition: 0.3s;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(21,126,177,0.5);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 1024px) {

  /* ocultamos navegación */
  .nav {
    display: none;
  }

  /* mantenemos actions pero ajustadas */
  .actions {
    display: flex;
    gap: 8px;
  }

  /* ocultamos botón secundario */
  .btn-ghost {
    display: none;
  }

  /* hacemos el botón principal más compacto */
  .btn-main {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 10px;
  }

  /* reducimos padding del header */
  .header-inner {
    padding: 10px 16px;
  }

  /* logo más pequeño */
  .logo img {
    height: 50px;
  }

}/* End custom CSS */