.elementor-3656 .elementor-element.elementor-element-c56f95d{--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;}.elementor-3656 .elementor-element.elementor-element-88b2115{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 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-88b2115 *//* ===== HEADER BASE ===== */
.hedr_clear_wha_header {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center; /* ✅ centra verticalmente */
  justify-content: space-between;
  padding: 0 5%;
  background: linear-gradient(90deg, #264377 0%, #3A90BA 50%, #59B5B0 100%);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  z-index: 9999;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

/* Ajuste adicional: centra verticalmente los ítems dentro del nav */
.hedr_clear_wha_nav ul {
  list-style: none;
  display: flex;
  align-items: center; /* ✅ centra los textos verticalmente */
  gap: 28px;
  margin: 0;
  padding: 0;
}

/* Y también centra el logo correctamente */
.hedr_clear_wha_logo {
  display: flex;
  align-items: center; /* ✅ centrado vertical del logo */
  justify-content: center;
}

/* ===== LOGO ===== */
.hedr_clear_wha_logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hedr_clear_wha_logo img {
  height: 90px;
  width: auto;
  border-radius: 6px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(58,144,186,0.6));
}

.hedr_clear_wha_logo img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 14px rgba(89,181,176,0.9));
}

/* ===== NAV ===== */
.hedr_clear_wha_nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hedr_clear_wha_nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.hedr_clear_wha_nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hedr_clear_wha_nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #2CBFC6;
  transition: width 0.3s ease;
}

.hedr_clear_wha_nav a:hover::after {
  width: 100%;
}

.hedr_clear_wha_nav a:hover {
  color: #2CBFC6;
  text-shadow: 0 0 6px rgba(89,181,176,0.8);
}

/* ===== HAMBURGUESA ===== */
.hedr_clear_wha_toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  position: relative;
  z-index: 10000;
}

.hedr_clear_wha_toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hedr_clear_wha_toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.hedr_clear_wha_toggle.active span:nth-child(2) {
  opacity: 0;
}
.hedr_clear_wha_toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 950px) {
  .hedr_clear_wha_toggle {
    display: flex;
  }

  .hedr_clear_wha_nav {
    position: fixed;
    top: 80px;
    right: 0;
    width: 100%;
    background: linear-gradient(180deg, #264377 0%, #3A90BA 60%, #59B5B0 100%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
    padding: 25px 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  }

  .hedr_clear_wha_nav.active {
    display: flex;
    animation: fadeInMenu 0.4s ease forwards;
  }

  .hedr_clear_wha_nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .hedr_clear_wha_nav a {
    font-size: 18px;
  }

  @keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hedr_clear_wha_logo img {
    height: 48px;
  }
}/* End custom CSS */