/* --- Fuentes --- */
.page-header-blog h1,
.destination-article h2,
.sidebar-card .card-header h5,
.symptom-card-title,
.rule-card-title {
  font-family: "Montserrat", sans-serif;
}

/* --- Encabezado de Página (Hero) --- */
.page-header-blog {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://placehold.co/1920x1080/00BCD4/FFFFFF?text=Montañas+de+Huaraz");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* --- Contenido Principal (Artículo) --- */
.destination-article h2 {
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 10px;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.destination-article h2 i {
  color: #00bcd4;
}

.destination-article h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #00bcd4;
  bottom: 0;
  left: 0;
}

/* --- Diseño Único: Tarjetas de Síntomas --- */
.symptom-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.symptom-card:hover {
  transform: translateY(-5px);
}

.symptom-card-icon {
  font-size: 3rem;
  color: #dc3545;
  /* Rojo peligro */
}

.symptom-card-title {
  font-weight: 700;
  color: #34495e;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* --- Diseño Único: "Reglas de Oro" (Prevención) --- */
.rule-card {
  background-color: #f8f9fa;
  border: 2px solid #198754;
  /* Verde "Do" */
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.rule-card-title {
  font-weight: 700;
  color: #198754;
  font-size: 1.5rem;
}

.rule-card-title i {
  font-size: 2rem;
}

/* --- Diseño Único: Acordeón de Remedios --- */
.remedy-accordion .accordion-item {
  border-radius: 0.75rem !important;
  border: 1px solid #e0e0e0;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.remedy-accordion .accordion-button {
  border-radius: 0.75rem !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #34495e;
}

.remedy-accordion .accordion-button:not(.collapsed) {
  background-color: #e6f9fa;
  color: #00bcd4;
  box-shadow: none;
}

.remedy-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 188, 212, 0.25);
}

.remedy-accordion .accordion-button i {
  font-size: 1.5rem;
  color: #00bcd4;
}

/* --- *** SOLUCIÓN AL SIDEBAR *** --- */
.sidebar-sticky-wrapper {
  position: sticky;
  top: 80px;
  z-index: 1019;
}

.sidebar-card {
  border: 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sidebar-card .card-header {
  background-color: #00bcd4;
  color: white;
  border-radius: 0.5rem 0.5rem 0 0 !important;
  border: 0;
}

.sidebar-card .card-header.bg-danger {
  background-color: #dc3545 !important;
}

.sidebar-card .card-header h5 {
  font-weight: 700;
  margin-bottom: 0;
}

.sidebar-card .card-header i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.list-styled-check {
  list-style: none;
  padding-left: 0;
}

.list-styled-check li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.list-styled-check li::before {
  content: "\F26E";
  /* check */
  font-family: "bootstrap-icons" !important;
  font-size: 1.1rem;
  color: #198754;
  position: absolute;
  left: 0;
  top: 0;
}

.list-styled-danger {
  list-style: none;
  padding-left: 0;
}

.list-styled-danger li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.list-styled-danger li::before {
  content: "\F633";
  /* x-circle */
  font-family: "bootstrap-icons" !important;
  font-size: 1.1rem;
  color: #dc3545;
  position: absolute;
  left: 0;
  top: 0;
}

.text-danger-emphasis {
  color: #dc3545;
  font-weight: 700;
}

.text-success-emphasis {
  color: #198754;
  font-weight: 700;
}
