/* ===========================
   MENU / HEADER / FOOTER
   Limpieza conservadora
=========================== */

#header{
  display:block;
  min-height: 118px;
}

/* =========================================
   1) HEADER · SISTEMA NEU
========================================= */

.neu-header {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1020;
  margin-bottom: 0 !important;
  padding: 0 0 8px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: top .22s ease, padding .22s ease;
}

.neu-header.neu-surface {
  padding: 0;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.neu-navbar {
  padding: 0.92rem 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.12)),
    rgba(255, 247, 241, 0.54);
  box-shadow:
    0 22px 48px rgba(45, 24, 10, 0.14),
    inset 0 1px 0 rgba(255,255,255,.84);
  backdrop-filter: blur(24px) saturate(165%);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
  transition:
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    transform .22s ease;
}

.neu-navbar:hover {
  transform: translateY(-1px);
  box-shadow:
    0 26px 58px rgba(45, 24, 10, 0.16),
    inset 0 1px 0 rgba(255,255,255,.88);
}

.neu-header.is-scrolled {
  top: 0;
}

.neu-header.is-scrolled .neu-navbar {
  background:
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.16)),
    rgba(255, 247, 241, 0.68);
  border-color: rgba(249, 115, 22, 0.22);
  box-shadow:
    0 26px 54px rgba(45, 24, 10, 0.18),
    inset 0 1px 0 rgba(255,255,255,.88);
}

.navbar-nav {
  margin: 0;
  gap: 18px;
}

.navbar-brand {
  margin-right: 1.5rem !important;
}

.neu-nav {
  gap: 1.25rem;
}

/* =========================================
   2) BRAND / LOGOTIPO
========================================= */

.brand-lockup {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  padding: 0.25rem 1.25rem 0.25rem 0;
  margin-right: 0.5rem;
}

.brand-lockup::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 36px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0), rgba(249, 115, 22, 0.28), rgba(124, 58, 237, 0.14), rgba(249, 115, 22, 0));
}

.brand-tagline {
  font-family: "newnord";
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8b6a57;
}

.brand-name {
  font-family: "newnord";
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #1f130d;
}

/* =========================================
   3) NAV LINKS · SISTEMA NEU
========================================= */

.neu-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  margin: 0;
  min-height: 42px;
  padding: 0.55rem 0.95rem !important;

  font-family: "newnord";
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;

  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  color: #6b4f3f !important;

  transition: color 0.18s ease-out, background 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out, transform 0.18s ease-out;
}

.neu-nav-link::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.82);
  transform: scaleX(0.24);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.neu-nav-link:hover {
  color: #1f130d !important;
  border-color: rgba(249, 115, 22, 0.12);
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 14px 24px rgba(214, 186, 165, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.neu-nav-link:hover::before,
.nav-item.dropdown.show > .neu-nav-link::before,
.neu-nav-link:focus-visible::before {
  transform: scaleX(1);
  opacity: 1;
}

.neu-nav-link.active {
  color: #ffffff !important;
  background: #f97316;
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.34);
}

/* =========================================
   4) DROPDOWN · SISTEMA NEU
========================================= */

.neu-dropdown {
  min-width: 260px;
  padding: 0.5rem;
  border-radius: 18px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  background: rgba(252, 243, 236, 0.96);
  box-shadow:
    8px 12px 26px rgba(214, 186, 165, 0.42),
    -4px -4px 12px rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.neu-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;

  margin-bottom: 0.1rem;
  padding: 0.5rem 0.9rem;
  border-radius: 12px;

  font-size: 0.88rem;
  color: #6b4f3f;

  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

.neu-dropdown .dropdown-item:last-child {
  margin-bottom: 0;
}

.neu-dropdown .dropdown-item:hover,
.neu-dropdown .dropdown-item:focus {
  background: #f4e6db;
  color: #1f130d;
  transform: translateX(1px);
}

.neu-dropdown .dropdown-item.active {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #ffffff;
}

/* =========================================
   5) CTA / TOGGLES · SISTEMA NEU
========================================= */

.neu-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 56px;
  padding: var(--brand-btn-padding-y) var(--brand-btn-padding-x);
  border-radius: var(--brand-btn-radius);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-family: "newnord";
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  background: var(--brand-btn-grad-orange);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    var(--brand-btn-shadow-orange);
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out,
    background 0.22s ease-out;
}

.neu-cta-btn:hover {
  filter: saturate(1.03);
  transform: translateY(-2px);
  background: var(--brand-btn-grad-orange-hover);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    var(--brand-btn-shadow-orange-hover);
  color: #ffffff;
}

.neu-cta-btn:active {
  transform: translateY(1px) scale(0.98);
}

.neu-cta-btn--violet {
  background: var(--brand-btn-grad-violet);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    var(--brand-btn-shadow-violet);
}

.neu-cta-btn--violet:hover {
  background: var(--brand-btn-grad-violet-hover);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    var(--brand-btn-shadow-violet-hover);
}

.neu-theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--surface);
  color: var(--text-muted);
  box-shadow: var(--shadow-in);
  transition: all 0.18s ease;
}

.neu-theme-toggle:hover {
  color: var(--text-main);
}

.neu-theme-toggle.is-active {
  color: #fff7ed;
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  box-shadow:
    0 0 0 1px rgba(251, 146, 60, 0.26),
    0 16px 30px rgba(249, 115, 22, 0.3);
}

.neu-theme-toggle.is-active:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #fd9f4d 0%, #ea580c 100%);
}

.neu-theme-toggle i {
  font-size: 1rem;
}

.neu-toggle {
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(249, 115, 22, 0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.34)),
    rgba(255, 247, 241, 0.64);
  box-shadow:
    0 14px 28px rgba(45, 24, 10, 0.12),
    inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  color: #8a5a3d;
  transition:
    transform .22s ease,
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    color .22s ease;
}

.neu-toggle:hover,
.neu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(249, 115, 22, 0.28);
  color: #5b341f;
  box-shadow:
    0 18px 34px rgba(45, 24, 10, 0.16),
    inset 0 1px 0 rgba(255,255,255,.94);
}

.neu-toggle[aria-expanded="true"] {
  border-color: rgba(249, 115, 22, 0.36);
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.38)),
    rgba(255, 239, 229, 0.82);
  color: #ea580c;
  box-shadow:
    0 18px 36px rgba(249, 115, 22, 0.18),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 22px;
  height: 2px;
  background-color: currentColor;
  border-radius: 999px;
  transition:
    background-color .2s ease,
    transform .24s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background-color: currentColor;
  transition:
    transform .24s ease,
    top .24s ease,
    bottom .24s ease,
    opacity .2s ease,
    background-color .2s ease;
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  bottom: -7px;
}

.neu-toggle[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.neu-toggle[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.neu-toggle[aria-expanded="true"] .navbar-toggler-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* =========================================
   6) TEMA OSCURO · SISTEMA NEU
========================================= */

body.neu-root.theme-dark .neu-header {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

body.neu-root.theme-dark .neu-navbar {
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03)),
    rgba(16, 17, 20, 0.56);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.56),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.neu-root.theme-dark .neu-header.is-scrolled .neu-navbar {
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04)),
    rgba(16, 17, 20, 0.72);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.64),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

body.neu-root.theme-dark .brand-tagline {
  color: rgba(210, 214, 222, 0.68);
}

body.neu-root.theme-dark .brand-name {
  color: #f5f5f7;
}

body.neu-root.theme-dark .neu-nav-link {
  color: rgba(225, 228, 235, 0.88) !important;
  background: transparent;
}

body.neu-root.theme-dark .neu-nav-link:hover {
  color: #ffffff !important;
  background: #17181c;
  border-color: rgba(167, 139, 250, 0.16);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

body.neu-root.theme-dark .neu-nav-link.active {
  color: #fffaf7 !important;
  background: #f97316;
  box-shadow: 0 10px 26px rgba(249, 115, 22, 0.42);
}

body.neu-root.theme-dark .neu-dropdown {
  background: rgba(15, 16, 19, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    10px 18px 32px rgba(0, 0, 0, 0.90),
    -4px -4px 14px rgba(255, 255, 255, 0.03);
}

body.neu-root.theme-dark .neu-dropdown .dropdown-item {
  color: rgba(229, 232, 238, 0.9);
}

body.neu-root.theme-dark .neu-dropdown .dropdown-item:hover,
body.neu-root.theme-dark .neu-dropdown .dropdown-item:focus {
  background: #17181c;
  color: #ffffff;
}

body.neu-root.theme-dark .neu-dropdown .dropdown-item.active {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #fffaf7;
}

body.neu-root.theme-dark .neu-toggle {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03)),
    rgba(16, 17, 20, 0.62);
  color: #fff4ed;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255,255,255,.1);
}

body.neu-root.theme-dark .neu-toggle:hover,
body.neu-root.theme-dark .neu-toggle:focus-visible {
  border-color: rgba(249, 115, 22, 0.26);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(19, 20, 24, 0.78);
  color: #ffffff;
  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255,255,255,.12);
}

body.neu-root.theme-dark .neu-toggle[aria-expanded="true"] {
  border-color: rgba(249, 115, 22, 0.34);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(44, 24, 12, 0.88);
  color: #ffb36a;
  box-shadow:
    0 20px 40px rgba(249, 115, 22, 0.2),
    inset 0 1px 0 rgba(255,255,255,.12);
}

/* =========================================
   7) FOOTER
========================================= */

.site-footer {
  font-size: 0.95rem;
  border-radius: 24px 24px 0 0;
  margin-top: 4rem;
}

.site-footer.neu-surface-inner {
  padding: 0;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

[data-bs-theme="light"] .site-footer {
  background: #fff7f1;
  color: #1f130d;
}

[data-bs-theme="dark"] .site-footer {
  background: #090909;
  color: #f5f5f7;
}

.footer-brand {
  color: inherit;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  background: radial-gradient(circle at 20% 0, #fb923c, #ea580c);
  color: #fff;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.34);
  margin-left: 30px;
}

.footer-text {
  color: rgba(107, 79, 63, 0.92);
}

[data-bs-theme="dark"] .footer-text {
  color: rgba(255, 210, 180, 0.72);
}

.footer-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.footer-links li + li {
  margin-top: 0.9rem;
}

.footer-links a {
  text-decoration: none;
  color: inherit;
  opacity: 0.85;
  transition: opacity 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(2px);
  color: #ea580c;
}

.btn-footer-whatsapp {
  border-radius: 999px;
  border: 0;
  padding: 0.6rem 1rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;

  font-weight: 600;
  background: linear-gradient(135deg, #00b894, #00e676);
  color: #fff;
  box-shadow: 0 12px 25px rgba(0, 184, 148, 0.45);
}

.btn-footer-whatsapp:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.footer-social-wrap {
  margin-top: 0.3rem;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  border: 1px solid rgba(180, 140, 115, 0.35);
  color: inherit;

  transition: all 0.2s ease;
}

.footer-social i {
  font-size: 0.9rem;
}

.footer-social:hover {
  border-color: #f97316;
  background: rgba(249, 115, 22, 0.08);
  transform: translateY(-1px);
}

.footer-bottom {
  border-color: rgba(180, 140, 115, 0.24) !important;
}

.footer-copy {
  color: rgba(122, 90, 72, 0.95);
}

.footer-copy a,
.footer-copy a:link,
.footer-copy a:visited {
  color: inherit;
  text-decoration: none;
}

.footer-copy a:hover,
.footer-copy a:focus-visible {
  color: var(--pl-orange, #f97316);
  text-decoration: none;
}

[data-bs-theme="dark"] .footer-copy {
  color: rgba(255, 210, 180, 0.78);
}

[data-bs-theme="dark"] .footer-copy a:hover,
[data-bs-theme="dark"] .footer-copy a:focus-visible {
  color: #ffb26b;
}

/* =========================================
   8) BOTONES FLOTANTES
========================================= */

#floating-controls {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.35rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s ease;
}

body.neu-root.theme-light .floating-btn {
  background: #f4e6db;
  color: #ea580c;
}

body.neu-root.theme-light .floating-btn:hover {
  transform: translateY(-3px);
}

body.neu-root.theme-dark .floating-btn {
  background: #141518;
  color: #fdba74;
}

body.neu-root.theme-dark .floating-btn:hover {
  transform: translateY(-3px);
}

body.neu-root.theme-light .floating-btn.neu-theme-toggle.is-active,
body.neu-root.theme-dark .floating-btn.neu-theme-toggle.is-active {
  color: #fff7ed !important;
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  box-shadow:
    0 0 0 1px rgba(251, 146, 60, 0.3),
    0 18px 34px rgba(249, 115, 22, 0.34);
}

body.neu-root.theme-light .floating-btn.neu-theme-toggle.is-active:hover,
body.neu-root.theme-dark .floating-btn.neu-theme-toggle.is-active:hover {
  background: linear-gradient(135deg, #fd9f4d 0%, #ea580c 100%);
  color: #ffffff !important;
}

.whatsapp-btn {
  color: #25d366 !important;
  font-size: 1.5rem !important;
}

.floating-configurator {
  color: #7c3aed !important;
}

/* =========================================
   9) DRONE HERO LAYER
========================================= */

.drone-hero-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

#droneCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

#hero-servicios .container-fluid {
  position: relative;
  z-index: 2;
}

/* =========================================
   10) HEADER · SISTEMA PL
========================================= */

.pl-header {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: top .22s ease;
}

body.theme-light .pl-header {
  background: transparent;
}

.pl-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    rgba(11, 12, 14, 0.56);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(24px) saturate(165%);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
  transition:
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    transform .22s ease;
}

.pl-header.is-scrolled {
  top: 0;
}

.pl-header.is-scrolled .pl-header-row {
  background:
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04)),
    rgba(11, 12, 14, 0.68);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.pl-brand {
  text-decoration: none;
  color: inherit;
  line-height: 1.05;
}

.pl-brand-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  opacity: 0.75;
  color: var(--muted);
}

.pl-brand-name {
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--text);
}

.pl-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pl-nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pl-nav-link:hover {
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.16);
  transform: translateY(-1px);
  color: var(--text);
}

.pl-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pl-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  background: rgba(34, 197, 94, 0.95);
  box-shadow: 0 18px 45px rgba(34, 197, 94, 0.22);
}

.pl-wa-btn i {
  font-size: 16px;
}

.pl-theme-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

body.theme-light .pl-theme-btn {
  border-color: rgba(31, 19, 13, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

body.theme-light .pl-header-row {
  border-color: rgba(249, 115, 22, 0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.38), rgba(255,255,255,.12)),
    rgba(255, 247, 241, 0.56);
  box-shadow:
    0 22px 46px rgba(45, 24, 10, 0.12),
    inset 0 1px 0 rgba(255,255,255,.82);
}

body.theme-light .pl-header.is-scrolled .pl-header-row {
  background:
    linear-gradient(180deg, rgba(255,255,255,.44), rgba(255,255,255,.16)),
    rgba(255, 247, 241, 0.7);
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow:
    0 28px 56px rgba(45, 24, 10, 0.16),
    inset 0 1px 0 rgba(255,255,255,.88);
}

/* =========================================
   11) LANDING INLINE HEADER
========================================= */

body.landing-inline-header .pl-header {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.landing-inline-header .pl-header .container-fluid {
  padding-top: 0;
}

body.landing-inline-header .pl-header-row {
  max-width: 100%;
  margin-left: 0;
  padding: 14px 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(15, 16, 19, 0.42);
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(24px) saturate(175%);
  -webkit-backdrop-filter: blur(24px) saturate(175%);
}

body.theme-light.landing-inline-header .pl-header-row {
  border-color: rgba(249, 115, 22, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.46), rgba(255,255,255,.18)),
    rgba(255, 247, 241, 0.58);
  box-shadow:
    0 24px 58px rgba(45, 24, 10, 0.12),
    inset 0 1px 0 rgba(255,255,255,.9);
}

body.landing-inline-header .pl-contact {
  padding-top: 128px;
}

/* =========================================
   12) LANDING OVERLAY HEADER FIX
========================================= */

body.landing-inline-header header,
body.landing-inline-header .neu-header,
body.landing-inline-header #plHeader,
body.landing-inline-header #siteHeader {
  position: fixed !important;
  top: 10px;
  left: 0;
  right: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  z-index: 60;
}

body.landing-inline-header header .container,
body.landing-inline-header header .container-fluid,
body.landing-inline-header .neu-header .container,
body.landing-inline-header .neu-header .container-fluid {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.landing-inline-header .navbar,
body.landing-inline-header .pl-header-row {
  max-width: 100%;
  margin: 0 auto !important;
  padding: 14px 18px !important;
  border-radius: 26px;
  border: 1px solid rgba(249, 115, 22, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.16)),
    rgba(255, 247, 241, 0.56);
  box-shadow:
    0 24px 58px rgba(45, 24, 10, 0.12),
    inset 0 1px 0 rgba(255,255,255,.88);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
}

body.theme-dark.landing-inline-header .navbar,
body.theme-dark.landing-inline-header .pl-header-row {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(13, 14, 16, 0.44);
  box-shadow:
    0 26px 58px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255,255,255,.12);
}

body.landing-inline-header .pl-contact,
body.landing-inline-header #hero,
body.landing-inline-header main {
  padding-top: 128px !important;
}

/* =========================================
   13) RESPONSIVE
========================================= */

@media (max-width: 1200px) {
  body.landing-inline-header .navbar,
  body.landing-inline-header .pl-header-row {
    max-width: calc(100% - 32px);
  }

  .neu-header {
    top: 8px;
    padding-bottom: 6px;
  }

  .pl-header {
    top: 8px;
  }
}

@media (max-width: 992px) {
  #header{
    min-height: 102px;
  }

  .neu-header {
    top: calc(env(safe-area-inset-top, 0px) + 6px);
    padding-bottom: 4px;
  }

  .neu-header.is-scrolled,
  .pl-header,
  .pl-header.is-scrolled,
  body.landing-inline-header .pl-header,
  body.landing-inline-header .pl-header.is-scrolled,
  body.landing-inline-header header,
  body.landing-inline-header #plHeader,
  body.landing-inline-header #siteHeader {
    top: calc(env(safe-area-inset-top, 0px) + 6px) !important;
  }

  .neu-nav-link {
    margin: 0;
    width: 100%;
    justify-content: space-between;
    padding: 0.9rem 1rem !important;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.08);
  }

  .neu-nav-link::before {
    left: 18px;
    right: 18px;
    bottom: 10px;
  }

  .neu-navbar .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.95rem;
    border-radius: 22px;
    border: 1px solid rgba(249, 115, 22, 0.14);
    background:
      linear-gradient(180deg, rgba(255,255,255,.38), rgba(255,255,255,.14)),
      rgba(255, 247, 241, 0.78);
    box-shadow:
      0 20px 42px rgba(45, 24, 10, 0.14),
      inset 0 1px 0 rgba(255,255,255,.84);
    backdrop-filter: blur(22px) saturate(165%);
    -webkit-backdrop-filter: blur(22px) saturate(165%);
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity .22s ease,
      transform .22s ease,
      background .22s ease,
      border-color .22s ease,
      box-shadow .22s ease;
  }

  .neu-navbar .navbar-collapse.show {
    opacity: 1;
    transform: translateY(0);
  }

  .neu-navbar .navbar-collapse.collapsing {
    opacity: 0.65;
    transform: translateY(-4px);
  }

  .neu-navbar .navbar-collapse > .d-flex {
    width: 100%;
    margin-top: 0.95rem;
    padding-top: 0.95rem;
    border-top: 1px solid rgba(249, 115, 22, 0.12);
  }

  .neu-navbar .navbar-collapse > .d-flex .neu-cta-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .neu-navbar,
  .pl-header-row {
    border-radius: 20px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .pl-nav {
    display: none;
  }

  .navbar-nav {
    gap: 0.55rem;
  }

  .neu-nav {
    gap: 0.55rem;
  }

  .nav-item.dropdown {
    width: 100%;
  }

  .nav-item.dropdown .dropdown-toggle::after {
    margin-left: auto;
  }

  body.landing-inline-header .pl-header-row,
  body.landing-inline-header .navbar {
    max-width: calc(100% - 22px);
    padding: 10px 12px !important;
    border-radius: 18px;
  }

  body.landing-inline-header .pl-contact,
  body.landing-inline-header #hero,
  body.landing-inline-header main {
    padding-top: 108px !important;
  }

  body.neu-root.theme-dark .neu-navbar .navbar-collapse {
    border-color: rgba(255, 255, 255, 0.12);
    background:
      radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 42%),
      radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.14), transparent 38%),
      linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
      rgba(16, 17, 20, 0.86);
    box-shadow:
      0 24px 48px rgba(0, 0, 0, 0.46),
      inset 0 1px 0 rgba(255,255,255,.08);
  }

  body.neu-root.theme-dark .neu-nav-link {
    color: rgba(247, 240, 235, 0.94) !important;
    background:
      linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)),
      rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.05),
      0 10px 22px rgba(0, 0, 0, 0.16);
  }

  body.neu-root.theme-dark .neu-nav-link:hover,
  body.neu-root.theme-dark .neu-nav-link:focus {
    color: #ffffff !important;
    background:
      linear-gradient(180deg, rgba(249,115,22,.16), rgba(249,115,22,.08)),
      rgba(255, 255, 255, 0.025);
    border-color: rgba(249, 115, 22, 0.26);
    box-shadow:
      0 14px 26px rgba(249, 115, 22, 0.14),
      inset 0 1px 0 rgba(255,255,255,.06);
  }

  body.neu-root.theme-dark .neu-nav-link.active,
  body.neu-root.theme-dark .nav-item.dropdown.show > .neu-nav-link {
    color: #fffaf7 !important;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(168, 85, 247, 0.16));
    border-color: rgba(249, 115, 22, 0.26);
    box-shadow:
      0 14px 28px rgba(249, 115, 22, 0.16),
      inset 0 1px 0 rgba(255,255,255,.08);
  }

  body.neu-root.theme-dark .neu-navbar .navbar-collapse > .d-flex {
    border-top-color: rgba(255, 255, 255, 0.08);
  }

  body.neu-root.theme-dark .nav-item.dropdown .dropdown-menu {
    background:
      linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)),
      rgba(11, 12, 16, 0.9);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
      0 18px 34px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255,255,255,.05);
  }

  body.neu-root.theme-dark .nav-item.dropdown .dropdown-item {
    color: rgba(247, 240, 235, 0.92);
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
  }

  body.neu-root.theme-dark .nav-item.dropdown .dropdown-item:hover,
  body.neu-root.theme-dark .nav-item.dropdown .dropdown-item:focus {
    color: #ffffff;
    background: rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.16);
    transform: translateX(2px);
  }
}

@media (max-width: 768px) {
  .drone-hero-layer {
    opacity: 0.7;
  }
}

@media (max-width: 767.98px) {
  .site-footer {
    border-radius: 20px 20px 0 0;
  }
}

@media (max-width: 576px) {
  .brand-name {
    font-size: 1.05rem;
  }

  .brand-lockup::after {
    display: none;
  }

  .neu-nav {
    gap: 0.7rem;
  }
}

.nav-item.dropdown .dropdown-menu {
  overflow: hidden;
}

[data-theme="dark"] .nav-item.dropdown .dropdown-menu::before,
html[data-bs-theme="dark"] .nav-item.dropdown .dropdown-menu::before,
[data-theme="light"] .nav-item.dropdown .dropdown-menu::before,
html[data-bs-theme="light"] .nav-item.dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

[data-theme="dark"] .nav-item.dropdown .dropdown-menu::before,
html[data-bs-theme="dark"] .nav-item.dropdown .dropdown-menu::before {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.01) 100%
  );
}

[data-theme="light"] .nav-item.dropdown .dropdown-menu::before,
html[data-bs-theme="light"] .nav-item.dropdown .dropdown-menu::before {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.55) 0%,
    rgba(255,255,255,0.18) 100%
  );
}

/* =========================
   DROPDOWN BASE
========================= */
.nav-item.dropdown .dropdown-menu {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 12px;
  min-width: 272px;
  margin-top: 10px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
}

.nav-item.dropdown .dropdown-item {
  border-radius: 12px;
  padding: 11px 14px;
  font-weight: 600;
  font-size: 0.93rem;
  transition: all 0.25s ease;
}

/* Flechita */
.nav-item.dropdown .dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.25s ease;
}

.nav-item.dropdown.show .dropdown-toggle::after,
.nav-item.dropdown:hover .dropdown-toggle::after,
.nav-item.dropdown:focus-within .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Desktop hover */
@media (min-width: 992px) {
  .nav-item.dropdown {
    position: relative;
  }

  .nav-item.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }

  .nav-item.dropdown:focus-within .dropdown-menu {
    display: block;
  }
}

/* =========================
   LIGHT THEME
========================= */
[data-theme="light"] .nav-item.dropdown .dropdown-menu,
html[data-bs-theme="light"] .nav-item.dropdown .dropdown-menu,
body.light-theme .nav-item.dropdown .dropdown-menu {
  background: rgba(255, 247, 241, 0.94);
  border: 1px solid rgba(31, 19, 13, 0.08);
  box-shadow:
    0 18px 45px rgba(45, 24, 10, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.65);
}

[data-theme="light"] .nav-item.dropdown .dropdown-item,
html[data-bs-theme="light"] .nav-item.dropdown .dropdown-item,
body.light-theme .nav-item.dropdown .dropdown-item {
  color: #1f130d;
}

[data-theme="light"] .nav-item.dropdown .dropdown-item:hover,
[data-theme="light"] .nav-item.dropdown .dropdown-item:focus,
html[data-bs-theme="light"] .nav-item.dropdown .dropdown-item:hover,
html[data-bs-theme="light"] .nav-item.dropdown .dropdown-item:focus,
body.light-theme .nav-item.dropdown .dropdown-item:hover,
body.light-theme .nav-item.dropdown .dropdown-item:focus {
  background: rgba(249, 115, 22, 0.08);
  color: #1f130d;
  transform: translateX(4px);
}

/* =========================
   DARK THEME
========================= */
[data-theme="dark"] .nav-item.dropdown .dropdown-menu,
html[data-bs-theme="dark"] .nav-item.dropdown .dropdown-menu,
body.dark-theme .nav-item.dropdown .dropdown-menu {
  background: rgba(26, 17, 11, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

[data-theme="dark"] .nav-item.dropdown .dropdown-item,
html[data-bs-theme="dark"] .nav-item.dropdown .dropdown-item,
body.dark-theme .nav-item.dropdown .dropdown-item {
  color: #fff4ed;
}

[data-theme="dark"] .nav-item.dropdown .dropdown-item:hover,
[data-theme="dark"] .nav-item.dropdown .dropdown-item:focus,
html[data-bs-theme="dark"] .nav-item.dropdown .dropdown-item:hover,
html[data-bs-theme="dark"] .nav-item.dropdown .dropdown-item:focus,
body.dark-theme .nav-item.dropdown .dropdown-item:hover,
body.dark-theme .nav-item.dropdown .dropdown-item:focus {
  background: rgba(249, 115, 22, 0.12);
  color: #ffffff;
  transform: translateX(4px);
}

/* Divider opcional */
.nav-item.dropdown .dropdown-divider {
  opacity: 0.12;
  margin: 8px 0;
}

/* =========================
   MOBILE TUNING
========================= */

@media (max-width: 991.98px) {
  .nav-item.dropdown .dropdown-menu {
    min-width: 100%;
    margin-top: 0.45rem;
    border-radius: 16px;
    padding: 0.5rem;
  }

  .nav-item.dropdown .dropdown-item {
    padding: 0.88rem 0.95rem;
    font-size: 0.94rem;
  }

  body.light-theme .nav-item.dropdown .dropdown-menu,
  [data-theme="light"] .nav-item.dropdown .dropdown-menu,
  html[data-bs-theme="light"] .nav-item.dropdown .dropdown-menu {
    background: rgba(255, 250, 246, 0.9);
    border-color: rgba(249, 115, 22, 0.12);
  }

  body.dark-theme .nav-item.dropdown .dropdown-menu,
  [data-theme="dark"] .nav-item.dropdown .dropdown-menu,
  html[data-bs-theme="dark"] .nav-item.dropdown .dropdown-menu {
    background: rgba(20, 21, 25, 0.92);
    border-color: rgba(255, 255, 255, 0.08);
  }
}

[data-theme="dark"] .nav-item.dropdown.show > .nav-link,
html[data-bs-theme="dark"] .nav-item.dropdown.show > .nav-link {
  color: #fff;
}

[data-theme="light"] .nav-item.dropdown.show > .nav-link,
html[data-bs-theme="light"] .nav-item.dropdown.show > .nav-link {
  color: #1f130d;
}

.footer-contact {
  margin-top: 1.5rem;
}

.footer-contact .footer-title {
  margin-bottom: 1rem;
}

.footer-contact p {
  margin-bottom: 0.7rem;
}
