.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-ac52286 */.eba-header {
  --eba-navy: #0B1B3D;
  --eba-gold: #C9974A;
  --eba-gold-dark: #B8843A;
  --eba-text-muted: #4A5568;
  --eba-border: #E8E6E1;
  --eba-header-height: 76px;

  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  height: var(--eba-header-height);
  background: #FAFAF9;
  border-bottom: 1px solid var(--eba-border);
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}
.eba-header * { box-sizing: border-box; }

.eba-header__inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.eba-header__logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.eba-header__logo-primary { color: var(--eba-navy); }
.eba-header__logo-accent { color: var(--eba-gold); }

/* Nav desktop */
.eba-header__nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.eba-header__nav-link {
  color: var(--eba-navy);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color .15s ease;
  position: relative;
}
.eba-header__nav-link:hover { color: var(--eba-gold); }
.eba-header__nav-link.is-active { color: var(--eba-gold); }
.eba-header__nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--eba-gold);
  border-radius: 2px;
}

/* Actions */
.eba-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Language .elementor-9 .elementor-element.elementor-element-ac52286 */
.eba-header__lang { position: relative; }
.eba-header__lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--eba-border);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--eba-navy);
  cursor: pointer;
}
.eba-header__lang-chevron { transition: transform .15s ease; color: var(--eba-navy); }
.eba-header__lang[data-open="true"] .eba-header__lang-chevron { transform: rotate(180deg); }

.eba-header__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid var(--eba-border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(11,27,61,.12);
  padding: 6px;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .15s ease;
}
.eba-header__lang[data-open="true"] .eba-header__lang-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.eba-header__lang-menu button {
  width: 100%;
  text-align: left;
  padding: 8px 10px;
  border: none;
  background: none;
  border-radius: 8px;
  font-size: 14px;
  color: var(--eba-navy);
  cursor: pointer;
}
.eba-header__lang-menu button:hover { background: #F5F3EF; }

/* CTA */
.eba-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--eba-gold);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .15s ease, transform .15s ease;
}
.eba-header__cta:hover { background: var(--eba-gold-dark); transform: translateY(-1px); }

/* Burger (mobile) */
.eba-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.eba-header__burger span {
  width: 100%;
  height: 2px;
  background: var(--eba-navy);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.eba-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.eba-header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.eba-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.eba-header__mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--eba-border);
  box-shadow: 0 12px 24px rgba(11,27,61,.08);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 18px;
}
.eba-header__mobile-menu.is-open { display: flex; }

.eba-header__mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.eba-header__mobile-list a {
  color: var(--eba-navy);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.eba-header__mobile-list a.is-active { color: var(--eba-gold); }

.eba-header__mobile-lang {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--eba-border);
  padding-top: 16px;
}
.eba-header__mobile-lang button {
  padding: 8px 14px;
  border: 1px solid var(--eba-border);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  cursor: pointer;
}

.eba-header__cta--block {
  justify-content: center;
  width: 100%;
}

/* ===== Breakpoints ===== */

/* Tablet: se esconde el nav de texto, aparece el burger */
@media (max-width: 991px) {
  .eba-header__nav { display: none; }
  .eba-header__burger { display: flex; }
  .eba-header__inner { padding: 0 20px; }
}

/* Mobile chico: se esconde también el CTA y el .elementor-9 .elementor-element.elementor-element-ac52286 de idioma del header fijo (quedan dentro del menú) */
@media (max-width: 560px) {
  .eba-header { --eba-header-height: 64px; }
  .eba-header__actions .eba-header__lang,
  .eba-header__actions .eba-header__cta { display: none; }
  .eba-header__logo { font-size: 17px; }
}/* End custom CSS */