.docs-page {
  --docs-ink: #173640;
  --docs-teal: #087d76;
  --docs-teal-soft: #e6f5f1;
  --docs-coral: #d95f45;
  --docs-warm: #fff7ec;
  --docs-green: #147a4f;
  background: #fbfcfa;
}

.docs-page .site-header {
  position: relative;
}

.docs-page .site-header .container {
  justify-content: flex-start;
}

.docs-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 58px;
  background-color: #eef8f5;
  border-bottom: 5px solid var(--docs-coral);
}

.docs-hero-content {
  position: relative;
  z-index: 1;
}

.docs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--docs-teal);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.docs-eyebrow svg {
  color: var(--docs-coral);
  font-size: 17px;
}

.docs-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--docs-ink);
  font-size: 48px;
  line-height: 1.12;
}

.docs-hero-lead {
  max-width: 820px;
  color: #3f5961;
  font-size: 18px;
  line-height: 1.75;
}

.docs-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-top: 36px;
  border-top: 1px solid rgba(23, 54, 64, 0.17);
  border-bottom: 1px solid rgba(23, 54, 64, 0.17);
}

.docs-proof-item {
  display: flex;
  align-items: baseline;
  gap: 15px;
  min-width: 0;
  padding: 24px 28px;
  border-right: 1px solid rgba(23, 54, 64, 0.17);
}

.docs-proof-item:first-child {
  padding-left: 0;
}

.docs-proof-item:last-child {
  border-right: 0;
}

.docs-proof-item strong {
  flex: 0 0 auto;
  color: var(--docs-coral);
  font-size: 32px;
  line-height: 1;
}

.docs-proof-item span {
  max-width: 200px;
  color: var(--docs-ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.docs-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 920px;
  margin-top: 20px;
  border-bottom: 1px solid rgba(23, 54, 64, 0.17);
}

.docs-benefit {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 20px 24px;
  border-right: 1px solid rgba(23, 54, 64, 0.17);
}

.docs-benefit:first-child {
  padding-left: 0;
}

.docs-benefit:last-child {
  border-right: 0;
}

.docs-benefit > svg {
  flex: 0 0 auto;
  color: var(--docs-coral);
  font-size: 20px;
}

.docs-benefit div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.docs-benefit strong {
  color: var(--docs-ink);
  font-size: 14px;
}

.docs-benefit span {
  color: #60747a;
  font-size: 12px;
  line-height: 1.45;
}

.docs-selector,
.docs-process {
  padding: 76px 0 84px;
}

.docs-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 34px;
}

.docs-section-index {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--docs-coral);
  border-radius: 50%;
  color: var(--docs-coral);
  font-size: 12px;
  font-weight: 700;
}

.docs-section-heading h2 {
  margin-bottom: 5px;
  color: var(--docs-ink);
  font-size: 30px;
}

.docs-section-heading p {
  color: #62767d;
  font-size: 15px;
  line-height: 1.6;
}

.docs-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.docs-packages-fieldset {
  border: 0;
}

.docs-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.docs-package-option {
  position: relative;
  min-width: 0;
}

.docs-package-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.docs-package-card {
  display: flex;
  min-height: 390px;
  height: 100%;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border: 1px solid #d8e1df;
  border-radius: 8px;
  box-shadow: 0 7px 24px rgba(23, 54, 64, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.docs-package-select {
  display: flex;
  flex: 1;
  flex-direction: column;
  cursor: pointer;
}

.docs-package-option:hover .docs-package-card {
  border-color: #91b9b3;
  box-shadow: 0 15px 32px rgba(23, 54, 64, 0.11);
  transform: translateY(-2px);
}

.docs-package-radio:focus-visible + .docs-package-card {
  outline: 3px solid rgba(0, 114, 210, 0.3);
  outline-offset: 3px;
}

.docs-package-radio:checked + .docs-package-card {
  border: 2px solid var(--docs-teal);
  padding: 27px;
  background: #fcfffe;
  box-shadow: 0 18px 38px rgba(8, 125, 118, 0.15);
}

.docs-package-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}

.docs-package-type {
  color: var(--docs-teal);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.docs-selection-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  border: 1px solid #b9c8c5;
  border-radius: 50%;
  color: transparent;
  font-size: 11px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.docs-package-radio:checked + .docs-package-card .docs-selection-mark {
  border-color: var(--docs-teal);
  background: var(--docs-teal);
  color: #fff;
}

.docs-package-title {
  color: var(--docs-ink);
  font-size: 28px;
  line-height: 1.25;
}

.docs-package-count {
  margin-top: 5px;
  color: #73868b;
  font-size: 13px;
}

.docs-package-rule {
  width: 44px;
  height: 3px;
  margin: 22px 0;
  background: var(--docs-coral);
}

.docs-package-items {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 11px;
}

.docs-package-items > span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #3e555c;
  font-size: 14px;
  line-height: 1.5;
}

.docs-package-items svg {
  flex: 0 0 13px;
  margin-top: 4px;
  color: var(--docs-coral);
  font-size: 12px;
}

.docs-package-revisions {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #e3e9e7;
  color: var(--docs-ink);
  font-size: 13px;
  font-weight: 700;
}

.docs-package-revisions svg {
  color: var(--docs-teal);
}

.docs-package-action {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #dce5e2;
}

.docs-package-action[hidden] {
  display: none;
}

.docs-package-action-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--docs-green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.docs-package-action-label svg {
  font-size: 15px;
}

.docs-package-action > small {
  color: #557164;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.docs-extra-document {
  padding-bottom: 3px;
}

.docs-extra-document label {
  display: block;
  margin-bottom: 9px;
  color: var(--docs-ink);
  font-size: 14px;
  font-weight: 700;
}

.docs-extra-document input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #bdcbc8;
  border-radius: 6px;
  color: var(--docs-ink);
  background: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.docs-extra-document input:focus {
  border-color: var(--docs-teal);
  box-shadow: 0 0 0 3px rgba(8, 125, 118, 0.12);
}

.docs-extra-document > span {
  display: block;
  margin-top: 8px;
  color: #718288;
  font-size: 12px;
  line-height: 1.5;
}

.docs-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  padding: 0 23px;
  border-radius: 7px;
  color: #fff;
  background: var(--docs-green);
  box-shadow: 0 8px 18px rgba(20, 122, 79, 0.2);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.docs-whatsapp-button:hover {
  color: #fff;
  background: #0e633e;
  text-decoration: none;
  transform: translateY(-1px);
}

.docs-whatsapp-button svg {
  font-size: 21px;
}

.docs-process {
  background-color: var(--docs-warm);
  border-top: 1px solid #f0dfca;
}

.docs-process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid #dfcdb8;
  border-bottom: 1px solid #dfcdb8;
}

.docs-process-list li {
  display: flex;
  gap: 17px;
  padding: 30px 28px;
  border-right: 1px solid #dfcdb8;
}

.docs-process-list li:first-child {
  padding-left: 0;
}

.docs-process-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.docs-process-number {
  color: var(--docs-coral);
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.docs-process-list h3 {
  margin-bottom: 9px;
  color: var(--docs-ink);
  font-size: 16px;
}

.docs-process-list p {
  color: #5d6967;
  font-size: 13px;
  line-height: 1.7;
}

.docs-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--docs-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.docs-guarantee svg {
  flex: 0 0 auto;
  color: var(--docs-teal);
  font-size: 18px;
}

.docs-page .site-footer {
  margin-top: 0;
}

@media (max-width: 800px) {
  .docs-hero {
    padding: 52px 0 46px;
  }

  .docs-hero h1 {
    font-size: 36px;
  }

  .docs-hero-lead {
    font-size: 16px;
  }

  .docs-proof {
    grid-template-columns: 1fr;
  }

  .docs-proof-item,
  .docs-proof-item:first-child {
    padding: 19px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 54, 64, 0.13);
  }

  .docs-proof-item:last-child {
    border-bottom: 0;
  }

  .docs-benefits {
    grid-template-columns: 1fr;
  }

  .docs-benefit,
  .docs-benefit:first-child {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 54, 64, 0.13);
  }

  .docs-benefit:last-child {
    border-bottom: 0;
  }

  .docs-selector,
  .docs-process {
    padding: 58px 0 64px;
  }

  .docs-package-grid,
  .docs-process-list {
    grid-template-columns: 1fr;
  }

  .docs-package-card {
    min-height: 0;
  }

  .docs-process-list li,
  .docs-process-list li:first-child,
  .docs-process-list li:last-child {
    padding: 23px 0;
    border-right: 0;
    border-bottom: 1px solid #dfcdb8;
  }

  .docs-process-list li:last-child {
    border-bottom: 0;
  }

}

@media (max-width: 520px) {
  .docs-hero h1 {
    font-size: 31px;
  }

  .docs-proof-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .docs-proof-item strong {
    font-size: 29px;
  }

  .docs-section-heading {
    gap: 13px;
  }

  .docs-section-index {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .docs-section-heading h2 {
    font-size: 25px;
  }

  .docs-package-card,
  .docs-package-radio:checked + .docs-package-card {
    padding: 22px;
  }

  .docs-package-title {
    font-size: 24px;
  }

  .docs-page .site-footer .container {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .docs-package-card,
  .docs-whatsapp-button {
    transition: none;
  }
}