.elementor-1500 .elementor-element.elementor-element-130e262{--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-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-c8fe961 */.header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: transparent;
  width: 90%;
  max-width: 1200px;
  margin: 10px auto;
  font-family: Arial, Helvetica, sans-serif;
}

a, .menu-item {
  color: #ccff00;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 0.3s ease;
  margin-left: 40px;
  text-decoration: none;
}

a:hover, .menu-item:hover {
  color: #fff;
}

.logo {
  width: 140px;
  height: 140px;
  background: #ccff00;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  margin-right: -40px;
  z-index: 2;
}

.menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-grow: 1;
  background: #0d2c26;
  padding: 25px 40px;
  border-radius: 0 20px 20px 0;
  z-index: 1;
}

/* Botón hamburguesa */
.menu-toggle {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  color: #ccff00;
  cursor: pointer;
  z-index: 1000;
  margin: 0 auto;
  text-align: center;
}

/* TABLETS (≤1024px) */
@media (max-width: 1024px) {
  .header {
    flex-direction: column;
    width: 90%;
  }

  .logo {
    margin: 0 auto 20px auto;
  }

  .menu {
    border-radius: 20px;
    padding: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-item {
    margin: 10px 20px;
  }
}

/* MÓVILES (≤768px) */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
  }

  .menu-toggle {
    display: block;
    margin-bottom: 10px;
  }

  .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background: #0d2c26;
    position: relative;
    width: 100%;
    padding: 20px 0;
    border-radius: 0 0 20px 20px;
    z-index: 999;
  }

  .menu.active {
    display: flex;
  }

  .menu-item {
    margin: 15px 0;
    font-size: 18px;
    color: #ccff00;
  }
}/* End custom CSS */