/* ── HERO PEQUEÑO ── */
.detail-hero {
  position: relative;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 60%, #5C5C5C 100%);
  padding: 120px 24px 48px;
  overflow: hidden;
}
.detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.detail-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .15s;
  margin-bottom: 4px;
}
.detail-back-link:hover { color: var(--verde); }
.detail-back-link svg {
  width: 15px; height: 15px;
  stroke: currentColor;
  flex-shrink: 0;
}
.detail-hero-eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--verde);
}
.detail-hero h1 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--blanco);
  line-height: 1.2;
  margin: 0;
}

/* ── CONTENIDO ── */
.detail-page {
  background: var(--color-bg-soft);
  padding: 40px 24px 64px;
}

/* ── PANEL (equivale al canvas centrado) ── */
.detail-panel {
  max-width: 820px;
  margin: 0 auto;
  background: var(--blanco);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.10);
}

/* ── SLIDER ── */
.detail-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f2f2f2;
  overflow: hidden;
}
.detail-slider-track {
  display: flex;
  height: 100%;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.detail-slide {
  min-width: 100%;
  height: 100%;
}
.detail-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.detail-slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  border: none; border-radius: 50%;
  width: 40px; height: 40px;
  font-size: 24px; line-height: 1;
  color: var(--blanco);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 2;
}
.detail-slider-arrow:hover { background: rgba(0,0,0,.75); }
.detail-slider-prev { left: 14px; }
.detail-slider-next { right: 14px; }

.detail-slider-dots {
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
  z-index: 2;
}
.detail-slider-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.detail-slider-dots span.active {
  background: var(--verde);
  transform: scale(1.2);
}

/* ── CUERPO ── */
.detail-body {
  padding: 32px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.detail-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--verde);
}
.detail-name {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--negro);
  line-height: 1.2;
}
.detail-desc {
  font-size: 15px;
  color: var(--gris-oscuro);
  line-height: 1.8;
}
.detail-desc p { margin-bottom: .9em; }
.detail-desc p:last-child { margin-bottom: 0; }
.detail-desc ul,
.detail-desc ol { margin: .5em 0 .9em 1.5em; }
.detail-desc li { margin-bottom: .3em; }
.detail-desc strong { font-weight: 900; color: var(--negro); }
.detail-desc h2,
.detail-desc h3 { font-weight: 900; color: var(--negro); margin: 1.2em 0 .4em; }

.detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  align-self: flex-start;
  padding: 13px 30px;
  background: var(--verde);
  color: var(--blanco);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: background .2s, transform .15s;
  margin-top: 8px;
}
.detail-btn:hover { background: #6a8f00; transform: translateY(-2px); }
.detail-btn svg {
  width: 17px; height: 17px;
  fill: var(--blanco); flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .detail-hero { padding: 100px 20px 40px; }
  .detail-page { padding: 28px 16px 48px; }
  .detail-body { padding: 24px 24px 32px; }
  .detail-btn { align-self: stretch; }
}
