.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-1ac67bb *//* ══════════════════════════════════════════
   NAVBAR AZOTEA — Flotante Glassmorphism
   ══════════════════════════════════════════ */

.navbar-az {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 1200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 40px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3),
              inset 0 1px 0 rgba(255,255,255,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.navbar-az--solid {
  background: rgba(0,0,0,0.88) !important;
  border-color: rgba(255,255,255,0.05) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5) !important;
}

/* Logo */
.navbar-az-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.navbar-az-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Links desktop */
.navbar-az-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
  flex: 1;
  justify-content: center;
}
.navbar-az-links a {
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.navbar-az-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 1.5px;
  background: #E7A40D;
  transform: scaleX(0);
  transition: transform 0.2s ease;
  border-radius: 2px;
}
.navbar-az-links a:hover,
.navbar-az-links a.active { color: #ffffff; }
.navbar-az-links a:hover::after,
.navbar-az-links a.active::after { transform: scaleX(1); }

/* Acciones */
.navbar-az-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* CTA WhatsApp */
.navbar-az-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #E7A40D;
  color: #000000;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
}
.navbar-az-cta:hover { background: #B8810A; transform: scale(1.04); }
.navbar-az-cta svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Hamburguesa */
.navbar-az-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.navbar-az-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.navbar-az-hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-az-hamburger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-az-hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Drawer ── */
.navbar-az-drawer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
}
.navbar-az-drawer--open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
}
.navbar-az-drawer-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.navbar-az-drawer-close svg { width: 20px; height: 20px; pointer-events: none; }
.navbar-az-drawer-close:hover { background: rgba(255,255,255,0.12); }
.navbar-az-drawer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.navbar-az-drawer-links a {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 8vw, 40px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  min-height: 44px;
  display: flex; align-items: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: color 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.navbar-az-drawer-links a:hover,
.navbar-az-drawer-links a:active { color: #E7A40D; transform: scale(1.04); }
.navbar-az-drawer-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; min-height: 44px;
  background: #E7A40D; color: #000000;
  font-family: 'Anton', sans-serif; font-size: 16px;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border-radius: 5px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background 0.2s ease;
}
.navbar-az-drawer-cta:hover { background: #B8810A; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .navbar-az { padding: 0 28px; height: 72px; }
  .navbar-az-links { gap: 20px; }
  .navbar-az-links a { font-size: 13px; }
  .navbar-az-logo img { height: 52px; }
}

@media (max-width: 768px) {
  .navbar-az {
    top: 12px;
    width: calc(100% - 24px);
    padding: 0 20px;
    height: 64px;
  }
  .navbar-az-logo img { height: 44px; }
  .navbar-az-links { display: none; }
  .navbar-az-cta   { display: none; }
  .navbar-az-hamburger { display: flex; }
}/* End custom CSS */