/* ==============================
   ESTRUCTURA GENERAL
============================== */
.salud-page {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}

/* ==============================
   CONTENIDO PRINCIPAL
============================== */
.salud-content {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* ==============================
   BANNER
============================== */
.salud-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

/* ==============================
   TEXTO Y SECCIONES
============================== */
.salud-text p {
  text-align: justify;
  color: #333;
  line-height: 1.6;
}

.salud-text h5 {
  color: #c16713;
  font-weight: 700;
}

/* ==============================
   TABLA DE LÍNEAS DE ACCIÓN
============================== */
.salud-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 15px;
}

.salud-table th,
.salud-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
  vertical-align: middle;
}

.salud-table thead {
  background-color: #f8e1cc;
}

.salud-table th {
  color: #c16713;
  font-weight: 700;
}

/* ==============================
   IMAGEN DE ACTIVIDADES
============================== */
.salud-actividades-img {
  max-width: 80%;
  border-radius: 10px;
}

/* ==============================
   LISTAS
============================== */
.salud-lista {
  list-style: none;
  padding-left: 0;
  color: #333;
  line-height: 1.8;
}

.salud-lista li::before {
  content: "• ";
  color: #c16713;
  font-weight: bold;
}

/* ==============================
   COLOR TEMÁTICO
============================== */
.text-salud {
  color: #c16713;
}

/* ==============================
   QR CENTRADO
============================== */
.salud-qr-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.deporte-qr-card {
  background-color: #f5f8ff;
  /* azul muy claro de fondo */
  border: 1px solid #c5d4f5;
  /* borde suave */
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.salud-qr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(49, 85, 160, 0.25);
}

/* ==============================
   QR - SALUD Y BIENESTAR
============================== */
.salud-qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.salud-qr-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.salud-qr-card {
  background-color: #fff8f3;
  /* fondo suave tipo crema */
  border: 1px solid #f2d3b2;
  /* borde color durazno claro */
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: fit-content;
}

.salud-qr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(193, 103, 19, 0.25);
}

.salud-qr-img {
  width: 180px;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.text-salud {
  color: #c16713 !important;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 768px) {
  .salud-banner img {
    max-height: 300px;
  }

  .salud-table th,
  .salud-table td {
    font-size: 14px;
    padding: 8px;
  }

  .salud-qr-section {
    flex-direction: column;
    gap: 20px;
  }

  .salud-qr-img {
    width: 160px;
  }
}