:root {
  --informacion-bg: #e9ddc5;
  --informacion-card: #f7f1e6;
  --informacion-text: #241c15;
  --informacion-title: #5f4838;
  --informacion-reading-surface: transparent;
}

.informacion-page {
  min-height: 100dvh;
  background:
    radial-gradient(circle at 100% 0%, rgba(168, 134, 110, 0.2) 0%, transparent 48%),
    radial-gradient(circle at 0% 100%, rgba(168, 134, 110, 0.15) 0%, transparent 40%),
    var(--informacion-bg);
  padding: clamp(14px, 2vw, 28px);
  padding-bottom: clamp(22px, 4vw, 42px);
}

.informacion-shell {
  width: min(100%, 980px);
  margin: 0 auto;
}

.informacion-card {
  background: var(--informacion-card);
  border-radius: 24px;
  padding: clamp(18px, 3vw, 36px);
  box-shadow: 0 16px 34px rgba(111, 83, 60, 0.2);
  border: 1px solid rgba(95, 72, 56, 0.14);
  overflow: visible;
}

.informacion-header h1 {
  margin: 0;
  color: var(--informacion-title);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 300;
  line-height: 1;
}

.informacion-content {
  margin-top: clamp(14px, 2vh, 20px);
  background: var(--informacion-reading-surface);
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  max-width: none;
}

.informacion-content p {
  margin: 0;
  color: var(--informacion-text);
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  line-height: 1.68;
  letter-spacing: 0.01em;
}

.informacion-content p + p {
  margin-top: clamp(10px, 1.5vh, 14px);
}

.informacion-footer {
  margin-top: clamp(18px, 2.4vh, 28px);
  padding-top: clamp(14px, 2vh, 18px);
  border-top: 1px solid rgba(95, 72, 56, 0.18);
}

.informacion-actions {
  justify-content: center;
}

@media (max-width: 767.98px) {
  .informacion-card {
    border-radius: 18px;
    padding: 16px;
  }

  .informacion-content {
    max-width: 100%;
  }

  .informacion-content p {
    line-height: 1.62;
    letter-spacing: 0;
  }
}
