/* ============================================================
   producto.css — Estilos compartidos por las páginas de producto
   ============================================================ */

/* ── HERO PRODUCTO ── */
.product-hero {
  display: flex;
  width: 100%;
  min-height: 680px;
  height: auto;
  background: var(--color-dark);
  overflow: hidden;
}

.product-hero__img {
  flex: 0 0 680px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-hero__probe {
  max-height: 80%;
  max-width: 85%;
  object-fit: contain;
}

.product-hero__info {
  flex: 1;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
}

.product-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--border-radius-sm);
  background: var(--color-accent);
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  align-self: flex-start;
}

.product-hero__info h1 {
  font-size: 44px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin: 0;
}

.product-hero__tagline {
  font-size: var(--font-size-md);
  color: #B8D4B0;
  line-height: 1.6;
  max-width: clamp(560px, 45vw, 600px);  /* antes 420px */
}

.product-hero__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-hero__feature {
  font-size: var(--font-size-base);
  color: white;
  line-height: 1.5;
}

.product-hero__price {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-accent);
  margin-top: 4px;
}

.product-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.product-hero__footnote {
  font-size: 12px;
  color: #5A7A5A;
  margin-top: 4px;
}

/* ── QUICK SPECS BAR ── */
.quick-specs {
  height: 108px;
  background: var(--color-light);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-specs__inner {
  max-width: var(--container-max);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-padding);
}

.quick-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  flex: 1;
}

.quick-spec strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-spec span {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text);
}

.quick-spec__icon {
  color: var(--color-primary);
}

.quick-spec-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* ── TECNOLOGÍA PRODUCTO (bloques alternados) ── */
.product-tech {
  width: 100%;
}

/* reutiliza .tech-block de home.css */

/* ── ESPECIFICACIONES TÉCNICAS ── */
.specs-section {
  background: var(--color-light);
  padding: 80px var(--container-padding);
}

.specs-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.specs-section__header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.specs-section__header h2 {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--color-text);
}

.specs-section__header p {
  font-size: 17px;
  color: var(--color-text-muted);
}

.specs-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.specs-group {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--color-primary);
  display: flex;
}

.specs-group__cat {
  background: var(--color-dark);
  width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  border-right: 1px solid #2A4A2A;
}

.specs-group__cat span {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.specs-group__rows {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.specs-row {
  display: flex;
  border-bottom: 1px solid var(--color-border);
}
.specs-row:last-child { border-bottom: none; }
.specs-row:nth-child(even) { background: var(--color-white); }
.specs-row:nth-child(odd) { background: var(--color-light); }

.specs-cell {
  flex: 1;
  padding: 11px 16px;
  font-size: var(--font-size-base);
  color: var(--color-text);
  line-height: 1.4;
}

.specs-cell--label {
  font-weight: 500;
  color: var(--color-text-muted);
  flex: 0 0 340px;
  border-right: 1px solid var(--color-border);
}

.specs-cell--ok {
  color: var(--color-ok);
  font-weight: 600;
}

/* ── APLICACIONES CLÍNICAS ── */
.clinical-apps {
  background: white;
  padding: 80px var(--container-padding);
}

.clinical-apps__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.clinical-apps h2 {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--color-text);
}

.clinical-apps > .clinical-apps__inner > p {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
}

.chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

/* ── QUÉ INCLUYE ── */
.includes-sec {
  background: var(--color-light);
  padding: 80px var(--container-padding);
}

.includes-sec__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.includes-sec__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.include-card {
  background: white;
  border-radius: var(--border-radius-md);
  padding: 24px;
  border: 1px solid var(--color-border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.include-card__icon {
  color: var(--color-primary);
  background: var(--color-light);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.include-card h3 {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-text);
}

.include-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ── CTA PRODUCTO ── */
.product-cta {
  background: var(--color-primary);
  padding: 80px var(--container-padding);
  text-align: center;
}

.product-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.product-cta h2 {
  font-size: 36px;
  font-weight: 800;
  color: white;
}

.product-cta p {
  font-size: var(--font-size-md);
  color: #B8D4B0;
}

.product-cta__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ── INTERFAZ CLÍNICA (soft/bat section) ── */
.soft-sec {
  display: flex;
  gap: 80px;
  padding: 80px var(--container-padding);
  background: white;
  max-width: 100%;
}

.soft-sec__left,
.soft-sec__right {
  flex: 1;
}

.soft-sec__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.soft-sec__left h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
}

.soft-sec__left p {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.soft-sec__right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-light);
  border-radius: var(--border-radius-md);
  padding: 16px 20px;
}

.feature-card__icon {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-card p {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.5;
}

/* ── BAT / ENTORNO SECCIÓN ── */
.bat-sec {
  display: flex;
  gap: 80px;
  padding: 80px var(--container-padding);
  background: var(--color-dark);
}

.bat-sec__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bat-sec__col h2 {
  font-size: 36px;
  font-weight: 800;
  color: white;
  line-height: 1.15;
}

.bat-sec__col p {
  font-size: var(--font-size-md);
  color: #B8D4B0;
  line-height: 1.7;
}

.bat-big-num {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.bat-big-num__value {
  font-size: 72px;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}

.bat-big-num__label {
  font-size: 15px;
  color: #5A7A5A;
  line-height: 1.5;
  padding-bottom: 8px;
}

.bat-footnote {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-accent);
}

.ip-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: var(--border-radius-md);
  background: #1A3A1A;
  border: 2px solid var(--color-accent);
}

.ip-badge span {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-accent);
}
