/* ============================================================
   POLÍTICAS DE VIAJE — Estilos
   ============================================================ */
/* --- Reset & base --- */
*,
*::before,
*::after
{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Hero / Header --- */
.hero
{
  background: #1a2744;
  color: #fff;
  padding: 3.5rem 2rem 3rem;
  text-align: center;
}

.hero-label
{
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7fa8d4;
  margin-bottom: 0.75rem;
}

.hero-title
{
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: normal;
  line-height: 1.25;
  color: #f0ede6;
}

/* --- Page container --- */
.page
{
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}

/* --- Section --- */
.section
{
  margin-bottom: 3rem;
}

.section-header
{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #d6d2c8;
}

.section-icon
{
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-blue
{
  background: #dceeff;
}

.icon-teal
{
  background: #d4f3e8;
}

.icon-amber
{
  background: #fdebd0;
}

.icon-purple
{
  background: #ece9fc;
}

.section-title
{
  font-size: 1.15rem;
  font-weight: normal;
  letter-spacing: 0.01em;
  color: #1a2744;
}

/* --- Card --- */
.card
{
  background: #ffffff;
  border: 1px solid #e2dfd8;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.card-intro
{
  font-size: 13px;
  color: #666;
  margin-bottom: 0.75rem;
}

/* --- Metric grid --- */
.metric-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.metric
{
  background: #eef2f8;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.metric-label
{
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: #5a6a85;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-value
{
  font-size: 1.5rem;
  font-weight: bold;
}

.metric-value.blue
{
  color: #185FA5;
}

/* --- Two columns --- */
.two-col
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.dim-card
{
  margin-bottom: 0;
}

.dim-label
{
  font-size: 12px;
  color: #888;
  margin-bottom: 0.3rem;
}

.dim-value
{
  font-size: 1.15rem;
  font-weight: bold;
  color: #1a2744;
}

/* --- Info rows --- */
.info-row
{
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.55rem 0;
  border-bottom: 1px solid #f0ede8;
}

.info-row:last-child
{
  border-bottom: none;
  padding-bottom: 0;
}

.info-row p
{
  font-size: 14px;
  line-height: 1.6;
  color: #2a2a2a;
}

.info-row strong
{
  color: #1a2744;
}

/* --- Dots --- */
.dot
{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.dot-blue
{
  background: #378ADD;
}

.dot-teal
{
  background: #1D9E75;
}

.dot-amber
{
  background: #EF9F27;
}

.dot-purple
{
  background: #7F77DD;
}

/* --- Alerts --- */
.alert
{
  border-radius: 0 8px 8px 0;
  padding: 0.85rem 1.1rem;
  font-size: 13.5px;
  line-height: 1.6;
  margin-top: 0.75rem;
}

.alert-red
{
  border-left: 3px solid #E24B4A;
  background: #fff0f0;
  color: #7a1f1f;
}

.alert-amber
{
  border-left: 3px solid #EF9F27;
  background: #fff8ec;
  color: #6b4100;
}

.alert strong
{
  font-weight: bold;
}

/* --- Badges --- */
.badge-group
{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge
{
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 20px;
}

.badge-teal
{
  background: #d4f3e8;
  color: #085041;
}

/* --- Subsection label --- */
.subsection-label
{
  font-family: 'Courier New', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888;
  margin: 1.25rem 0 0.6rem;
}

/* --- Footer --- */
.footer
{
  text-align: center;
  padding: 2rem 1.25rem;
  font-size: 13px;
  color: #999;
  border-top: 1px solid #e2dfd8;
  background: #edeae4;
}

/* --- Responsive --- */
@media (max-width: 600px)
{
  .hero
  {
    padding: 2.5rem 1.25rem 2rem;
  }

  .metric-grid
  {
    grid-template-columns: 1fr 1fr;
  }

  .page
  {
    padding: 1.5rem 1rem 2rem;
  }
}