/* =========================================================
   DOCUMENTACION OFICIAL
========================================================= */
.oic-docs-page {
  background: #f7f6f8;
  padding-top: 24px;
}

.oic-docs-logo {
  width: clamp(110px, 12vw, 170px);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.08));
}

.oic-docs-title {
  color: #b01271;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
}

.oic-docs-info-row {
  margin-top: 22px;
}

.oic-docs-info-card {
  background: transparent;
  border-radius: 22px;
  padding: 10px 18px;
}

.oic-docs-info-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 4px solid #b01271;
  color: #b01271;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(176, 18, 113, 0.12);
}

.oic-docs-info-text {
  color: #6f6a72;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 330px;
  margin: 0 auto;
}

.oic-docs-tabs {
  gap: 18px;
}

.oic-docs-tabs .nav-link {
  min-width: 220px;
  border-radius: 22px 22px 0 0;
  background: #cfcbd1;
  color: #5f5a61;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 16px 24px;
  border: none;
  transition: all .25s ease;
}

.oic-docs-tabs .nav-link.active {
  background: #b01271;
  color: #fff;
  box-shadow: 0 10px 24px rgba(176, 18, 113, 0.18);
}

.oic-docs-panel {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.06);
  border: 1px solid #ece7ee;
}

.oic-docs-section-title {
  color: #b01271;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

.oic-docs-search {
  position: relative;
  width: 100%;
  max-width: 310px;
}

.oic-docs-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8b8690;
  font-size: 1rem;
}

.oic-docs-search .form-control {
  border-radius: 999px;
  padding-left: 42px;
  border: 2px solid #cfc7d1;
  min-height: 46px;
  box-shadow: none;
}

.oic-docs-search .form-control:focus {
  border-color: #b01271;
  box-shadow: 0 0 0 0.15rem rgba(176, 18, 113, 0.12);
}

.oic-docs-table {
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.oic-docs-table thead th {
  background: #f7f1f6;
  color: #b01271;
  font-weight: 800;
  font-size: 0.95rem;
  border-top: 2px solid #d9d0dc;
  border-bottom: 2px solid #d9d0dc;
  vertical-align: middle;
}

.oic-docs-table th,
.oic-docs-table td {
  border-color: #ddd6e0;
  vertical-align: middle;
}

.oic-docs-table tbody td {
  font-size: 0.96rem;
  color: #3f3942;
}

.oic-docs-table tbody tr:hover {
  background: #fcf8fb;
}

.oic-docs-view-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5e5ef;
  color: #b01271;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .25s ease;
  border: 1px solid #ebcddd;
}

.oic-docs-view-btn:hover {
  background: #b01271;
  color: #fff;
  transform: scale(1.06);
}

@media (max-width: 991.98px) {
  .oic-docs-tabs .nav-link {
    min-width: 180px;
    font-size: 1rem;
    padding: 14px 18px;
  }

  .oic-docs-panel {
    padding: 22px;
  }
}

@media (max-width: 767.98px) {
  .oic-docs-title {
    font-size: 2.3rem;
  }

  .oic-docs-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .oic-docs-tabs .nav-link {
    min-width: 100%;
    border-radius: 18px;
  }

  .oic-docs-panel {
    border-radius: 18px;
    padding: 18px;
  }

  .oic-docs-table thead th,
  .oic-docs-table tbody td {
    font-size: 0.9rem;
  }
}

.btn-oic-primary {
  background-color: #b01271;
  border-color: #b01271;
  color: #fff !important;
  transition: all .25s ease;
}

.btn-oic-primary:hover {
  background-color: #8d0e5a;
  border-color: #8d0e5a;
  color: #fff;
}