.documento-section {
  padding: 80px 0;
  min-height: 70vh;
}

.documento-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.documento-title {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 15px rgba(36, 210, 254, 0.4);
  margin-bottom: 12px;
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
}

.documento-date {
  color: var(--text-muted);
  font-size: 14px;
}

.documento-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(36, 210, 254, 0.3);
  border-radius: var(--radius-small);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  transition: all var(--transition);
}

.documento-close:hover {
  background: rgba(36, 210, 254, 0.1);
  border-color: var(--accent);
  box-shadow: var(--glow);
}

.documento-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(36, 210, 254, 0.2);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--glow);
}

.documento-section-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(36, 210, 254, 0.1);
}

.documento-section-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.documento-section-item h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.documento-section-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-top: 20px;
  margin-bottom: 12px;
}

.documento-section-item p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.documento-section-item ul {
  margin-left: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.documento-section-item li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .documento-section {
    padding: 48px 0;
  }

  .documento-content {
    padding: 32px 24px;
  }

  .documento-close {
    position: static;
    display: block;
    margin: 24px auto 0;
    width: fit-content;
  }

  .documento-header {
    margin-bottom: 32px;
  }
}

