.elementor-25 .elementor-element.elementor-element-3530978{--display:grid;--e-con-grid-template-columns:repeat(2, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--grid-auto-flow:row;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-25 .elementor-element.elementor-element-c35daaa{margin:0px 249px calc(var(--kit-widget-spacing, 0px) + 0px) -15px;}.elementor-25 .elementor-element.elementor-element-c35daaa img{width:28%;}.elementor-25 .elementor-element.elementor-element-460dbda{margin:0px 59px calc(var(--kit-widget-spacing, 0px) + 0px) -232px;}.elementor-25 .elementor-element.elementor-element-460dbda.elementor-element{--align-self:center;}@media(max-width:1024px){.elementor-25 .elementor-element.elementor-element-3530978{--grid-auto-flow:row;}}@media(max-width:767px){.elementor-25 .elementor-element.elementor-element-3530978{--e-con-grid-template-columns:repeat(1, 1fr);--grid-auto-flow:row;}}/* Start custom CSS for html, class: .elementor-element-460dbda *//* --- CONTENEDOR DE COMPONENTES --- */
.fx-nav-wrapper {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}

.fx-nav-core {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end; /* Alinea el menú y buscador al lado derecho en escritorio */
  gap: 40px;
  position: relative;
}

/* --- MENÚ ESCRITORIO --- */
.fx-desktop-nav {
  display: block;
}

.fx-main-menu {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  gap: 35px;
}

.fx-menu-link {
  text-decoration: none !important;
  color: #FFFFFF !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.fx-menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #00F3FF;
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.fx-menu-link:hover, .fx-menu-link.fx-active {
  color: #00F3FF !important;
}

.fx-menu-link:hover::after, .fx-menu-link.fx-active::after {
  width: 100%;
}

/* --- BUSCADOR INTERACTIVO --- */
.fx-search-container {
  position: relative;
}

.fx-lupa-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 8px;
  transition: color 0.2s ease;
}

.fx-lupa-btn:hover {
  color: #00F3FF;
}

/* Caja de búsqueda flotante */
.fx-search-box-popup {
  position: absolute;
  top: 45px;
  right: 0;
  background-color: #131A22;
  border: 1px solid rgba(0, 243, 255, 0.2);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: none;
  z-index: 99999;
}

.fx-search-box-popup.fx-open {
  display: block;
}

.fx-search-inner-form {
  display: flex;
  gap: 8px;
  width: 250px;
}

.fx-search-field {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 4px;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #FFFFFF;
}

.fx-search-field:focus {
  border-color: #00F3FF;
}

.fx-search-submit-btn {
  background-color: #00F3FF;
  border: none;
  color: #0F0F11;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  padding: 0 14px;
  border-radius: 4px;
  cursor: pointer;
}

/* --- CONTROL MÓVIL Y TABLET (RESPONSIVE) --- */
.fx-burger-btn {
  display: none;
}

@media (max-width: 991px) {
  .fx-desktop-nav {
    display: none !important; /* Esconde la barra horizontal */
  }

  .fx-nav-core {
    justify-content: space-between !important; /* Separa la hamburguesa de la lupa */
    width: 100%;
  }

  /* Hamburguesa a la izquierda */
  .fx-burger-btn {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 24px;
  }

  .fx-burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
  }

  /* Buscador flotante en móviles (se acomoda debajo del header sin romper nada) */
  .fx-search-box-popup {
    position: fixed;
    top: 75px; /* Ajusta este valor según el alto de tu sección de Elementor */
    left: 0;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-sizing: border-box;
    padding: 12px 20px;
  }

  .fx-search-inner-form {
    width: 100%;
  }
}

/* --- MENÚ LATERAL TIPO SIDEBAR (DESDE LA IZQUIERDA) --- */
.fx-sidebar-menu {
  position: fixed;
  top: 0;
  left: -280px; /* Escondido a la izquierda */
  width: 250px;
  height: 100vh;
  background-color: #0F0F11;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 100000;
  padding: 70px 25px;
  box-shadow: 5px 0 30px rgba(0,0,0,0.5);
  transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.fx-sidebar-menu.fx-open {
  left: 0; /* Despliegue */
}

.fx-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.fx-sidebar-overlay.fx-open {
  opacity: 1;
  pointer-events: auto;
}

.fx-sidebar-close-zone {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  color: #00F3FF;
  cursor: pointer;
}

.fx-mobile-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.fx-mobile-links a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 700;
  display: block;
}

/* Animación de la hamburguesa interna */
.fx-burger-btn.fx-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: #00F3FF;
}
.fx-burger-btn.fx-active span:nth-child(2) {
  opacity: 0;
}
.fx-burger-btn.fx-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: #00F3FF;
}/* End custom CSS */