.elementor-43737 .elementor-element.elementor-element-66a57a8{--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-43737 .elementor-element.elementor-element-481deee{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-43737 .elementor-element.elementor-element-66a57a8{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-43737 .elementor-element.elementor-element-2ab2c88 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-43737 .elementor-element.elementor-element-a20c521 > .elementor-widget-container{margin:-103px 0px 0px 0px;padding:0px 2px 0px 239px;}}/* Start custom CSS for html, class: .elementor-element-2ab2c88 */body, html {
  margin: 0;
  font-family: 'RB', sans-serif;
}

.popup-logo {
  max-height: 140px;
  width: auto;
}

.mobile-header,
.popup-header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: transparent;
}

.mobile-icons {
  display: flex;
  align-items: center;
}

/* Ícono hamburguesa */
.burger-icon {
  width: 25px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  margin-right: 30px; /* ✅ Separa 30px del borde derecho */

}

.burger-icon span {
  height: 3px;
  background: #1A2246;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-icon.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.burger-icon.open span:nth-child(2) {
  opacity: 0;
}
.burger-icon.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Menú principal y submenús */
.mobile-menu-popup,
.custom-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 34, 70, 0.95);
  color: #fff;
  z-index: 9999;
  box-sizing: border-box;
  overflow-y: auto;
  flex-direction: column;
  animation: fadeIn 0.5s ease forwards;
  padding: 20px;
}

.menu-items {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.menu-item a {
  color: #fff;
  font-size: 28px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.submenu-icon {
  font-size: 20px;
  color: #fff;
  margin-left: 10px;
}

/* Footer */
.menu-footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  margin-right: 15px;
}
.language-switch a {
  color: #fff;
  font-size: 16px;
}

/* Submenús */
.submenu-list {
  list-style: none;
  padding: 40px 0 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.submenu-list.left-align {
  text-align: left;
}

.submenu-list li a {
  font-size: 28px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

/* Botón X de cerrar */
.close-icon {
  width: 40px;
  height: 40px;
  background-color: transparent !important;  /* Fondo transparente siempre */
  border: none !important;                   /* Sin bordes */
  outline: none !important;                  /* Sin contorno al enfocar */
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close-icon span {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: white; /* Color de las líneas de la X */
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.close-icon span:first-child {
  transform: rotate(45deg);
}

.close-icon span:last-child {
  transform: rotate(-45deg);
}

/* Hover: solo rotación, sin cambio de fondo */
.close-icon:hover {
  background-color: transparent !important; /* Asegura que no aparezca ningún fondo al hacer hover */
}

.close-icon:hover span:first-child {
  transform: rotate(135deg);
}

.close-icon:hover span:last-child {
  transform: rotate(-135deg);
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (min-width: 768px) {
  .mobile-header,
  .mobile-menu-popup,
  .custom-popup {
    display: none !important;
  }
}/* End custom CSS */