/* Nego Destinos styles 0.7.2 */
:root{
  --nego-bg:#f7fbff;
  --nego-card:#ffffff;
  --nego-text:#1f2a44;
  --nego-muted:#5b6b82;
  --nego-accent:#2f5f86; /* mismo tono del botón Contacto */
  --nego-chip:#eaf2ff;
  --nego-border:rgba(31,42,68,.08);
  --shadow:0 6px 20px rgba(17, 38, 55, 0.08);
  --radius:16px;
}

.nego-container{
  width:min(1100px, 92%);
  margin:40px auto;
}
.nego-page-title{
  font-size: clamp(28px, 4vw, 40px);
  margin: 8px 0 24px;
  color: var(--nego-text);
  letter-spacing:.2px;
}
.nego-h{ font-size: clamp(26px, 3.5vw, 34px); color: var(--nego-text); margin:8px 0 18px; }
.nego-lead{ font-size:18px; color:var(--nego-muted); margin-bottom:10px; }
.nego-chip{ display:inline-block; background:var(--nego-chip); color:var(--nego-accent); padding:6px 10px; border-radius:999px; font-weight:600; margin:8px 0 18px; }

.nego-grid{ display:grid; gap:22px; }
.nego-col-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.nego-col-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.nego-col-4{ grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 960px){
  .nego-col-3, .nego-col-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .nego-col-2, .nego-col-3, .nego-col-4 { grid-template-columns: 1fr; }
}

.nego-card{
  background: var(--nego-card);
  border:1px solid var(--nego-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none !important;
  color: var(--nego-text);
  display:block;
  transition: transform .18s ease, box-shadow .18s ease;
}
.nego-card:hover{ transform: translateY(-3px); box-shadow: 0 10px 26px rgba(17,38,55,.14); }
.nego-card-img{ aspect-ratio: 16/10; overflow:hidden; background:#f3f6fb; }
.nego-card-img img{ width:100%; height:100%; object-fit: cover; display:block; }
.nego-card-body{ padding:16px; position:relative; }
.nego-badge{
  position:absolute; top: -12px; left: 12px;
  background: var(--nego-accent); color:#fff;
  padding:6px 10px; border-radius:12px; font-size:12px; font-weight:700;
  box-shadow: var(--shadow);
}
.nego-card-title{ font-size:18px; margin:0 0 6px; }
.nego-card-text{ margin:0; font-size:14px; color:var(--nego-muted); }
.nego-card-meta{ margin-top:10px; display:flex; justify-content:space-between; color:var(--nego-muted); font-weight:600; }
.nego-price{ color:#0a7a2f; }

/* Hero */
.nego-hero{ width:100%; max-height: 340px; overflow:hidden; border-radius: 20px; margin: 8px auto 18px; }
.nego-hero img{ width:100%; height:100%; object-fit: cover; display:block; }

/* Sections */
.nego-section{ margin: 18px 0 26px; background: #fff; padding: 0; }
.nego-section h2{ margin: 8px 0 14px; color: var(--nego-text); }

/* Programa CTA */
.nego-cta{ margin: 24px 0 8px; }
.nego-btn{ display:inline-block; padding:12px 18px; background:var(--nego-accent); color:#fff; border-radius:12px; text-decoration:none; font-weight:700; box-shadow: var(--shadow); }
.nego-btn:hover{ filter:brightness(.95); }

/* Mensajes */
.nego-error, .nego-info{ background:#fff6f6; border:1px solid #ffd9d9; color:#8a2a2a; padding:12px 14px; border-radius:12px; }
.nego-info{ background:#f7fbff; border-color:#d9e7ff; color:#2f5f86; }
