.elementor-875 .elementor-element.elementor-element-7b74a0f{--display:flex;}.elementor-875 .elementor-element.elementor-element-db360f8{--display:flex;}@media(max-width:767px){.elementor-875 .elementor-element.elementor-element-a56f86c{width:100%;max-width:100%;}}/* Start custom CSS for html, class: .elementor-element-a56f86c *//* === HEADER GENERAL === */
.custom-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.custom-header .container {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
}

/* === LOGO === */
.logo img {
  height: 60px;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}

/* === NAVEGACIÓN PRINCIPAL === */
.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  color: #465166;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #f28c28;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #f28c28;
}
.nav-links a:hover::after {
  width: 100%;
}

/* === BOTÓN DE CONTACTO === */
.btn-contacto {
  background-color: #f28c28;
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  color: white !important;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contacto:hover {
  background-color: #e17d1f;
  transform: scale(1.05);
  color: white !important;
}

/* === ACCIONES === */
.actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* === MENU TOGGLE (hamburguesa) === */
.menu-toggle {
  width: 25px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #465166;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === MENÚ MOBILE === */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: all 0.3s ease;
}

.mobile-menu a {
  text-decoration: none;
  color: #465166;
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #f28c28;
}

.mobile-menu.open {
  display: flex;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .custom-header .container {
    padding: 10px 20px; /* antes era 12px 40px */
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .btn-contacto {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .actions {
    gap: 12px; /* separa el botón del ícono de menú */
  }

  .logo img {
    height: 40px;
  }
}/* End custom CSS */