* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  background: #ffffff;
  color: #111827;
}

/* HEADER */
.nova-nos-header {
  width: 100%;
  background: #ffffff;
  position: relative;
  z-index: 99999;
  box-shadow: 0 4px 18px rgba(0, 31, 84, 0.08);
}

.nova-nos-header-inner {
  width: 100%;
  max-width: 1180px;
  margin: auto;
  padding: 18px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nova-nos-logo img {
  width: 210px;
  display: block;
}

.nova-nos-menu {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nova-nos-menu a {
  text-decoration: none;
  color: #101010;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 0;
}

.nova-nos-menu a.active,
.nova-nos-menu a:hover {
  color: #0b52c0;
}

.nova-nos-menu-toggle {
  display: none;
}

/* MENU MOBILE */
@media (max-width: 950px) {
  .nova-nos-header {
    background: #061b33 !important;
  }

  .nova-nos-header-inner {
    max-width: 100%;
    padding: 14px;
    background: #061b33;
    display: grid;
    grid-template-columns: 1fr 48px;
    align-items: center;
    gap: 12px;
  }

  .nova-nos-logo img {
    width: 230px;
    filter: brightness(0) invert(1);
  }

  .nova-nos-menu-toggle {
    display: flex;
    width: 48px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 3px solid rgba(255,255,255,.75);
    border-radius: 9px;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    cursor: pointer;
  }

  .nova-nos-menu {
    grid-column: 1 / -1;
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
    background: #061b33;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: max-height .4s ease, opacity .3s ease;
  }

  .nova-nos-menu.open-menu {
    max-height: 900px;
    opacity: 1;
    visibility: visible;
  }

  .nova-nos-menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
    color: #fff !important;
    font-size: 15px;
    font-weight: 800;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .nova-nos-menu a.active {
    background: #0b5c93;
  }
}

/* HERO */
.nova-productos-hero {
  position: relative;
  height: 370px;
  overflow: hidden;
  background: #002b5c;
}

.nova-productos-hero-slider,
.nova-productos-hero-slide {
  position: absolute;
  inset: 0;
}

.nova-productos-hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 5s ease;
}

.nova-productos-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.nova-productos-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,42,92,.96), rgba(0,62,132,.80), rgba(0,0,0,.25));
}

.nova-productos-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  height: 100%;
  margin: auto;
  padding: 0 25px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nova-productos-hero-content h1 {
  font-size: 58px;
  margin: 0 0 16px;
  font-weight: 800;
}

.nova-productos-hero-content p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  margin: 0;
}

/* PAGE */
.nova-productos-page {
  max-width: 1500px;
  margin: auto;
  padding: 55px 35px 85px;
}

.nova-productos-intro {
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.nova-productos-intro span,
.nova-productos-cta span {
  color: #0b52c0;
  font-size: 14px;
  font-weight: 800;
}

.nova-productos-intro h2,
.nova-productos-cta h2 {
  color: #002b5c;
  font-size: 40px;
  line-height: 1.15;
  margin: 12px 0 18px;
  font-weight: 800;
}

.nova-productos-intro p,
.nova-productos-cta p {
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
}

/* BENEFICIOS */
.nova-productos-beneficios {
  max-width: 1200px;
  margin: 0 auto 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.nova-productos-beneficios article {
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 20px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0,31,84,.08);
  transition: .3s ease;
}

.nova-productos-beneficios article:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0,31,84,.14);
}

.nova-productos-beneficios i {
  color: #0b52c0;
  font-size: 34px;
}

.nova-productos-beneficios h3 {
  color: #002b5c;
  font-size: 19px;
  margin: 14px 0 8px;
  font-weight: 800;
}

.nova-productos-beneficios p {
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* LAYOUT */
.nova-productos-layout {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 35px;
  align-items: start;
}

.nova-productos-sidebar {
  position: sticky;
  top: 20px;
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 16px 38px rgba(0,31,84,.09);
}

.nova-productos-sidebar h3 {
  color: #002b5c;
  font-size: 21px;
  margin: 0 0 18px;
  font-weight: 800;
}

.nova-productos-sidebar button {
  width: 100%;
  border: 1px solid #dfe8f5;
  background: #ffffff;
  color: #002b5c;
  padding: 13px 14px;
  text-align: left;
  border-radius: 12px;
  font-weight: 800;
  margin-bottom: 10px;
  cursor: pointer;
  transition: .3s ease;
}

.nova-productos-sidebar button.active,
.nova-productos-sidebar button:hover {
  background: #0b52c0;
  color: #ffffff;
  border-color: #0b52c0;
}

/* DESTACADO */
.nova-producto-destacado {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  background: #f8fbff;
  border: 1px solid #e8edf5;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 44px rgba(0,31,84,.10);
  margin-bottom: 38px;
}

.nova-producto-destacado > div:first-child {
  width: 100%;
}

.nova-producto-destacado-img {
  overflow: hidden;
  border-radius: 20px;
  min-height: 410px;
}

.nova-producto-destacado-img img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  display: block;
  transition: .5s ease;
}

.nova-producto-destacado:hover img {
  transform: scale(1.04);
}

.nova-producto-destacado-info span {
  display: inline-block;
  color: #0b52c0;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.nova-producto-destacado-info h2 {
  color: #002b5c;
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 800;
}

.nova-producto-destacado-info p {
  color: #333333;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 18px;
}

.nova-producto-destacado-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.nova-producto-destacado-info li {
  display: flex;
  gap: 10px;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.nova-producto-destacado-info li::before {
  content: "✓";
  color: #0b52c0;
  font-weight: 900;
}

.nova-producto-destacado-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nova-producto-destacado-actions button,
.nova-producto-destacado-actions a {
  border: none;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: .3s ease;
}

.nova-producto-destacado-actions button {
  background: #0b52c0;
  color: #ffffff;
}

.nova-producto-destacado-actions a {
  background: #18a84a;
  color: #ffffff;
}

.nova-producto-destacado-actions button:hover,
.nova-producto-destacado-actions a:hover {
  transform: translateY(-3px);
}

/* GALERÍA MÚLTIPLE */
.nova-product-gallery {
  width: 100%;
}

.nova-product-gallery-main {
  width: 100%;
  height: 410px;
  border-radius: 20px;
  overflow: hidden;
  background: #eef3f8;
  border: 1px solid #dfe8f5;
}

.nova-product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .25s ease, transform .45s ease;
}

.nova-product-gallery-main:hover img {
  transform: scale(1.04);
}

.nova-product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.nova-product-gallery-thumbs button {
  height: 86px;
  border: 3px solid transparent;
  border-radius: 13px;
  padding: 0;
  overflow: hidden;
  background: #eef3f8;
  cursor: pointer;
  transition: .25s ease;
}

.nova-product-gallery-thumbs button.active,
.nova-product-gallery-thumbs button:hover {
  border-color: #0b52c0;
  transform: translateY(-2px);
}

.nova-product-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* VARIANTES INTERNAS */
.nova-product-variants,
.nova-modal-variants {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}

.nova-product-variants button,
.nova-modal-variants button {
  border: 1px solid #d8e3f1;
  background: #ffffff;
  color: #002b5c;
  padding: 11px 17px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: .3s ease;
}

.nova-product-variants button.active,
.nova-product-variants button:hover,
.nova-modal-variants button.active,
.nova-modal-variants button:hover {
  background: #0b52c0;
  color: #ffffff;
  border-color: #0b52c0;
  box-shadow: 0 8px 20px rgba(11,82,192,.22);
}

/* OPCIONES / COLORES / MODELOS */
.nova-product-options,
.nova-modal-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 20px;
}

.nova-product-options span,
.nova-modal-options span {
  background: #eef6ff;
  color: #0b52c0;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

/* TOOLBAR */
.nova-productos-toolbar {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.nova-productos-toolbar h3 {
  color: #002b5c;
  font-size: 26px;
  margin: 0;
  font-weight: 800;
}

.nova-productos-search {
  width: 310px;
  height: 48px;
  border: 1px solid #dfe8f5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  background: #ffffff;
}

.nova-productos-search i {
  color: #0b52c0;
}

.nova-productos-search input {
  border: none;
  outline: none;
  width: 100%;
  font-family: inherit;
  font-size: 14px;
}

/* GRID */
.nova-productos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.nova-product-card {
  min-height: 500px;
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,31,84,.08);
  transition: .35s ease;
}

.nova-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 46px rgba(0,31,84,.16);
}

.nova-product-card-img {
  height: 260px;
  overflow: hidden;
  cursor: pointer;
}

.nova-product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease;
  display: block;
}

.nova-product-card:hover img {
  transform: scale(1.07);
}

.nova-product-card-body {
  padding: 24px;
}

.nova-product-card-body span {
  color: #0b52c0;
  font-size: 12px;
  font-weight: 800;
}

.nova-product-card-body h3 {
  color: #002b5c;
  font-size: 21px;
  line-height: 1.25;
  margin: 8px 0 10px;
  font-weight: 800;
}

.nova-product-card-body p {
  color: #444444;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 16px;
}

.nova-product-card-actions {
  display: flex;
  gap: 10px;
}

.nova-product-card-actions button,
.nova-product-card-actions a {
  flex: 1;
  border: none;
  text-decoration: none;
  text-align: center;
  padding: 12px 12px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: .3s ease;
}

.nova-product-card-actions button {
  background: #eef6ff;
  color: #0b52c0;
}

.nova-product-card-actions a {
  background: #18a84a;
  color: #ffffff;
}

.nova-product-card-actions button:hover,
.nova-product-card-actions a:hover {
  transform: translateY(-2px);
}

.nova-product-card.hide {
  display: none;
}

/* TARJETAS DE VARIANTES EN CATÁLOGO */
.nova-product-card.is-variant {
  border: 1px solid #cfe0f5;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.nova-variant-label {
  display: inline-block;
  background: #0b52c0;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 800;
  padding: 7px 11px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.nova-card-models {
  color: #0b52c0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  margin: -2px 0 10px;
}

.nova-card-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
}

.nova-card-options span {
  background: #eef6ff;
  color: #0b52c0;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 9px;
  border-radius: 999px;
}

/* CTA */
.nova-productos-cta {
  margin-top: 70px;
  background: linear-gradient(135deg, #002b5c, #0b52c0);
  border-radius: 26px;
  padding: 55px 45px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 22px 50px rgba(0,31,84,.20);
}

.nova-productos-cta span {
  color: #a9d1ff;
}

.nova-productos-cta h2 {
  color: #ffffff;
  max-width: 850px;
  margin: 12px auto 18px;
}

.nova-productos-cta p {
  color: #eaf3ff;
  max-width: 760px;
  margin: 0 auto 28px;
}

.nova-productos-cta a {
  display: inline-block;
  background: #ffffff;
  color: #0b52c0;
  text-decoration: none;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: 12px;
  transition: .3s ease;
}

.nova-productos-cta a:hover {
  transform: translateY(-3px);
}

/* MODAL */
.nova-product-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}

.nova-product-modal.is-open {
  display: block;
}

.nova-product-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 16, 38, .78);
  backdrop-filter: blur(6px);
}

.nova-product-modal-card {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 36px));
  max-height: calc(100vh - 50px);
  overflow-y: auto;
  margin: 25px auto;
  background: #ffffff;
  border-radius: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 30px 80px rgba(0,0,0,.30);
}

.nova-product-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #061b33;
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  cursor: pointer;
  z-index: 4;
}

.nova-product-modal-img {
  min-height: 580px;
  background: #eef3f8;
}

.nova-product-modal-img img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  display: block;
  transition: opacity .25s ease, transform .45s ease;
}

.nova-product-modal-info {
  padding: 48px 42px;
}

.nova-product-modal-info span {
  color: #0b52c0;
  font-size: 13px;
  font-weight: 800;
}

.nova-product-modal-info h2 {
  color: #002b5c;
  font-size: 34px;
  line-height: 1.15;
  margin: 10px 0 16px;
  font-weight: 800;
}

.nova-product-modal-info p {
  color: #333333;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.nova-product-modal-info ul {
  padding: 0;
  list-style: none;
  margin: 0 0 24px;
}

.nova-product-modal-info li {
  font-size: 14px;
  line-height: 1.65;
  color: #1f2937;
  margin-bottom: 9px;
  display: flex;
  gap: 10px;
}

.nova-product-modal-info li::before {
  content: "✓";
  color: #0b52c0;
  font-weight: 900;
}

.nova-modal-selects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 22px;
}

.nova-modal-selects label {
  color: #002b5c;
  font-size: 13px;
  font-weight: 800;
}

.nova-modal-selects select {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  border: 1px solid #d8e3f1;
  border-radius: 12px;
  padding: 0 12px;
  font-family: inherit;
  outline: none;
}

.nova-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nova-modal-actions a {
  text-decoration: none;
  padding: 15px 22px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 800;
  transition: .3s ease;
}

#novaModalWhatsapp {
  background: #18a84a;
  color: #ffffff;
}

.nova-modal-contact {
  background: #0b52c0;
  color: #ffffff;
}

.nova-modal-actions a:hover {
  transform: translateY(-3px);
}

/* MODAL MINI GALERÍA */
.nova-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 22px;
  width: 100%;
}

.nova-modal-thumbs button {
  height: 78px;
  border: 3px solid transparent;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #eef3f8;
  cursor: pointer;
  transition: .25s ease;
}

.nova-modal-thumbs button.active,
.nova-modal-thumbs button:hover {
  border-color: #0b52c0;
  transform: translateY(-2px);
}

.nova-modal-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (min-width: 1600px) {
  .nova-productos-page {
    max-width: 1650px;
    padding-left: 45px;
    padding-right: 45px;
  }

  .nova-productos-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1300px) {
  .nova-productos-page {
    max-width: 1280px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .nova-productos-layout {
    grid-template-columns: 260px 1fr;
    gap: 28px;
  }

  .nova-product-card-img {
    height: 230px;
  }
}

@media (max-width: 1100px) {
  .nova-productos-layout {
    grid-template-columns: 1fr;
  }

  .nova-productos-sidebar {
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .nova-productos-sidebar h3 {
    grid-column: 1 / -1;
    width: 100%;
  }

  .nova-productos-sidebar button {
    width: 100%;
    margin-bottom: 0;
  }

  .nova-productos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nova-productos-beneficios {
    grid-template-columns: repeat(2, 1fr);
  }

  .nova-producto-destacado {
    grid-template-columns: 1fr;
  }

  .nova-product-modal-card {
    grid-template-columns: 1fr;
  }

  .nova-product-modal-img,
  .nova-product-modal-img img {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .nova-productos-hero {
    height: 310px;
  }

  .nova-productos-hero-content h1 {
    font-size: 38px;
  }

  .nova-productos-hero-content p {
    font-size: 15px;
  }

  .nova-productos-page {
    padding: 40px 16px 60px;
  }

  .nova-productos-intro h2,
  .nova-productos-cta h2 {
    font-size: 30px;
  }

  .nova-productos-beneficios {
    grid-template-columns: 1fr;
  }

  .nova-productos-sidebar {
    grid-template-columns: 1fr;
  }

  .nova-productos-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .nova-productos-search {
    width: 100%;
  }

  .nova-productos-grid {
    grid-template-columns: 1fr;
  }

  .nova-product-card {
    min-height: auto;
  }

  .nova-product-card-img {
    height: 230px;
  }

  .nova-product-gallery-main {
    height: 270px;
  }

  .nova-product-gallery-thumbs button {
    height: 65px;
  }

  .nova-producto-destacado-img,
  .nova-producto-destacado-img img {
    min-height: 260px;
  }

  .nova-product-modal-info {
    padding: 34px 24px;
  }

  .nova-modal-selects {
    grid-template-columns: 1fr;
  }

  .nova-modal-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .nova-modal-thumbs button {
    height: 85px;
  }

  .nova-product-variants button,
  .nova-modal-variants button {
    width: 100%;
  }

  .nova-productos-cta {
    padding: 38px 22px;
  }
}