.elementor-11 .elementor-element.elementor-element-00565b5{--display:flex;}.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-d597cd7 *//* === HEADER BASE === */
.edh-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  font-family: "PPSupplyMono", monospace;
  text-transform: uppercase;
}

/* Estado al hacer scroll */
.edh-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* === CONTENEDOR === */
.edh-header__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* === LOGO === */
.edh-header__logo a {
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.edh-header__logo a:hover {
  color: var(--primary, #d4af37); /* dorado o color primario */
}

/* === NAVEGACIÓN === */
.edh-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Enlaces del menú */
.edh-nav__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.edh-nav__links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.edh-nav__links a:hover {
  color: var(--primary-light, #ffe38d);
  background: rgba(255, 255, 255, 0.08);
}

/* === CTA (Botón de login) === */
.edh-nav__cta {
  padding: 0.6rem 1.3rem;
  background: linear-gradient(135deg, var(--primary, #d4af37), var(--primary-light, #ffe38d));
  color: #000;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}
.edh-nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.6);
}

/* === TOGGLE (checkbox hack) === */
.edh-menu-toggle {
  display: none;
}
.edh-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  z-index: 1001;
}
.edh-nav__bar {
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animación del ícono al abrir */
.edh-menu-toggle:checked + .edh-nav__toggle .edh-nav__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.edh-menu-toggle:checked + .edh-nav__toggle .edh-nav__bar:nth-child(2) {
  opacity: 0;
}
.edh-menu-toggle:checked + .edh-nav__toggle .edh-nav__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === MENÚ MÓVIL === */
/* === MENÚ MÓVIL (corregido) === */
@media (max-width: 768px) {
  .edh-nav__toggle {
    display: flex;
    position: relative;
    z-index: 5001;
  }

  .edh-nav__links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;

    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    z-index: 5000;
    padding: 2rem 1.25rem;
  }

  /* Mostrar el menú al activar el toggle */
  .edh-menu-toggle:checked ~ .edh-nav__links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .edh-nav__links a {
    font-size: 1.25rem;
    color: #fff;
    text-align: center;
    width: min(90%, 400px);
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    z-index: 5002;
    position: relative;
  }

  .edh-nav__links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light, #ffe38d);
  }

  /* CTA dentro del menú móvil */
  .edh-nav__cta {
    margin-top: 1rem;
    background: var(--primary, #d4af37);
    color: #000;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }

  /* Capa superior para evitar superposición con el contenido */
  body {
    overflow-x: hidden;
  }
}/* End custom CSS */