/* CONTENEDOR GENERAL */
#section-sitios {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* NAV PILLS */
#section-sitios .nav-pills .nav-link {
  background: #fff;
  border: none;
  color: #1a1a1a;
  border-radius: 8px;
  font-weight: 600;
  transition: .2s;
}

#section-sitios .nav-pills .nav-link.active {
  background: #112f4b !important;
  color: #fff !important;
  border-top-right-radius:5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;

}

#section-sitios .nav-pills .nav-link:hover {
  background: #dce6f5;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

/* TARJETAS */
.platform-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: .2s ease;
}

.platform-card:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  transform: translateY(-2px);
}

/* ICONOS DORADOS TIPO FCA */
.platform-card i {
  color: #c9a341;
  font-size: 1.8rem;
}

/* TEXTO */
.platform-card a {
  color: #111;
  font-weight: 600;
  text-decoration: none;
}

.platform-card a:hover {
  text-decoration: underline;
}

/* ESPACIADO ENTRE TARJETAS */
.platform-grid {
  margin-top: 20px;
}

.borde-inferior{
  border-bottom: 1px solid #cdcdcd;
}


.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
  font-weight: 400 !important;
}

@media (min-width: 1200px) {
  .fs-3 {
      font-size: 1.3rem !important;
  }
}