:root {
  --p099-primary: #234ac0;
  --p099-primary-dark: #193b9f;
  --p099-ink: #07152f;
  --p099-muted: #5d6b82;
  --p099-bg: #f4f7fb;
  --p099-card: #ffffff;
  --p099-line: #dfe7f2;
  --p099-radius-lg: 28px;
  --p099-radius-md: 18px;
  --p099-shadow: 0 22px 60px rgba(7, 21, 47, .12);
}

* { box-sizing: border-box; }

.product-page {
  background: var(--p099-bg);
  color: var(--p099-ink);
  overflow: hidden;
}

.product-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.product-breadcrumb {
  padding: 22px 0 0;
  font-size: .92rem;
  color: var(--p099-muted);
}
.product-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  opacity: .55;
}
.product-breadcrumb a { color: inherit; text-decoration: none; }
.product-breadcrumb a:hover { color: var(--p099-primary); }

.product-hero {
  position: relative;
  padding: 30px 0 80px;
  background: linear-gradient(
      120deg,
      #101733 0%,
      #101733 35%,
      #17479d 72%,
      #234ac0 100%
  );
}

.product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 56px;
  align-items: flex-start;
}

.product-eyebrow {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(35,74,192,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--p099-primary-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding-top: 10px;
}

.product-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: ;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.045em;
  color:#fff;
}

.product-hero__lead {
  max-width: 680px;
  margin: 28px 0;
  color: rgba(255,255,255,.90);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.75;
}

.product-hero__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.product-hero__points li {
  position: relative;
  padding-left: 27px;
  font-weight: 700;
  line-height: 1.45;
  color: #e5e5e5;
}
.product-hero__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--p099-primary);
  font-weight: 900;
}

.product-hero__visual {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(35,74,192,.12);
  border-radius: var(--p099-radius-lg);
  background: #07152f;
  box-shadow: var(--p099-shadow);
}
.product-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-form {
  padding: 28px;
  border: 1px solid rgba(7,21,47,.08);
  border-radius: var(--p099-radius-lg);
  background: rgba(255,255,255,.96);
  box-shadow: var(--p099-shadow);
}
.product-form h2 {
  margin: 0 0 8px;
  font-size: 1.55rem;
  letter-spacing: -.025em;
}
.product-form > p {
  margin: 0 0 20px;
  color: var(--p099-muted);
  line-height: 1.55;
}
.product-form__grid { display: grid; gap: 13px; }
.product-field label {
  display: block;
  margin-bottom: 6px;
  font-size: .86rem;
  font-weight: 800;
}
.product-field input,
.product-field select,
.product-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #ccd7e7;
  border-radius: 12px;
  background: #fff;
  color: var(--p099-ink);
  font: inherit;
}
.product-field input:focus,
.product-field select:focus,
.product-field textarea:focus {
  border-color: var(--p099-primary);
  outline: 3px solid rgba(35,74,192,.12);
}
.product-form__privacy {
  margin: 4px 0 0;
  color: var(--p099-muted);
  font-size: .76rem;
  line-height: 1.45;
}
.product-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: flex-start;
  justify-content: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 12px;
  background: var(--p099-primary);
  color: #fff;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.product-btn:hover {
  transform: translateY(-2px);
  background: var(--p099-primary-dark);
  box-shadow: 0 12px 28px rgba(35,74,192,.24);
}
.product-btn--full { width: 100%; }
.product-btn--ghost {
  border: 1px solid var(--p099-line);
  background: #fff;
  color: var(--p099-ink);
}

.product-section { padding: 50px 0; }
.product-section--white { background: #fff; }
.product-section--dark { background: var(--p099-ink); color: #fff; }
.product-section__head {
  max-width: 760px;
  margin-bottom: 36px;
}
.product-section__head h2 {
  margin: 0 0 14px;
  font-size: clamp(2.3rem, 3.4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.product-section__head p {
  margin: 0;
  color: var(--p099-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}
.product-section--dark .product-section__head p { color: #bfcae0; }

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.product-card {
  padding: 26px;
  border: 1px solid var(--p099-line);
  border-radius: var(--p099-radius-md);
  background: var(--p099-card);
  box-shadow: 0 12px 34px rgba(7,21,47,.06);
}
.product-card__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #eaf1ff;
  color: var(--p099-primary);
  font-weight: 900;
}
.product-card h3 {
  margin:0 0 9px;
  font-size:1.25rem;
  font-weight:800;
}
.product-card p { margin: 0; color: var(--p099-muted); line-height: 1.65; }
.product-card a { color: inherit; text-decoration: none; }
.product-card a:hover h3 { color: var(--p099-primary); }

.product-copy-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.product-copy-grid h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight:900;
  line-height:1.08;
  letter-spacing:-.03em;
}
.product-copy-grid__body p {
  margin: 0 0 18px;
  color: var(--p099-muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.product-spec {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background: rgba(255,255,255,.055);
}
.product-spec strong { display: block; margin-bottom: 6px; }
.product-spec span { color: #bfcae0; line-height: 1.5; }

.product-related {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.product-related__item {
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--p099-line);
  border-radius: 16px;
  background: #fff;
  color: var(--p099-ink);
  text-decoration: none;
}
.product-related__item span { display: block; color: var(--p099-primary); font-size: .8rem; font-weight: 850; text-transform: uppercase; }
.product-related__item strong { display: block; margin-top: 10px; font-size: 1.08rem; line-height: 1.35; }
.product-related__item:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(7,21,47,.09); }

.product-faq { display: grid; gap: 12px; }
.product-faq details {
  padding: 20px 22px;
  border: 1px solid var(--p099-line);
  border-radius: 14px;
  background: #fff;
}
.product-faq summary { cursor: pointer; font-weight: 850; }
.product-faq p { color: var(--p099-muted); line-height: 1.7; }

.product-final-cta {
  margin: 0 auto;
  padding: 48px;
  border-radius: var(--p099-radius-lg);
  background: linear-gradient(135deg, #234ac0, #193b9f);
  color: #fff;
  text-align: center;
  box-shadow: var(--p099-shadow);
}
.product-final-cta h2 { margin: 0 0 12px; font-size: clamp(2rem, 3vw, 3rem); }
.product-final-cta p { max-width: 720px; margin: 0 auto 24px; color: #dce8ff; line-height: 1.7; }
.product-final-cta .product-btn { background: #fff; color: #193b9f; }

.products-index-hero {
  padding:70px 0 60px;
  background:linear-gradient(
      120deg,
      #101733 0%,
      #101733 35%,
      #17479d 72%,
      #234ac0 100%
  );
}
.products-index-hero h1 {
  max-width:900px;
  margin:0;
  font-size:clamp(3.0rem,5vw,5.0rem);
  font-weight:900;
  line-height:1.05;
  letter-spacing:-.045em;
  color:#fff;
}
.products-index-hero p { max-width: 760px; margin: 24px 0 0; color:#ffffff; font-size: 1.18rem; line-height: 1.7; ;}
.product-family { margin-top: 54px; }
.product-family__title { margin-bottom: 20px; font-size: 1.65rem; }
.product-card--link { transition: transform .18s ease, box-shadow .18s ease; }
.product-card--link:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(7,21,47,.1); }

@media (max-width: 960px) {
  .product-hero__grid,
  .product-copy-grid { grid-template-columns: 1fr; }
  .product-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .product-container { width: min(100% - 26px, 1180px); }
  .product-hero { padding: 24px 0 54px; }
  .product-hero__points,
  .product-card-grid,
  .product-specs,
  .product-related { grid-template-columns: 1fr; }
  .product-form { padding: 21px; }
  .product-section { padding: 62px 0; }
  .product-final-cta { padding: 34px 22px; }
}


/* ==========================================================
   FORMULARIO 099 — MISMO BLOQUE DE LA HOME
   ========================================================== */
.formulario-099.form-card-099 {
  width: 100%;
  padding: 28px;
  border: 1px solid rgba(7,21,47,.08);
  border-radius: var(--p099-radius-lg);
  background: rgba(255,255,255,.96);
  box-shadow: var(--p099-shadow);
  margin-top: auto;
}

.form-card-099 h2 {
  margin: 0 0 8px;
  font-size: 1.65rem;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.form-card-099 .azul { color: var(--p099-primary); }
.form-card-099 .negro { color: var(--p099-ink); }

.form-card-099 .te-llamamos {
  margin: 0 0 4px;
}

.form-card-099 .te-llamamos a {
  color: var(--p099-primary);
  text-decoration: underline;
  text-decoration-color: var(--p099-primary);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  font-weight: 800;
}

.form-card-099 > p:not(.atencion) {
  margin: 4px 0 18px;
  color: var(--p099-muted);
  line-height: 1.55;
}

.f-099 {
  display: grid;
  gap: 13px;
}

.f-099 input[type="text"],
.f-099 input[type="tel"] {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #ccd7e7;
  border-radius: 12px;
  background: #fff;
  color: var(--p099-ink);
  font: inherit;
}

.f-099 input:focus {
  border-color: var(--p099-primary);
  outline: 3px solid rgba(35,74,192,.12);
}

.hp-099 {
  position: absolute !important;
  left: -10000px !important;
}

.toggle-099 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 0;
  padding: 4px;
  border: 1px solid #ccd7e7;
  border-radius: 12px;
}

.toggle-099 legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.toggle-099 input {
  position: absolute;
  opacity: 0;
}

.toggle-099 label {
  padding: 9px;
  border-radius: 9px;
  text-align: center;
  font-weight: 800;
  cursor: pointer;
}

.toggle-099 input:checked + label {
  background: var(--p099-primary);
  color: #fff;
}

.checkbox-099 {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--p099-muted);
  font-size: .8rem;
}

.checkbox-099 input {
  margin-top: 4px;
}

.checkbox-099 a {
  color: var(--p099-primary);
  font-weight: 700;
}

.f-099 button {
  min-height: 50px;
  border: 0;
  border-radius: 12px;
  background: var(--p099-primary);
  color: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.f-099 button:hover {
  transform: translateY(-2px);
  background: var(--p099-primary-dark);
  box-shadow: 0 12px 28px rgba(35,74,192,.24);
}

.atencion {
  margin: 13px 0 0;
  color: var(--p099-primary);
  text-align: center;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* ==========================================================
   ICONOGRAFÍA DE PRODUCTOS
   ========================================================== */
.product-icon,
.product-card__icon svg,
.product-related__icon svg,
.product-compatible__icon svg,
.product-section__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card__icon {
  color: var(--p099-primary);
}

.product-card__icon--large {
  width: 64px;
  height: 64px;
  border-radius: 17px;
}

.product-card__icon--large svg {
  width: 34px;
  height: 34px;
}

.product-related__item {
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-related__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #eaf1ff;
  color: var(--p099-primary);
}

.product-compatible {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

.product-compatible__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--p099-line);
  border-radius: 16px;
  background: #fff;
  color: var(--p099-ink);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.product-compatible__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(7,21,47,.09);
}

.product-compatible__icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #eaf1ff;
  color: var(--p099-primary);
}

.product-compatible__item strong {
  display: block;
  line-height: 1.35;
}

.product-section__title-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.product-section__icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: #eaf1ff;
  color: var(--p099-primary);
}

.product-eyebrow svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-hero__title-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  color: var(--p099-primary);
  box-shadow: 0 10px 30px rgba(35,74,192,.12);
  border: 1px solid rgba(35,74,192,.12);
}

.product-hero__title-icon svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 960px) {
  .product-compatible { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 620px) {
  .product-compatible { grid-template-columns: 1fr; }
}
