.elementor-20 .elementor-element.elementor-element-f98215b{--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;--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-20 .elementor-element.elementor-element-3d33b2b{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-3d33b2b */.gg-navbar {
  width: 100%;
  position: fixed;
  top: 70px;
  left: 0;
  z-index: 99999;
  padding: 0 24px;
}

.gg-navbar-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 26px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.gg-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: 30px;
}

.gg-logo img {
  width: 115px;
  height: auto;
  display: block;
}

.gg-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.gg-menu a {
  color: #1f2f1f;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 21px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.gg-menu a:hover {
  color: #4c9b3f;
}

.gg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 30px;
  background: #4c9b3f;
  color: #ffffff;

  border-radius: 999px;
  text-decoration: none;

  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;

  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.gg-btn:hover {
  background: #347b2c;
  color: #ffffff;
  transform: translateY(-2px);
}

.gg-menu-toggle {
  display: none;
}

.gg-hamburger {
  display: none;
}

.gg-mobile-btn {
  display: none;
}

/* TABLET */
@media (max-width: 900px) {
  .gg-navbar {
    top: 16px;
    padding: 0 16px;
  }

  .gg-navbar-container {
    padding: 16px 22px;
  }

  .gg-logo {
    margin-left: 10px;
  }

  .gg-logo img {
    width: 105px;
  }

  .gg-menu {
    gap: 20px;
  }
}

/* MÓVIL - MENÚ HAMBURGUESA */
@media (max-width: 768px) {
  .gg-navbar {
    top: 12px;
    padding: 0 12px;
  }

  .gg-navbar-container {
    position: relative;
    border-radius: 30px;
    padding: 14px 18px;
  }

  .gg-logo {
    margin-left: 5px;
  }

  .gg-logo img {
    width: 95px;
  }

  .gg-btn {
    display: none;
  }

  .gg-hamburger {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #4c9b3f;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    cursor: pointer;
    flex-shrink: 0;
  }

  .gg-hamburger span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease;
  }

  .gg-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;

    width: 100%;
    padding: 22px;

    display: flex;
    flex-direction: column;
    gap: 18px;

    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 26px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;

    transition: all 0.3s ease;
  }

  .gg-menu a {
    font-size: 15px;
  }

  .gg-mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 6px;
    padding: 13px 28px;

    background: #4c9b3f;
    color: #ffffff !important;

    border-radius: 999px;
    font-weight: 700;
  }

  .gg-menu-toggle:checked ~ .gg-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .gg-menu-toggle:checked + .gg-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .gg-menu-toggle:checked + .gg-hamburger span:nth-child(2) {
    opacity: 0;
  }

  .gg-menu-toggle:checked + .gg-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* MÓVIL PEQUEÑO */
@media (max-width: 480px) {
  .gg-navbar-container {
    padding: 13px 16px;
  }

  .gg-logo img {
    width: 88px;
  }

  .gg-hamburger {
    width: 40px;
    height: 40px;
  }
}/* End custom CSS */