/* ============================================================
   productos.css — CSS exclusivo para productos.php
   Agregar ANTES del cierre de </head> en la página,
   o pegar al final de csense.css
   ============================================================ */

/* ===== HERO — fondo paper claro ===== */
.prd-hero {
  background: var(--paper);          /* #FAF8F4 */
  padding: 48px 0 44px;
  border-bottom: 1px solid var(--line, #E5E3DF);
}

/* Breadcrumb en magenta */
.prd-crumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  gap: 0;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--magenta, #C2185B);
}
.prd-crumb li + li::before {
  content: " / ";
  white-space: pre;
  color: var(--magenta, #C2185B);
}
.prd-crumb a {
  color: var(--magenta, #C2185B);
  text-decoration: none;
}
.prd-crumb a:hover { text-decoration: underline; }

/* H1 del hero */
.prd-title {
  font-family: var(--serif, 'Fraunces', serif);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--navy, #1A2A6B);
  margin-bottom: 14px;
}
.prd-title em {
  font-style: italic;
  color: var(--cyan, #1E9FD6);
}

/* Bajada del hero */
.prd-lead {
  font-size: 17px;
  color: var(--slate, #596078);
  max-width: 480px;
  margin: 0;
  line-height: 1.6;
}


/* ===== LISTA DE PRODUCTOS ===== */
.prd-list { padding: 0; }

.prd-item {
  padding: 64px 0;
  border-bottom: 1px solid var(--line, #E5E3DF);
}
.prd-item:last-child { border-bottom: none; }


/* ===== HEADER DEL PRODUCTO: número + ícono en fila ===== */
.prd-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

/* Número grande, serif, italic, cyan */
.prd-num {
  font-family: var(--serif, 'Fraunces', serif);
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--cyan, #1E9FD6);
  line-height: 1;
  flex-shrink: 0;
}

/* Ícono pequeño sin borde de caja */
.prd-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prd-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy, #1A2A6B);
}


/* ===== COLUMNA IZQUIERDA: título y textos ===== */
.prd-item h2 {
  font-family: var(--serif, 'Fraunces', serif);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: var(--navy, #1A2A6B);
  line-height: 1.15;
  margin-bottom: 14px;
}
.prd-item h2 em {
  font-style: italic;
  color: var(--cyan, #1E9FD6);
}

.prd-item p {
  font-size: 15.5px;
  color: var(--slate, #596078);
  line-height: 1.72;
  margin-bottom: 12px;
}

/* Párrafo highlight: bold italic, sin borde lateral */
.prd-hl {
  font-style: italic;
  font-weight: 700;
  color: var(--ink, #1A1A2E) !important;
  font-size: 15.5px !important;
  margin-top: 4px !important;
  line-height: 1.55 !important;
}


/* ===== SIDEBAR "INCLUYE" ===== */
.prd-side {
  background: #fff;
  border: 1.5px solid var(--line, #E5E3DF);
  border-radius: 16px;
  padding: 26px 24px;
  /* Sticky en desktop */
  position: sticky;
  top: 90px;
}

.prd-side-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mute, #9097B0);
  margin-bottom: 16px;
}

.prd-side-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.prd-side-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink, #1A1A2E);
  line-height: 1.45;
  padding: 10px 0;
  border-bottom: 1px solid var(--line, #E5E3DF);
}
.prd-side-list li:last-child { border-bottom: none; }
.prd-side-list li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Botón navy pill ancho completo dentro del sidebar */
.btn-prd-side {
  display: block;
  width: 100%;
  background: var(--navy, #1A2A6B);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  text-align: center;
  padding: 13px 20px;
  border-radius: 30px;
  transition: background .18s, transform .15s;
}
.btn-prd-side:hover {
  background: #0f1a50;
  color: #fff;
  transform: translateY(-1px);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .prd-item { padding: 48px 0; }
  .prd-side {
    position: static;
    margin-top: 8px;
  }
}

@media (max-width: 575px) {
  .prd-hero { padding: 36px 0 32px; }
  .prd-title { font-size: 2rem; }
  .prd-item { padding: 36px 0; }
  .prd-num { font-size: 1.6rem; }
}
