/*!*************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./templates/routes/main/documentation/documentation.css ***!
  \*************************************************************************************************************************************/
.doc-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 1rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.doc-card {
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  border-radius: 0.75rem;
  overflow: hidden;
}

.doc-card-header {
  padding: 0.85rem 1.25rem;
  background: rgba(10, 25, 70, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.doc-card-header h5,
.doc-card-header h6 {
  font-weight: 700;
  color: #0f2456;
  margin: 0;
}

.doc-card-body {
  padding: 1.25rem;
  font-size: 0.9rem;
  color: #2d3748;
}

.doc-fase-badge {
  display: inline-block;
  background: #2c7be5;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

.doc-badge-tag {
  display: inline-block;
  background: rgba(44, 123, 229, 0.12);
  color: #2c7be5;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.1rem 0.5rem;
  border-radius: 50px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.responsive-image {
  max-width: 80%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .responsive-image {
    max-width: 100%;
  }

  .doc-wrapper {
    padding: 0.75rem 0.75rem 4rem;
  }
}

