.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-8f14f71 */.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

body.admin-bar .sticky-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .sticky-header {
    top: 46px;
  }
}

.sticky-header.visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 40px;
  font-family: 'Exo', sans-serif;
}

.sticky-logo img {
  height: 85px;
  width: auto;
  display: block;
}

.sticky-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-left: auto;
  margin-right: 35px;
}

.sticky-nav > a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.sticky-nav > a:hover {
  opacity: 0.6;
}

.sticky-btn {
  background-color: #1a1a1a;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.sticky-btn:hover {
  background-color: #FC9729;
}

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

/* --- Dropdown "Industrias" --- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: #1a1a1a;
  font-family: 'Exo', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 0;
  transition: opacity 0.3s ease;
}

.nav-dropdown-toggle:hover {
  opacity: 0.6;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 12px 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 10px;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background-color: #f5f5f5;
  color: #FC9729;
}

/* Botón hamburguesa: oculto en desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.activo span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.activo span:nth-child(2) {
  opacity: 0;
}

.hamburger.activo span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.menu-overlay.activo {
  opacity: 1;
  visibility: visible;
}

body.menu-abierto {
  overflow: hidden;
}

/* --- Tablet --- */
@media (max-width: 1024px) {
  .sticky-header-inner {
    padding: 15px 25px;
  }

  .sticky-nav {
    gap: 20px;
  }

  .sticky-nav > a,
  .nav-dropdown-toggle {
    font-size: 13px;
  }

  .sticky-logo img {
    height: 58px;
  }

  .sticky-btn-desktop {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* --- Mobile: menú hamburguesa + dropdown tipo acordeón --- */
@media (max-width: 767px) {
  .sticky-header-inner {
    padding: 10px 18px;
  }

  .sticky-logo img {
    height: 52px;
  }

  .sticky-btn-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .sticky-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 90px 30px 30px 30px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: right 0.35s ease;
    overflow-y: auto;
  }

  .sticky-nav.activo {
    right: 0;
  }

  .sticky-nav > a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid #eeeeee;
    font-size: 16px;
  }

  .nav-dropdown {
    width: 100%;
    border-bottom: 1px solid #eeeeee;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 16px;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    padding: 0 0 10px 0;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.35s ease;
  }

  .nav-dropdown.activo .nav-dropdown-menu {
    max-height: 500px;
  }

  .nav-dropdown.activo .dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu a {
    padding: 10px 0 10px 14px;
    font-size: 14px;
    white-space: normal;
  }

  .nav-dropdown-menu a:hover {
    background-color: transparent;
  }

  .sticky-btn-mobile {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    border: none;
  }

  .menu-overlay {
    display: block;
  }
}/* End custom CSS */