/* ── HERO ── */
.pub-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a08 50%, #0a0a14 100%);
  border-bottom: 2px solid #e8342a;
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}

.pub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(232,52,42,0.03) 40px, rgba(232,52,42,0.03) 41px
  );
}

.pub-hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.pub-hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e8342a;
  margin-bottom: 16px;
}

.pub-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: #f0ede6;
  line-height: 1.05;
  margin-bottom: 16px;
}

.pub-hero-title span { color: #e8342a; }

.pub-hero-desc {
  font-size: 15px;
  color: #7a7570;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 28px;
}

.pub-btn {
  display: inline-block;
  background: #e8342a;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s;
}

.pub-btn:hover { background: #c42820; }

/* ── CONTAINER ── */
.pub-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
}

/* ── SECTION ── */
.pub-section { margin-bottom: 56px; }

.pub-titulo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #f0ede6;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pub-titulo::before {
  content: '';
  display: block;
  width: 4px;
  height: 28px;
  background: #e8342a;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── REASONS ── */
.pub-reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pub-reason {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 6px;
  padding: 24px;
  transition: border-color 0.15s;
}

.pub-reason:hover { border-color: #e8342a; }

.pub-reason-icon {
  color: #e8342a;
  margin-bottom: 14px;
}

.pub-reason-titulo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #f0ede6;
  margin-bottom: 8px;
}

.pub-reason-texto {
  font-size: 13px;
  color: #7a7570;
  line-height: 1.7;
}

/* ── OPCIONES ── */
.pub-opciones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pub-opcion {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.15s;
}

.pub-opcion:hover { border-color: #3a3a3a; }

.pub-opcion-destacada {
  border-color: #e8342a;
  background: #150808;
}

.pub-opcion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pub-opcion-titulo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #f0ede6;
}

.pub-opcion-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #1e1e1e;
  color: #5a5550;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.pub-opcion-tag-red {
  background: #e8342a;
  color: #fff;
}

.pub-opcion-desc {
  font-size: 13px;
  color: #7a7570;
  line-height: 1.7;
}

.pub-opcion-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pub-opcion-lista li {
  font-size: 13px;
  color: #5a5550;
  padding-left: 16px;
  position: relative;
}

.pub-opcion-lista li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #e8342a;
  font-size: 12px;
}

.pub-opcion-btn {
  display: block;
  text-align: center;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #f0ede6;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s;
}

.pub-opcion-btn:hover {
  border-color: #e8342a;
  color: #e8342a;
}

.pub-opcion-btn-red {
  background: #e8342a;
  border-color: #e8342a;
  color: #fff;
}

.pub-opcion-btn-red:hover {
  background: #c42820;
  color: #fff;
}

/* ── CTA ── */
.pub-cta {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  padding: 48px;
  text-align: center;
}

.pub-cta-titulo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #f0ede6;
  margin-bottom: 12px;
}

.pub-cta-texto {
  font-size: 14px;
  color: #7a7570;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ═══════════════════════════════════
   MOBILE — hasta 768px
═══════════════════════════════════ */
@media (max-width: 768px) {

  .pub-hero { padding: 40px 16px; }
  .pub-hero-title { font-size: 36px; }
  .pub-hero-desc { font-size: 14px; }

  .pub-container { padding: 28px 16px; }

  .pub-reasons {
    grid-template-columns: 1fr;
  }

  .pub-opciones {
    grid-template-columns: 1fr;
  }

  .pub-cta {
    padding: 28px 16px;
  }

  .pub-cta-titulo { font-size: 28px; }
}

/* ═══════════════════════════════════
   TABLET — entre 769px y 1024px
═══════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {

  .pub-hero-title { font-size: 44px; }

  .pub-opciones {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}
