.elementor-89318 .elementor-element.elementor-element-803164c{--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;--justify-content:space-evenly;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:2px;--padding-bottom:2px;--padding-left:2px;--padding-right:2px;}.elementor-89318 .elementor-element.elementor-element-80a9744{--display:flex;}.elementor-89318 .elementor-element.elementor-element-51d6f52 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-89318 .elementor-element.elementor-element-803164c{--content-width:1393px;}}/* Start custom CSS for html, class: .elementor-element-51d6f52 *//*=================*/
/* HEADER EKO      */
/*=================*/
.eko-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  background: transparent;
}

.eko-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(3, 45, 80, 0.08);
}

.eko-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.eko-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}

.eko-logo-name {
  font-size: 22px;
  font-weight: 700;
  color: #032D50;
  line-height: 1;
  letter-spacing: -0.03em;
}

.eko-logo-name span { color: #7C71ED; }

.eko-logo-sub {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(3, 45, 80, 0.40);
  margin-top: 3px;
}

/* Nav */
.eko-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.eko-nav-item {
  position: relative;
}

.eko-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(3, 45, 80, 0.70);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.eko-nav-link:hover {
  color: #032D50;
  background: rgba(3, 45, 80, 0.04);
}

.eko-nav-link.has-sub::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='rgba(3,45,80,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}

.eko-nav-item:hover .eko-nav-link.has-sub::after {
  transform: rotate(180deg);
}

/* Dropdown */
.eko-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  background: #fff;
  border: 1px solid rgba(3, 45, 80, 0.08);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(3, 45, 80, 0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 10;
}

.eko-nav-item:hover .eko-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.eko-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 13px;
  color: rgba(3, 45, 80, 0.65);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.eko-dropdown a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #7C71ED;
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.15s ease;
}

.eko-dropdown a:hover {
  background: #F0F8FF;
  color: #032D50;
}

.eko-dropdown a:hover::before { opacity: 1; }

/* CTA */
.eko-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #032D50;
  color: #fff !important;
  font-size: 12px;
  font-weight: 500;
  border-radius: 7px;
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}

.eko-header-cta:hover { background: #7C71ED; }

/* Hamburguesa */
.eko-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.eko-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #032D50;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Menú móvil */
.eko-mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px 28px;
  overflow-y: auto;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.eko-mobile-menu.open { display: flex; }

.eko-mobile-link {
  padding: 13px 0;
  font-size: 16px;
  font-weight: 500;
  color: #032D50;
  text-decoration: none;
  border-bottom: 1px solid rgba(3, 45, 80, 0.06);
}

.eko-mobile-sub {
  padding: 8px 16px;
  font-size: 14px;
  color: rgba(3, 45, 80, 0.55);
  text-decoration: none;
  display: block;
}

.eko-mobile-cta {
  margin-top: 20px;
  display: block;
  padding: 14px 24px;
  background: #032D50;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease;
}

.eko-mobile-cta:hover { background: #7C71ED; }

/*=================*/
/* HEADER — RESPONSIVE */
/*=================*/
@media (max-width: 900px) {
  .eko-nav { display: none; }
  .eko-header-cta { display: none; }
  .eko-hamburger { display: flex; }
  .eko-header-inner { padding: 0 24px; }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-803164c *//* Ocultar menú nativo del tema */
.main-navigation {
  display: none !important;
}

/* Asegurar que el HTML del header sea visible */
.e-location-header .elementor-widget-html {
  width: 100% !important;
}/* End custom CSS */
/* Start custom CSS *//*=================*/
/* HEADER EKO      */
/*=================*/
.eko-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.eko-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}

.eko-logo-name {
  font-size: 22px;
  font-weight: 700;
  color: #032D50;
  line-height: 1;
  letter-spacing: -0.03em;
}

.eko-logo-name span { color: #7C71ED; }

.eko-logo-sub {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(3, 45, 80, 0.40);
  margin-top: 3px;
}

/* Nav */
.eko-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.eko-nav-item {
  position: relative;
}

.eko-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(3, 45, 80, 0.65);
  text-decoration: none;
  border-radius: 6px;
  background: transparent;
  border: none;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.eko-nav-link:hover {
  color: #032D50;
  background: rgba(3, 45, 80, 0.04);
}

.eko-nav-link.has-sub::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='rgba(3,45,80,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease;
}

.eko-nav-item:hover .eko-nav-link.has-sub::after {
  transform: rotate(180deg);
}

/* Dropdown */
.eko-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  background: #fff;
  border: 1px solid rgba(3, 45, 80, 0.08);
  border-radius: 14px;
  padding: 6px;
  min-width: 230px;
  box-shadow: 0 12px 40px rgba(3, 45, 80, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.2s ease;
  z-index: 9999;
}

.eko-nav-item:hover .eko-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.eko-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  border-radius: 10px;
  background: transparent;
  transition: background 0.15s ease;
  position: relative;
}

.eko-dropdown a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #7C71ED;
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.15s ease;
}

.eko-dropdown a:hover {
  background: #F0F8FF;
}

.eko-dropdown a:hover::before { opacity: 1; }

.eko-dd-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.eko-dd-label {
  font-size: 13px;
  font-weight: 500;
  color: #032D50;
  line-height: 1.3;
  transition: color 0.15s ease;
}

.eko-dd-sub {
  font-size: 11px;
  color: rgba(3, 45, 80, 0.45);
  line-height: 1.3;
}

/* Header right */
.eko-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* CTA */
.eko-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: #032D50;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 7px;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.eko-header-cta:hover {
  background: #7C71ED;
  color: #fff;
}

/* Hamburguesa */
.eko-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.eko-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #032D50;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Menú móvil */
.eko-mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px 28px;
  overflow-y: auto;
  z-index: 9998;
  flex-direction: column;
  gap: 4px;
}

.eko-mobile-menu.open { display: flex; }

.eko-mobile-link {
  padding: 13px 0;
  font-size: 16px;
  font-weight: 500;
  color: #032D50;
  text-decoration: none;
  border-bottom: 1px solid rgba(3, 45, 80, 0.06);
  display: block;
}

.eko-mobile-sub {
  padding: 8px 16px;
  font-size: 14px;
  color: rgba(3, 45, 80, 0.55);
  text-decoration: none;
  display: block;
}

.eko-mobile-cta {
  margin-top: 40px;
  display: block;
  padding: 14px 24px;
  background: #032D50;
  color: #fff!important;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease;
}

.eko-mobile-cta:hover { background: #7C71ED; }

/* Separadores entre ítems del nav */
.eko-nav-item + .eko-nav-item::before {
  content: '';
  display: block;
  width: 1px;
  height: 14px;
  background: rgba(3, 45, 80, 0.10);
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
}

/*=================*/
/* HEADER — RESPONSIVE */
/*=================*/
@media (max-width: 900px) {
  .eko-nav { display: none; }
  .eko-header-right { display: none; }
  .eko-hamburger { display: flex; }
  .eko-header-inner { padding: 0 24px; }
}

/* Ítem destacado */
.eko-nav-highlight {
  color: #7C71ED !important;
  background: rgba(124, 113, 237, 0.07) !important;
  border-radius: 6px !important;
}

.eko-nav-highlight:hover {
  background: rgba(124, 113, 237, 0.14) !important;
  color: #5a50c8 !important;
}

/* Móvil */
.eko-mobile-highlight {
  color: #7C71ED !important;
}

.eko-header-right .eko-btn {
  padding: 10px 18px;
}

.eko-header-right .eko-btn-top {
  font-size: 12px;
}

.eko-header-right .eko-btn-sub {
  font-size: 10px;
}

.eko-header-right .eko-btn::after {
  width: 18px;
  height: 18px;
}

.eko-close-btn {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(3, 45, 80, 0.10);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.eko-close-btn::before,
.eko-close-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: #032D50;
  border-radius: 2px;
}

.eko-close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.eko-close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.eko-close-btn:hover {
  background: rgba(3, 45, 80, 0.04);
  border-color: rgba(3, 45, 80, 0.20);
}

.eko-mobile-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(3, 45, 80, 0.08);
  gap: 10px;
}

.eko-mobile-close span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(3, 45, 80, 0.30);
  margin-right: auto;
}/* End custom CSS */