@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");
:root {
  color-scheme: dark;
  --bg: #02060a;
  --bg-2: #06121d;
  --panel: rgba(7, 20, 32, .82);
  --panel-2: rgba(10, 32, 47, .72);
  --line: rgba(103, 232, 249, .22);
  --line-strong: rgba(103, 232, 249, .42);
  --text: #f8fbff;
  --muted: #b9c7d5;
  --soft: #7e92a5;
  --cyan: #31d7f4;
  --blue: #158bf3;
  --green: #25d366;
  --warning: #ffd166;
  --danger: #ff6b6b;
  --shadow: 0 20px 70px rgba(0, 0, 0, .35);
  --radius: 8px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(49, 215, 244, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 215, 244, .045) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
  color: var(--text);
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(49, 215, 244, .10) 39%, transparent 40% 100%),
    linear-gradient(150deg, transparent 0 62%, rgba(21, 139, 243, .08) 63%, transparent 64% 100%);
  opacity: .7;
  z-index: -1;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 10000;
  background: var(--cyan);
  color: #001018;
  padding: .65rem 1rem;
  border-radius: var(--radius);
}
.skip-link:focus { top: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 10, .86);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.brand span {
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  align-items: center;
}
.main-nav a, .nav-drop > button, .icon-button, .header-cta {
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-decoration: none;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  border-radius: var(--radius);
  cursor: pointer;
}
.main-nav a:hover, .nav-drop > button:hover, .icon-button:hover {
  background: rgba(49, 215, 244, .10);
  color: var(--cyan);
}
.nav-drop { position: relative; }
.mega-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  transform: translateX(-50%);
  width: min(980px, calc(100vw - 28px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 13, 22, .96);
  box-shadow: var(--shadow);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.nav-drop:hover .mega-menu, .nav-drop:focus-within .mega-menu { display: grid; }
.mega-menu h3 {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: .9rem;
}
.mega-menu a {
  justify-content: flex-start;
  min-height: 34px;
  padding: 0;
  color: var(--muted);
}
.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header-cta {
  background: var(--cyan);
  color: #001018;
  font-weight: 800;
}
.header-wa {
  background: rgba(37, 211, 102, .13);
  color: #b8ffd4;
}
.menu-toggle { display: none; }
.hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.08) contrast(1.04);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,6,10,.95), rgba(2,6,10,.70) 42%, rgba(2,6,10,.36)),
              linear-gradient(0deg, rgba(2,6,10,.95), transparent 48%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: 86px 0 56px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .78rem;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; }
h1 {
  max-width: 860px;
  margin: 12px 0 16px;
  font-size: clamp(2.25rem, 8vw, 5.4rem);
}
h2 {
  font-size: clamp(1.7rem, 5vw, 3rem);
  margin: 0 0 14px;
}
h3 { font-size: 1.1rem; margin: 0 0 10px; }
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
}
.hero-actions, .actions, .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.button, .button-secondary, .button-ghost {
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  font: inherit;
}
.button {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  color: #001018;
}
.button-secondary {
  border-color: var(--line-strong);
  background: rgba(49, 215, 244, .10);
  color: var(--text);
}
.button-ghost {
  border-color: var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
}
.section {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: 62px 0;
}
.section-tight { padding: 34px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.section-head p { max-width: 720px; color: var(--muted); margin: 0; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .product-card, .tool-panel, .policy-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
}
.card, .tool-panel, .policy-panel { padding: 18px; }
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #07121b;
}
.product-card-body { padding: 16px; display: grid; gap: 12px; }
.product-title { font-size: 1rem; margin: 0; }
.muted { color: var(--muted); }
.soft { color: var(--soft); }
.price {
  color: var(--cyan);
  font-size: 1.32rem;
  font-weight: 900;
}
.badge, .stat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 9px;
  color: var(--muted);
  background: rgba(255,255,255,.035);
  font-size: .9rem;
}
.stats { display: flex; flex-wrap: wrap; gap: 10px; }
.stat strong { color: var(--text); }
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}
.input, select, textarea {
  width: 100%;
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
}
select option { color: #001018; }
textarea { min-height: 120px; resize: vertical; }
label { display: grid; gap: 7px; color: var(--muted); font-size: .94rem; }
.product-hero {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: 40px 0;
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: 28px;
  align-items: center;
}
.product-hero figure { margin: 0; }
.product-hero img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.detail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255,255,255,.03);
}
.detail span { display: block; color: var(--soft); font-size: .82rem; }
.detail strong { display: block; margin-top: 2px; }
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgba(255,255,255,.03);
}
details + details { margin-top: 10px; }
summary { cursor: pointer; color: var(--cyan); font-weight: 800; }
.list-clean { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.list-clean li {
  padding-left: 24px;
  position: relative;
  color: var(--muted);
}
.list-clean li::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  left: 4px;
  top: .68em;
  background: var(--cyan);
}
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--cyan); background: rgba(49, 215, 244, .06); }
tr:last-child td { border-bottom: 0; }
.notice {
  border-left: 4px solid var(--warning);
  background: rgba(255, 209, 102, .08);
  padding: 14px 16px;
  border-radius: var(--radius);
  color: #ffefbd;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 10, .92);
  margin-top: 50px;
}
.footer-inner {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 24px;
}
.footer-inner a { color: var(--muted); text-decoration: none; }
.footer-inner a:hover { color: var(--cyan); }
.socials { display: flex; gap: 10px; align-items: center; }
.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  z-index: 9999;
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.search-overlay {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(2,6,10,.88);
  z-index: 1200;
  padding: 90px 14px;
}
.search-overlay.is-open { display: block; }
.search-box {
  width: min(760px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #06121d;
  padding: 18px;
}
.search-results { display: grid; gap: 8px; margin-top: 14px; }
.search-results a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--muted);
}
.calculator {
  display: grid;
  gap: 16px;
}
.calc-step { display: none; }
.calc-step.is-active { display: grid; gap: 14px; }
.progress {
  height: 9px;
  border: 1px solid var(--line);
  border-radius: 99px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}
.progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--blue)); width: 9%; }
.photo-band {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: stretch;
}
.photo-band img, .photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.policy-panel p { color: var(--muted); }
.policy-panel .bullet-line { padding-left: 18px; position: relative; }
.policy-panel .bullet-line::before { content: "•"; position: absolute; left: 0; color: var(--cyan); }
@media (max-width: 1080px) {
  .header-inner { grid-template-columns: auto auto 1fr; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 14px;
    background: rgba(2, 6, 10, .97);
    border-bottom: 1px solid var(--line);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a, .nav-drop > button { justify-content: flex-start; width: 100%; }
  .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    display: none;
    grid-template-columns: 1fr;
    box-shadow: none;
    margin-top: 8px;
  }
  .nav-drop.is-open .mega-menu { display: grid; }
  .header-actions { justify-content: flex-end; }
  .header-cta span, .header-wa span { display: none; }
  .grid, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-hero, .photo-band, .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .header-inner { min-height: 68px; gap: 8px; }
  .brand img { width: 44px; height: 44px; }
  .brand span { font-size: .96rem; }
  .main-nav { inset-top: 68px; }
  .hero { min-height: 68vh; }
  .section { padding: 44px 0; }
  .section-head { display: grid; }
  .grid, .grid-2, .grid-4, .photo-grid, .details-list { grid-template-columns: 1fr; }
  .product-hero { padding: 26px 0; }
  .button, .button-secondary, .button-ghost { width: 100%; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .footer-inner { padding-bottom: 86px; }
}

.map-embed {
  margin-top: 1.2rem;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(2, 255, 251, .18);
  box-shadow: 0 18px 48px rgba(0,0,0,.35);
  background: rgba(255,255,255,.04);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 320px;
}


/* ==== V2 MENU + HERO HALFTONE ==== */
.site-header {
  background: rgba(2, 6, 10, .92);
}
.header-inner {
  min-height: 82px;
  gap: 12px;
}
.brand {
  min-width: 120px;
}
.brand img {
  width: 156px;
  max-height: 60px;
  height: auto;
  object-fit: contain;
}
.brand span { display: none; }
.main-nav {
  justify-content: flex-start;
  gap: 2px;
  flex-wrap: nowrap;
}
.main-nav a, .nav-drop > button, .icon-button, .header-cta {
  font-size: .92rem;
  padding: 0 8px;
}
.nav-drop > button i { font-size: .72rem; }
.mega-menu {
  width: min(920px, calc(100vw - 28px));
  top: calc(100% + 10px);
}
.mega-menu--compact {
  width: min(320px, calc(100vw - 28px));
  grid-template-columns: 1fr;
}
.hero {
  min-height: 62vh;
}
.hero::before {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.02);
}
.hero::after {
  background:
    linear-gradient(90deg, rgba(2,6,10,.96) 0%, rgba(2,6,10,.86) 34%, rgba(2,6,10,.58) 60%, rgba(2,6,10,.26) 100%),
    linear-gradient(0deg, rgba(2,6,10,.96) 0%, rgba(2,6,10,.18) 48%, rgba(2,6,10,.10) 100%),
    radial-gradient(circle at 1px 1px, rgba(64, 203, 255, .18) 1px, transparent 1.35px);
  background-size: auto, auto, 8px 8px;
  background-position: 0 0, 0 0, right center;
}
.hero-content {
  padding: 78px 0 52px;
}
.page-note,
.contact-grid,
.contact-methods,
.form-stack,
.inline-help {
  position: relative;
  z-index: 1;
}
.contact-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.contact-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(11, 28, 42, .9), rgba(6, 18, 29, .92));
  box-shadow: var(--shadow);
}
.contact-card h3 { margin-bottom: 8px; }
.contact-card p { margin: 0 0 8px; color: var(--muted); }
.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-stack label,
.calculator label {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.input,
textarea,
select {
  width: 100%;
  background: rgba(255,255,255,.04);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  min-height: 46px;
}
textarea { min-height: 120px; resize: vertical; }
.inline-help {
  margin-top: 8px;
  font-size: .92rem;
  color: var(--soft);
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(49, 215, 244, .08);
}
@media (max-width: 1260px) {
  .main-nav a, .nav-drop > button { font-size: .88rem; padding: 0 6px; }
  .brand img { width: 138px; }
}
@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
    min-height: 72px;
  }
  .brand img { width: 128px; max-height: 52px; }
  .main-nav {
    justify-content: flex-start;
  }
  .main-nav.is-open {
    max-height: calc(100vh - 86px);
    overflow: auto;
  }
  .contact-methods,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}


/* ==== V2.1 MENU HOVER FIX ==== */
/* Desktop: JS controls .is-open so only one dropdown stays visible. */
@media (min-width: 1081px) {
  .nav-drop { position: relative; }
  .nav-drop::after {
    content: "";
    position: absolute;
    left: -12px;
    right: -12px;
    top: 100%;
    height: 18px;
    display: none;
  }
  .nav-drop.is-open::after { display: block; }

  .nav-drop:hover .mega-menu,
  .nav-drop:focus-within .mega-menu {
    display: none;
  }

  .nav-drop.is-open > .mega-menu {
    display: grid;
  }

  .mega-menu {
    top: calc(100% + 8px);
    z-index: 1200;
    pointer-events: auto;
  }

  .nav-drop.is-open > button {
    background: rgba(49, 215, 244, .12);
    color: var(--cyan);
  }
}

/* Mobile: accordion behavior only, no hover-open ghosts. */
@media (max-width: 1080px) {
  .nav-drop:hover .mega-menu,
  .nav-drop:focus-within .mega-menu {
    display: none;
  }
  .nav-drop.is-open > .mega-menu {
    display: grid;
  }
}


/* ==== V2.2 COTIZACIÓN SIMPLE + CARRO ==== */
.shop-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.shop-sidebar {
  position: sticky;
  top: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 13, 22, .84);
  box-shadow: var(--shadow);
}
.shop-sidebar h3 { color: var(--cyan); margin-top: 0; }
.shop-sidebar .button-ghost {
  width: 100%;
  justify-content: flex-start;
  margin: 6px 0;
  min-height: 38px;
}
.cart-float {
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #001018;
  z-index: 9998;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 900;
}
.cart-float span {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #001018;
  border: 2px solid var(--bg);
  font-size: .78rem;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(520px, 100vw);
  height: 100vh;
  transform: translateX(105%);
  transition: transform .25s ease;
  background: rgba(3, 10, 17, .98);
  border-left: 1px solid var(--line);
  z-index: 10000;
  overflow: auto;
  padding: 18px;
  box-shadow: var(--shadow);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 14px;
}
.cart-head strong { font-size: 1.25rem; }
.cart-head p { margin: 2px 0 0; color: var(--muted); }
.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(103, 232, 249, .14);
}
.cart-item img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
}
.cart-item small { display: block; color: var(--muted); }
.cart-qty { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-top: 8px; }
.cart-qty button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 6px;
  min-height: 30px;
  padding: 0 9px;
  cursor: pointer;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  color: var(--muted);
}
.cart-total strong { color: var(--cyan); font-size: 1.25rem; }
.cart-form { padding-bottom: 24px; }
.quote-simple-panel {
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 920px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: relative; top: auto; }
}


/* ==== V2.4 header, policies and about page refinements ==== */
.brand img{width:210px;max-height:58px;object-fit:contain;object-position:left center}.brand{min-width:190px}.header-inner{grid-template-columns:auto 1fr auto;gap:14px}.main-nav{gap:4px}.main-nav>a,.nav-drop>button{white-space:nowrap}.policy-panel-expanded{display:grid;gap:16px}.policy-item{border:1px solid var(--line);border-radius:16px;background:rgba(5,18,30,.78);overflow:hidden}.policy-item summary{cursor:pointer;list-style:none;padding:18px 22px;font-size:clamp(1.12rem,2vw,1.5rem);font-weight:950;color:var(--text);display:flex;align-items:center;justify-content:space-between}.policy-item summary::-webkit-details-marker{display:none}.policy-item summary::after{content:'+';color:var(--cyan);font-size:1.4rem}.policy-item[open] summary::after{content:'−'}.policy-item div{padding:0 22px 20px;color:var(--muted);line-height:1.65}.policy-item p{margin:.75rem 0}.about-hero{min-height:68vh}.about-story{display:grid;gap:34px}.about-block{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,560px);gap:28px;align-items:center;border:1px solid var(--line);border-radius:var(--radius);background:linear-gradient(180deg,rgba(7,22,35,.82),rgba(3,11,19,.92));padding:24px;box-shadow:var(--shadow)}.about-block.reverse{grid-template-columns:minmax(320px,560px) minmax(0,1fr)}.about-block.reverse>div{order:2}.about-block.reverse>img{order:1}.about-block img{width:100%;height:360px;object-fit:cover;border-radius:18px;border:1px solid var(--line);box-shadow:0 18px 50px rgba(0,0,0,.32)}.about-block h2{font-size:clamp(1.8rem,3vw,3rem);margin:.2rem 0 1rem}.about-block p{color:var(--muted);line-height:1.75}.about-list{display:grid;gap:12px;color:var(--muted);line-height:1.65;padding-left:20px}.about-list strong{color:var(--text)}@media(max-width:1220px){.brand{min-width:150px}.brand img{width:170px}.main-nav a,.nav-drop>button{font-size:.86rem;padding:0 5px}.header-cta{font-size:.86rem;padding:0 10px}}@media(max-width:1080px){.header-inner{grid-template-columns:auto auto 1fr}.brand{min-width:auto}.brand img{width:150px;max-height:52px}.about-block,.about-block.reverse{grid-template-columns:1fr}.about-block.reverse>div,.about-block.reverse>img{order:initial}.about-block img{height:auto;max-height:480px}.policy-item summary{padding:16px}.policy-item div{padding:0 16px 18px}}



/* ==== V2.5 videos explicativos por kit ==== */
.kit-video-info {
  margin-top: 42px;
  padding: 24px 0 36px;
}
.kit-video-box {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(180deg, rgba(8, 24, 38, .92), rgba(3, 13, 23, .94));
  border: 1px solid rgba(49, 215, 244, .28);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
  overflow: hidden;
  position: relative;
}
.kit-video-box::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 1px 1px, rgba(49, 215, 244, .12) 1px, transparent 1.2px);
  background-size: 6px 6px;
  opacity: .38;
}
.kit-video-wrapper,
.kit-video-content { position: relative; z-index: 1; }
.kit-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(49, 215, 244, .22);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .34);
}
.kit-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.kit-video-label {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(49, 215, 244, .12);
  color: var(--cyan);
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1px solid rgba(49, 215, 244, .22);
}
.kit-video-content h2 {
  margin: 12px 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  color: var(--text);
  line-height: 1.12;
}
.kit-video-content p {
  margin: 0 0 13px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}
.kit-video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}
.kit-video-btn,
.kit-video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}
.kit-video-btn {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  color: #001018;
}
.kit-video-link {
  border: 1px solid rgba(49, 215, 244, .35);
  color: var(--text);
  background: rgba(49, 215, 244, .07);
}
@media (max-width: 850px) {
  .kit-video-box {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 18px;
  }
  .kit-video-info {
    margin-top: 28px;
    padding: 18px 0;
  }
  .kit-video-content h2 { font-size: 1.55rem; }
  .kit-video-content p { font-size: .96rem; }
  .kit-video-actions a { width: 100%; }
}




/* ==== V2.7 tienda funcional, menú compacto y portadas rotativas ==== */
html, body { max-width: 100%; overflow-x: hidden; }

.header-inner-v27 {
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
}
.header-inner-v27 .brand img {
  width: 150px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
}
.header-actions-v27 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.header-actions-v27 .header-cta {
  padding: 0 14px;
}
.header-calc {
  background: linear-gradient(135deg, #1ed6ff, #0978f2);
  color: #001018 !important;
  font-weight: 900;
}
.header-wa {
  background: rgba(37, 211, 102, .18);
  border-color: rgba(37, 211, 102, .40);
  color: #dffff0 !important;
}
.main-nav { min-width: 0; }
.mega-menu {
  box-shadow: 0 24px 60px rgba(0,0,0,.38);
}
.hero-rotating::before {
  transition: opacity .9s ease, transform 5.4s ease;
  opacity: .62;
  transform: scale(1.02);
}
.hero-rotating.is-changing::before { opacity: .35; }
.hero::after {
  background:
    linear-gradient(90deg, rgba(2,6,10,.97), rgba(2,6,10,.80) 38%, rgba(2,6,10,.38)),
    linear-gradient(0deg, rgba(2,6,10,.96), transparent 55%),
    radial-gradient(circle at 1px 1px, rgba(49,215,244,.15) 1px, transparent 1.25px);
  background-size: auto, auto, 5px 5px;
}
.shop-layout-v2 {
  align-items: flex-start;
}
.filter-mobile-open,
.filter-mobile-close {
  display: none;
}
.shop-filter-panel {
  position: sticky;
  top: 94px;
  max-height: calc(100vh - 110px);
  overflow: auto;
}
.filter-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.filter-group {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(200px, 260px) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 14px;
}
.shop-toolbar label,
.advanced-filters label,
.shop-search-label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: .88rem;
}
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
}
.advanced-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 16, 26, .72);
  margin-bottom: 14px;
}
.button-ghost.is-active,
.button-ghost[aria-pressed="true"] {
  background: rgba(49, 215, 244, .16);
  border-color: var(--cyan);
  color: var(--cyan);
}
.shop-status {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin: 14px 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 18, 30, .72);
}
.product-grid {
  align-items: stretch;
}
.product-card .product-img-link {
  display: block;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.product-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: contain;
  background: rgba(255,255,255,.04);
}
.product-card-body {
  display: grid;
  gap: 10px;
}
.product-meta {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: .9rem;
}
.product-meta li { margin: 2px 0; }
.product-card .button-row {
  gap: 8px;
}
.product-card .button,
.product-card .button-secondary,
.product-card .button-ghost {
  min-height: 40px;
  padding: 0 12px;
}
.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(5, 18, 30, .75);
  text-align: center;
}
.cart-float {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 1001;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #001018;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.cart-float span {
  position: absolute;
  top: -8px;
  right: -6px;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--green);
  color: #001018;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: .78rem;
}
.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1200;
  width: min(520px, 100vw);
  transform: translateX(105%);
  transition: transform .25s ease;
  background: rgba(4, 13, 22, .98);
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 70px rgba(0,0,0,.45);
  overflow: auto;
  padding: 18px;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-head,
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 14px;
}
.cart-items {
  display: grid;
  gap: 12px;
}
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 24, 38, .75);
}
.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
}
.cart-qty {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  align-items: center;
}
.cart-qty button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(49,215,244,.08);
  color: var(--text);
  min-height: 30px;
  padding: 0 9px;
}
.cart-form {
  display: grid;
  gap: 12px;
}
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
  place-items: start center;
  background: rgba(0,0,0,.72);
  padding: 92px 18px 18px;
}
.search-overlay.is-open { display: grid; }
.search-box {
  width: min(760px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 13, 22, .98);
  padding: 18px;
  box-shadow: var(--shadow);
}
.search-results {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.search-results a {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  background: rgba(49,215,244,.06);
}
.footer-legal-grid {
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
}
.policy-content {
  display: grid;
  gap: 16px;
}
.policy-content details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 18, 30, .78);
  padding: 14px 16px;
}
.policy-content summary {
  cursor: pointer;
  font-weight: 900;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.policy-content details[open] summary {
  color: var(--cyan);
  margin-bottom: 10px;
}
@media (max-width: 1180px) {
  .header-inner-v27 {
    grid-template-columns: auto auto 1fr;
  }
  .header-inner-v27 .brand img {
    width: 128px;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .main-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    max-height: calc(100vh - 78px);
    overflow: auto;
    padding: 14px;
    background: rgba(2, 6, 10, .98);
    border-bottom: 1px solid var(--line);
  }
  .main-nav.is-open { display: flex; }
  .nav-drop > button,
  .main-nav a {
    width: 100%;
    justify-content: space-between;
  }
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }
  .header-actions-v27 {
    justify-content: flex-end;
  }
  .header-actions-v27 .header-cta span {
    display: none;
  }
  .header-actions-v27 .header-cta {
    width: 44px;
    padding: 0;
  }
}
@media (max-width: 920px) {
  .shop-layout-v2 {
    display: block;
  }
  .filter-mobile-open,
  .filter-mobile-close {
    display: inline-flex;
  }
  .shop-filter-panel {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1300;
    width: min(360px, 92vw);
    max-height: none;
    transform: translateX(-105%);
    transition: transform .24s ease;
    background: rgba(4, 13, 22, .98);
    padding: 18px;
    border-right: 1px solid var(--line);
    overflow: auto;
  }
  .shop-filter-panel.is-open {
    transform: translateX(0);
  }
  .shop-toolbar,
  .advanced-filters {
    grid-template-columns: 1fr;
  }
  .shop-status {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-legal-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .hero {
    min-height: 66vh;
  }
  .header-actions-v27 {
    gap: 4px;
  }
  .header-inner-v27 .brand img {
    width: 112px;
  }
  .product-card .button-row {
    flex-direction: column;
    align-items: stretch;
  }
  .product-card .button,
  .product-card .button-secondary,
  .product-card .button-ghost {
    width: 100%;
  }
  .cart-drawer {
    width: 100vw;
  }
}


/* ==== V2.8 ajustes pedidos por Keduin ==== */
.footer-legal-grid > div:first-child p.muted { display: none !important; }
.footer-legal-grid > div:first-child {
  display: grid;
  align-content: start;
  gap: 14px;
}
.footer-legal-grid > div:first-child .socials {
  margin-top: 0;
}
.kit-video-box {
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  justify-content: center;
}
.kit-video-wrapper {
  aspect-ratio: 9 / 16;
  max-width: 400px;
  margin-inline: auto;
  background: #08131d;
}
.kit-video-wrapper iframe {
  background: #08131d;
}
.hero.hero-rotating::before,
.hero-rotating::before {
  background-image: var(--hero-image);
  background-position: center center;
  background-size: cover;
}
@media (max-width: 980px) {
  .kit-video-box {
    grid-template-columns: 1fr;
  }
  .kit-video-wrapper {
    width: min(100%, 420px);
  }
}


/* ==== V2.9 ajustes de adaptabilidad, FAQ/documentos y portada inicio ==== */
.hero-home .hero-content { padding: 84px 0 56px; }
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 28px;
  align-items: center;
}
.hero-copy { max-width: 760px; }
.hero-media {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: 100%;
  max-width: 460px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(4, 13, 22, .86);
  box-shadow: var(--shadow);
}
.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.docs-kit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.docs-kit-grid.docs-kit-grid-single {
  grid-template-columns: minmax(0, 1fr);
}
.kit-guide-faq {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 18px;
  align-items: start;
}
.kit-guide-panel,
.kit-faq-panel {
  padding: 24px;
}
.kit-guide-panel .kit-video-box {
  grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.kit-guide-panel .kit-video-wrapper {
  width: 100%;
  max-width: 230px;
  aspect-ratio: 9 / 16;
  margin: 0;
}
.kit-faq-panel h2 { margin-bottom: 16px; }
.kit-faq-panel details + details { margin-top: 10px; }
.kit-faq-panel details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  background: rgba(7, 22, 35, .45);
}
.kit-faq-panel details summary {
  cursor: pointer;
  padding: 14px 0;
  font-weight: 800;
}
.kit-faq-panel details p {
  margin: 0 0 14px;
  color: var(--muted);
}
@media (max-width: 1120px) {
  .kit-guide-faq {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 980px) {
  .hero-layout,
  .docs-kit-grid {
    grid-template-columns: 1fr;
  }
  .hero-media {
    justify-self: stretch;
    max-width: none;
  }
  .kit-guide-panel .kit-video-box {
    grid-template-columns: 1fr;
  }
  .kit-guide-panel .kit-video-wrapper {
    margin: 0 auto;
  }
}


/* ==== V2.10 portadas estáticas por sección + portada principal con rotación suave ==== */
.hero {
  min-height: 72vh;
}
.hero::before {
  z-index: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center center;
  transform: scale(1.01);
}
.hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2,6,10,.96) 0%, rgba(2,6,10,.82) 34%, rgba(2,6,10,.56) 58%, rgba(2,6,10,.28) 100%),
    linear-gradient(0deg, rgba(2,6,10,.92) 0%, rgba(2,6,10,.22) 48%, rgba(2,6,10,.10) 100%),
    radial-gradient(circle at 1px 1px, rgba(64, 203, 255, .18) 1px, transparent 1.35px);
  background-size: auto, auto, 8px 8px;
  background-position: 0 0, 0 0, right center;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: 96px 0 64px;
}
.hero .lead {
  max-width: 860px;
}
.hero-fade-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.04);
  opacity: 0;
  transition: opacity .9s ease-in-out;
  pointer-events: none;
}
.hero-fade-layer.is-visible {
  opacity: 1;
}
.hero-home .hero-content {
  padding: 108px 0 74px;
}
.hero-home h1 {
  max-width: 920px;
}
.hero-home .lead {
  font-size: clamp(1.08rem, 2.2vw, 1.34rem);
}
@media (max-width: 980px) {
  .hero,
  .about-hero,
  .policy-hero {
    min-height: 64vh;
  }
  .hero-content,
  .hero-home .hero-content {
    padding: 88px 0 54px;
  }
}


/* ==== V2.11 portada principal con video Vimeo background ==== */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background: #000 url("../assets/img/poster-portada-video.jpg") center center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 6, 10, .84) 0%, rgba(2, 6, 10, .58) 46%, rgba(2, 6, 10, .30) 100%),
    linear-gradient(0deg, rgba(2, 6, 10, .90) 0%, rgba(2, 6, 10, .18) 52%, rgba(2, 6, 10, .10) 100%),
    radial-gradient(circle at 1px 1px, rgba(49, 215, 244, .16) 1px, transparent 1.35px);
  background-size: auto, auto, 8px 8px;
}

.hero-video-content {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 92px 0 70px;
}

.hero-video-content h1 {
  max-width: 920px;
  margin: 0 0 22px;
  font-size: clamp(2.45rem, 6.3vw, 5.75rem);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.045em;
}

.hero-video-content p {
  max-width: 720px;
  margin: 0 0 32px;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, .90);
}

.hero-video-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-video-actions .button,
.hero-video-actions .button-secondary {
  min-height: 48px;
  padding-inline: 24px;
  border-radius: 999px;
}

.hero-video-actions .hero-video-whatsapp {
  background: rgba(37, 211, 102, .18);
  border-color: rgba(37, 211, 102, .40);
  color: #eafff3;
}

@media (max-width: 768px) {
  .hero-video {
    height: 86vh;
    min-height: 540px;
    background-position: center center;
  }

  .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(2, 6, 10, .34) 0%, rgba(2, 6, 10, .82) 72%, rgba(2, 6, 10, .95) 100%),
      radial-gradient(circle at 1px 1px, rgba(49, 215, 244, .14) 1px, transparent 1.35px);
    background-size: auto, 8px 8px;
  }

  .hero-video-content {
    justify-content: flex-end;
    padding-bottom: 64px;
  }

  .hero-video-content h1 {
    font-size: clamp(2.15rem, 12vw, 3.4rem);
    line-height: 1.03;
  }

  .hero-video-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-video-actions .button,
  .hero-video-actions .button-secondary {
    width: 100%;
    max-width: 340px;
  }
}


/* ==== V2.12 ajuste de portadas: 30% menos alto, títulos 20% menores, imagen fija por área ==== */
.hero,
.about-hero,
.policy-hero {
  min-height: 50vh !important;
}
.hero-content {
  padding: 67px 0 45px !important;
}
.hero::before {
  background-image: var(--hero-image) !important;
  background-size: cover !important;
  background-position: center center !important;
  opacity: 1 !important;
  filter: saturate(1.05) contrast(1.03);
}
.hero::after {
  background: rgba(0, 0, 0, .20) !important;
  z-index: 1 !important;
}
.hero h1,
.policy-hero h1,
.about-hero h1 {
  font-size: clamp(2rem, 5.6vw, 4.8rem) !important;
  line-height: 1.04 !important;
  text-shadow: 0 10px 34px rgba(0, 0, 0, .72);
}
.hero .lead,
.hero p {
  text-shadow: 0 8px 24px rgba(0, 0, 0, .72);
}
.hero-video {
  height: 70vh !important;
  min-height: 392px !important;
}
.hero-video-overlay {
  background: rgba(0, 0, 0, .20) !important;
}
.hero-video-content {
  padding-top: 34px;
  padding-bottom: 34px;
}
.hero-video-content h1 {
  font-size: clamp(1.92rem, 4.8vw, 4.32rem) !important;
  line-height: 1.04 !important;
  text-shadow: 0 10px 34px rgba(0, 0, 0, .78);
}
.hero-video-content p {
  text-shadow: 0 8px 24px rgba(0, 0, 0, .72);
}
@media (max-width: 768px) {
  .hero,
  .about-hero,
  .policy-hero {
    min-height: 44vh !important;
  }
  .hero-content {
    padding: 58px 0 38px !important;
  }
  .hero-video {
    height: 60vh !important;
    min-height: 360px !important;
  }
  .hero-video-content {
    justify-content: center !important;
    padding-bottom: 42px !important;
  }
}

/* ==== V2.13 CORRECCION PORTADAS K SOLARES ====
   Objetivo: quitar gris inicial del video, eliminar línea clara, reducir altura
   y unificar tipografía original/profesional sin tocar productos ni fichas. */
body {
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
h1, h2, h3,
.eyebrow,
.button, .button-secondary, .button-ghost,
.main-nav a, .nav-drop > button,
.header-cta {
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

/* Portada principal con video: tamaño más compacto tipo referencia Seawallplast */
.hero-video {
  height: clamp(460px, 56vh, 560px) !important;
  min-height: 460px !important;
  max-height: 560px !important;
  background-color: #02060a !important;
  background-image: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

/* Cortina oscura inicial: evita el cuadro gris mientras Vimeo carga */
.hero-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 6, 10, .92) 0%, rgba(2, 6, 10, .76) 44%, rgba(2, 6, 10, .48) 100%),
    linear-gradient(0deg, rgba(2, 6, 10, .82) 0%, rgba(2, 6, 10, .22) 52%, rgba(2, 6, 10, .34) 100%),
    url("../assets/img/poster-portada-video.jpg") center center / cover no-repeat,
    #02060a;
  opacity: 1;
  visibility: visible;
  transition: opacity .9s ease, visibility 0s linear 0s;
}
.hero-video.video-ready::before {
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease, visibility 0s linear .9s;
}

.hero-video-bg {
  background: #02060a !important;
}
.hero-video-bg iframe {
  opacity: 0;
  transition: opacity .9s ease;
  background: #02060a !important;
}
.hero-video.video-ready .hero-video-bg iframe {
  opacity: 1;
}

/* Overlay sin gris ni línea clara inferior */
.hero-video-overlay {
  z-index: 3 !important;
  background:
    linear-gradient(90deg, rgba(2, 6, 10, .80) 0%, rgba(2, 6, 10, .58) 42%, rgba(2, 6, 10, .28) 100%),
    linear-gradient(0deg, rgba(2, 6, 10, .78) 0%, rgba(2, 6, 10, .10) 52%, rgba(2, 6, 10, .18) 100%) !important;
  background-size: auto !important;
}

.hero-video-content {
  z-index: 4 !important;
  padding-top: 58px !important;
  padding-bottom: 42px !important;
  justify-content: center !important;
}
.hero-video-content h1 {
  max-width: 880px !important;
  font-size: clamp(2.15rem, 4.75vw, 4.45rem) !important;
  line-height: 1.02 !important;
  font-weight: 900 !important;
  letter-spacing: -.035em !important;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .66) !important;
  margin-bottom: 18px !important;
}
.hero-video-content p {
  font-weight: 500 !important;
  font-size: clamp(1rem, 1.45vw, 1.22rem) !important;
  text-shadow: 0 6px 18px rgba(0, 0, 0, .62) !important;
  margin-bottom: 24px !important;
}
.hero-video .eyebrow {
  font-size: .76rem !important;
  letter-spacing: .02em !important;
  font-weight: 800 !important;
  text-shadow: 0 6px 18px rgba(0, 0, 0, .62) !important;
}
.hero-video-actions {
  gap: 12px !important;
}
.hero-video-actions .button,
.hero-video-actions .button-secondary {
  min-height: 44px !important;
  padding-inline: 20px !important;
  border-radius: 999px !important;
  font-size: .92rem !important;
}

/* Portadas internas: más bajas, consistentes y sin línea divisoria */
.hero,
.about-hero,
.policy-hero {
  min-height: 0 !important;
  height: clamp(340px, 42vh, 460px) !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  align-items: center !important;
}
.hero::after,
.about-hero::after,
.policy-hero::after {
  background:
    linear-gradient(90deg, rgba(2, 6, 10, .82) 0%, rgba(2, 6, 10, .62) 43%, rgba(2, 6, 10, .24) 100%),
    linear-gradient(0deg, rgba(2, 6, 10, .72) 0%, rgba(2, 6, 10, .10) 58%, rgba(2, 6, 10, .14) 100%) !important;
}
.hero-content {
  padding: 48px 0 36px !important;
}
.hero h1,
.policy-hero h1,
.about-hero h1 {
  max-width: 850px !important;
  font-size: clamp(2rem, 4.2vw, 3.75rem) !important;
  line-height: 1.03 !important;
  font-weight: 900 !important;
  letter-spacing: -.032em !important;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .66) !important;
}
.hero .lead,
.hero p {
  max-width: 760px !important;
  font-size: clamp(.98rem, 1.45vw, 1.16rem) !important;
  text-shadow: 0 6px 18px rgba(0, 0, 0, .58) !important;
}

/* Evita líneas claras entre portada y siguiente bloque */
.hero + .section,
.hero-video + .section,
.hero-video + .section-tight {
  margin-top: 0 !important;
}

@media (max-width: 980px) {
  .hero-video {
    height: clamp(420px, 58vh, 520px) !important;
    min-height: 420px !important;
  }
  .hero,
  .about-hero,
  .policy-hero {
    height: clamp(320px, 44vh, 420px) !important;
  }
}

@media (max-width: 768px) {
  .hero-video {
    height: 430px !important;
    min-height: 430px !important;
    max-height: 430px !important;
  }
  .hero-video-content {
    justify-content: center !important;
    padding: 72px 0 36px !important;
  }
  .hero-video-content h1 {
    font-size: clamp(1.95rem, 10vw, 3.05rem) !important;
    line-height: 1.04 !important;
  }
  .hero-video-actions {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .hero-video-actions .button,
  .hero-video-actions .button-secondary {
    width: 100% !important;
    max-width: 340px !important;
  }
  .hero,
  .about-hero,
  .policy-hero {
    height: 330px !important;
  }
  .hero-content {
    padding: 54px 0 34px !important;
  }
  .hero h1,
  .policy-hero h1,
  .about-hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.85rem) !important;
  }
}

/* ==== V2.14 portadas visibles, videos por configuración y ubicación ==== */
.configuration-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.config-video-card {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(7, 22, 35, .88), rgba(3, 11, 19, .94));
  padding: 18px;
  box-shadow: var(--shadow);
}
.config-video-card .kit-video-wrapper {
  width: 100%;
  max-width: 260px;
}
.config-video-card h3 {
  margin: .35rem 0 .65rem;
}
.config-video-card .button-secondary {
  margin-top: 8px;
}
.location-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  margin-bottom: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .26);
}
#ubicacion {
  scroll-margin-top: 96px;
}
@media (max-width: 980px) {
  .configuration-video-grid,
  .config-video-card {
    grid-template-columns: 1fr;
  }
  .config-video-card .kit-video-wrapper {
    max-width: 360px;
  }
}


/* ==== V2.16 guías de configuración sin videos Vimeo ==== */
.configuration-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.config-text-card,
.kit-system-guide-box {
  border: 1px solid rgba(2, 255, 251, 0.26);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(3, 20, 31, 0.94), rgba(0, 10, 18, 0.92));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.config-text-card {
  padding: 26px;
}
.kit-system-guide-box {
  padding: clamp(22px, 3vw, 34px);
}
.kit-system-guide-content {
  max-width: 980px;
}
.kit-system-guide-label {
  display: inline-flex;
  width: max-content;
  align-items: center;
  border: 1px solid rgba(2, 255, 251, 0.36);
  border-radius: 999px;
  padding: 7px 13px;
  margin-bottom: 12px;
  color: #02fffb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(2, 255, 251, 0.08);
}
.kit-system-guide-content h2,
.config-text-card h3 {
  margin-top: 0;
}
.kit-system-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
@media (max-width: 820px) {
  .configuration-text-grid {
    grid-template-columns: 1fr;
  }
  .kit-system-guide-actions a {
    width: 100%;
    justify-content: center;
  }
}


/* ==== V2.18 HERO LIGHTEN + MOBILE RESPONSIVE FIXES ==== */
.hero::before,
.about-hero::before,
.policy-hero::before {
  filter: brightness(1.14) saturate(1.05) contrast(1.01) !important;
}

.hero::after,
.about-hero::after,
.policy-hero::after {
  background:
    linear-gradient(90deg, rgba(2, 6, 10, .68) 0%, rgba(2, 6, 10, .42) 45%, rgba(2, 6, 10, .14) 100%),
    linear-gradient(0deg, rgba(2, 6, 10, .42) 0%, rgba(2, 6, 10, .08) 58%, rgba(2, 6, 10, .06) 100%) !important;
}

.hero .lead,
.hero p,
.about-hero p,
.policy-hero p {
  color: rgba(247, 251, 255, .92) !important;
}

.hero-video {
  height: auto !important;
  min-height: clamp(620px, 82vh, 760px) !important;
  max-height: none !important;
}

.hero-video::before {
  background:
    linear-gradient(90deg, rgba(2, 6, 10, .58) 0%, rgba(2, 6, 10, .34) 46%, rgba(2, 6, 10, .12) 100%),
    linear-gradient(0deg, rgba(2, 6, 10, .36) 0%, rgba(2, 6, 10, .06) 56%, rgba(2, 6, 10, .08) 100%),
    url("../assets/img/poster-portada-video.jpg") center center / cover no-repeat,
    #02060a !important;
}

.hero-video-overlay {
  background:
    linear-gradient(90deg, rgba(2, 6, 10, .54) 0%, rgba(2, 6, 10, .28) 42%, rgba(2, 6, 10, .08) 100%),
    linear-gradient(0deg, rgba(2, 6, 10, .28) 0%, rgba(2, 6, 10, .06) 52%, rgba(2, 6, 10, .06) 100%) !important;
}

.hero-video-content {
  height: auto !important;
  justify-content: flex-start !important;
  padding-top: 104px !important;
  padding-bottom: 76px !important;
}

.hero-video-content p {
  color: rgba(255, 255, 255, .94) !important;
}

.cart-float,
.whatsapp-float {
  width: 56px !important;
  height: 56px !important;
}

.cart-float {
  right: 22px !important;
  bottom: 92px !important;
}

.whatsapp-float {
  right: 22px !important;
  bottom: 22px !important;
}

.cart-float span {
  min-width: 22px !important;
  height: 22px !important;
  padding: 0 5px !important;
  font-size: .75rem !important;
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto auto !important;
    min-height: 72px !important;
    gap: 8px !important;
  }

  .brand span {
    display: none !important;
  }

  .brand img {
    width: auto !important;
    height: 42px !important;
  }

  .main-nav {
    inset: 72px 0 auto 0 !important;
    max-height: calc(100vh - 72px) !important;
    overflow: auto !important;
    padding-bottom: 24px !important;
  }

  .hero-video {
    height: auto !important;
    min-height: 780px !important;
  }

  .hero-video-content {
    justify-content: flex-start !important;
    padding: 92px 0 64px !important;
  }

  .hero-video-content h1 {
    max-width: 100% !important;
    font-size: clamp(2rem, 10vw, 3.3rem) !important;
    line-height: 1.05 !important;
    margin-bottom: 16px !important;
  }

  .hero-video-content p {
    font-size: 1.02rem !important;
    line-height: 1.55 !important;
  }

  .hero-video-actions {
    width: 100% !important;
    gap: 12px !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero-video-actions .button,
  .hero-video-actions .button-secondary {
    width: 100% !important;
    max-width: none !important;
  }

  .hero,
  .about-hero,
  .policy-hero {
    height: auto !important;
    min-height: 420px !important;
    align-items: flex-start !important;
  }

  .hero-content,
  .about-hero .hero-content,
  .policy-hero .hero-content {
    padding: 92px 0 54px !important;
  }

  .hero h1,
  .policy-hero h1,
  .about-hero h1 {
    font-size: clamp(2rem, 9vw, 3.15rem) !important;
    line-height: 1.05 !important;
  }

  .hero .lead,
  .hero p,
  .about-hero p,
  .policy-hero p {
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }

  .button,
  .button-secondary,
  .button-ghost {
    min-height: 48px !important;
  }

  .hero + .section,
  .hero-video + .section,
  .hero-video + .section-tight {
    padding-top: 34px !important;
  }

  .cart-float,
  .whatsapp-float {
    right: 16px !important;
    width: 56px !important;
    height: 56px !important;
  }

  .cart-float {
    bottom: 86px !important;
  }

  .whatsapp-float {
    bottom: 16px !important;
  }
}


/* ==== V2.19 LOGO MENU + HEADER FLOTANTE MOVIL ==== */
.header-inner-v27 .brand img,
.site-header .brand img {
  width: 180px !important;
  height: auto !important;
  max-height: 74px !important;
  object-fit: contain !important;
}

.header-inner-v27,
.site-header .header-inner {
  min-height: 86px !important;
}

@media (max-width: 1180px) {
  .header-inner-v27 .brand img,
  .site-header .brand img {
    width: 154px !important;
    max-height: 64px !important;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 78px !important;
  }

  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10050 !important;
    background: rgba(2, 6, 10, .94) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
  }

  .header-inner,
  .header-inner-v27,
  .site-header .header-inner {
    min-height: 78px !important;
  }

  .header-inner-v27 .brand img,
  .site-header .brand img,
  .brand img {
    width: 134px !important;
    height: auto !important;
    max-height: 54px !important;
  }

  .main-nav {
    inset: 78px 0 auto 0 !important;
    max-height: calc(100vh - 78px) !important;
  }
}

@media (max-width: 390px) {
  .header-inner-v27 .brand img,
  .site-header .brand img,
  .brand img {
    width: 126px !important;
    max-height: 52px !important;
  }

  .header-inner,
  .header-inner-v27,
  .site-header .header-inner {
    min-height: 76px !important;
  }

  body {
    padding-top: 76px !important;
  }

  .main-nav {
    inset: 76px 0 auto 0 !important;
    max-height: calc(100vh - 76px) !important;
  }
}


/* ==== V2.20 NOSOTROS TEXT-ONLY ACCORDION ==== */
.about-hero--clean{
  min-height:54vh;
  background:
    radial-gradient(circle at top left, rgba(49,215,244,.14), transparent 30%),
    linear-gradient(180deg, rgba(4,16,28,.92), rgba(2,9,16,.98));
  border-bottom:1px solid var(--line);
}
.about-hero--clean::before{
  background:radial-gradient(circle at 1px 1px, rgba(49,215,244,.12) 1px, transparent 1.2px);
  background-size:10px 10px;
  opacity:.65;
}
.about-hero--clean::after{display:none!important}
.about-text-only{display:grid;gap:22px}
.about-intro-card,
.about-accordion-item{
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(7,22,35,.84), rgba(3,11,19,.95));
  box-shadow:var(--shadow);
}
.about-intro-card{padding:26px}
.about-intro-card h2{margin:.2rem 0 1rem;font-size:clamp(1.7rem, 3vw, 2.6rem)}
.about-intro-card p{color:var(--muted);line-height:1.8;margin:0}
.about-accordion{display:grid;gap:16px}
.about-accordion-item{overflow:hidden}
.about-accordion-item summary{
  list-style:none;
  cursor:pointer;
  display:grid;
  grid-template-columns:58px 1fr auto;
  gap:16px;
  align-items:center;
  padding:18px 22px;
}
.about-accordion-item summary::-webkit-details-marker{display:none}
.about-summary-icon{
  width:58px;height:58px;border-radius:16px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(49,215,244,.18), rgba(21,139,243,.14));
  border:1px solid rgba(49,215,244,.28);
  color:var(--cyan);font-size:1.28rem;
}
.about-summary-text{display:grid;gap:4px}
.about-summary-text strong{font-size:clamp(1.08rem, 2vw, 1.4rem);color:var(--text)}
.about-summary-text small{color:var(--soft);font-size:.92rem}
.about-accordion-item summary::after{content:'+';font-size:1.5rem;font-weight:900;color:var(--cyan)}
.about-accordion-item[open] summary::after{content:'−'}
.about-accordion-body{padding:0 22px 22px;color:var(--muted);line-height:1.78}
.about-accordion-body p:first-child{margin-top:0}
.about-list--clean{padding-left:1.2rem;margin:0;display:grid;gap:12px}
@media(max-width:860px){
  .about-hero--clean{min-height:auto}
  .about-hero--clean .hero-content{padding-block:52px}
  .about-accordion-item summary{grid-template-columns:48px 1fr auto;padding:16px}
  .about-summary-icon{width:48px;height:48px;border-radius:14px}
  .about-accordion-body{padding:0 16px 18px}
  .about-intro-card{padding:20px}
}

/* ==== V2.21 HOME ESTATICA + NOSOTROS SIN FOTOS ==== */
/* Home: ya no usa video Vimeo. Usa una sola imagen estática de portada. */
.hero-video.hero-static {
  height: auto !important;
  min-height: clamp(520px, 66vh, 680px) !important;
  max-height: none !important;
  background: #02060a url("../assets/img/poster-portada-video.jpg") center center / cover no-repeat !important;
  border-bottom: 1px solid rgba(49, 215, 244, .18) !important;
  box-shadow: none !important;
}
.hero-video.hero-static::before,
.hero-video.hero-static .hero-video-bg {
  display: none !important;
}
.hero-video.hero-static .hero-video-overlay {
  z-index: 2 !important;
  background:
    linear-gradient(90deg, rgba(2, 6, 10, .66) 0%, rgba(2, 6, 10, .42) 45%, rgba(2, 6, 10, .16) 100%),
    linear-gradient(0deg, rgba(2, 6, 10, .48) 0%, rgba(2, 6, 10, .10) 58%, rgba(2, 6, 10, .08) 100%),
    radial-gradient(circle at 1px 1px, rgba(49, 215, 244, .13) 1px, transparent 1.25px) !important;
  background-size: auto, auto, 7px 7px !important;
}
.hero-video.hero-static .hero-video-content {
  min-height: clamp(520px, 66vh, 680px) !important;
  height: auto !important;
  justify-content: center !important;
  padding-top: 86px !important;
  padding-bottom: 64px !important;
}
.hero-video.hero-static .hero-video-content h1 {
  max-width: 900px !important;
  font-size: clamp(2.15rem, 5.1vw, 4.65rem) !important;
  line-height: 1.02 !important;
}
.hero-video.hero-static .hero-video-content p {
  max-width: 720px !important;
}

/* Nosotros: mantener la página corporativa sin fotos internas, solo acordeones con iconos. */
.about-hero--clean {
  background:
    radial-gradient(circle at top left, rgba(49,215,244,.14), transparent 30%),
    linear-gradient(180deg, rgba(4,16,28,.92), rgba(2,9,16,.98)) !important;
}
.about-hero--clean::before {
  background: radial-gradient(circle at 1px 1px, rgba(49,215,244,.12) 1px, transparent 1.2px) !important;
  background-size: 10px 10px !important;
  opacity: .65 !important;
}
.about-hero--clean::after { display: none !important; }

@media (max-width: 768px) {
  .hero-video.hero-static {
    min-height: auto !important;
  }
  .hero-video.hero-static .hero-video-content {
    min-height: auto !important;
    padding-top: 54px !important;
    padding-bottom: 52px !important;
  }
  .hero-video.hero-static .hero-video-content h1 {
    font-size: clamp(1.95rem, 10vw, 3.15rem) !important;
    line-height: 1.05 !important;
  }
}

/* ==== V2.22 HERO IMAGES SIN PUNTOS - CHATGPT ==== */
.hero,
.about-hero,
.policy-hero {
  background: #02060a !important;
}

.hero::before,
.about-hero--clean::before,
.policy-hero::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: var(--hero-image) !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  filter: saturate(1.08) contrast(1.03) brightness(1.03) !important;
  opacity: 1 !important;
  transform: none !important;
  z-index: 0 !important;
}

.hero::after,
.about-hero--clean::after,
.policy-hero::after {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(90deg, rgba(2,6,10,.72) 0%, rgba(2,6,10,.46) 42%, rgba(2,6,10,.18) 100%),
    linear-gradient(0deg, rgba(2,6,10,.52) 0%, rgba(2,6,10,.12) 55%, rgba(2,6,10,.08) 100%) !important;
  background-size: auto !important;
  background-position: 0 0 !important;
  pointer-events: none !important;
}

.hero-content,
.about-hero--clean .hero-content,
.policy-hero .hero-content {
  position: relative !important;
  z-index: 2 !important;
}

.hero-video.hero-static .hero-video-overlay {
  background:
    linear-gradient(90deg, rgba(2,6,10,.70) 0%, rgba(2,6,10,.44) 45%, rgba(2,6,10,.18) 100%),
    linear-gradient(0deg, rgba(2,6,10,.50) 0%, rgba(2,6,10,.10) 58%, rgba(2,6,10,.08) 100%) !important;
  background-size: auto !important;
  background-position: 0 0 !important;
}

.hero-fade-layer { display: none !important; }
