.landing-main {
  background: var(--bg-soft);
  padding: 32px 0 56px;
  overflow-x: clip;
}

.landing-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.landing-form-card,
.landing-detail-card {
  background: #e0e4e9;
  border: 1px solid #c0c8d1;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(5, 19, 38, 0.08);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.landing-form-card h1,
.landing-detail-card h2 {
  margin: 0;
  font-family: "Questrial", sans-serif;
  color: var(--ink);
}

.landing-form-card h1 {
  font-size: clamp(28px, 2.2vw, 40px);
  line-height: 1.12;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.landing-copy {
  margin: 0 0 18px;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.35;
  font-family: "Questrial", sans-serif;
}

.landing-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.landing-form .form-field {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.landing-form .form-field--full,
.landing-submit {
  grid-column: 1 / -1;
}

.landing-form label {
  font-family: "Questrial", sans-serif;
  color: var(--ink);
  font-size: 15px;
}

.landing-form input,
.landing-form select,
.landing-form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 42px;
  border: 1px solid #b8c0ca;
  border-radius: 10px;
  padding: 9px 11px;
  font-family: "Questrial", sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
}

.landing-form input[type="date"],
.landing-form input[type="time"] {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  appearance: none;
  -webkit-appearance: none;
}

.landing-form textarea {
  min-height: 94px;
  resize: vertical;
}

.landing-form input:focus,
.landing-form select:focus,
.landing-form textarea:focus {
  outline: 2px solid rgba(156, 196, 49, 0.4);
  border-color: var(--lime);
}

.landing-submit {
  border: 1px solid #88ad29;
  background: var(--lime);
  color: #fff;
  border-radius: 12px;
  min-height: 46px;
  font-family: "Questrial", sans-serif;
  font-size: 19px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.landing-submit:hover {
  background: #fff;
  color: #000;
}

.landing-submit:disabled {
  cursor: wait;
}

.landing-submit.is-loading {
  padding-right: 54px;
  opacity: 0.9;
}

.landing-submit.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  animation: contempla-button-spin 0.9s linear infinite;
}

@keyframes contempla-button-spin {
  to {
    transform: rotate(360deg);
  }
}

.detail-eyebrow {
  margin: 0;
  color: #6d83a0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "Questrial", sans-serif;
  font-size: 13px;
}

.landing-detail-card h2 {
  margin-top: 8px;
  font-size: clamp(26px, 2.1vw, 38px);
  line-height: 1.12;
}

.detail-short,
.detail-long {
  margin: 12px 0 0;
  color: var(--ink);
  font-family: "Questrial", sans-serif;
  font-size: 20px;
  line-height: 1.3;
}

.detail-long {
  font-size: 17px;
  color: var(--ink-muted);
}

.detail-points {
  margin: 14px 0 20px;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-family: "Questrial", sans-serif;
  font-size: 17px;
}

.detail-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #88ad29;
  background: var(--lime);
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  font-family: "Questrial", sans-serif;
  font-size: 18px;
}

.detail-whatsapp:hover {
  color: #000;
  background: #fff;
}

@media (max-width: 1180px) {
  .landing-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .landing-main {
    padding-top: 18px;
  }

  .landing-shell {
    gap: 16px;
  }

  .landing-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .landing-form-card,
  .landing-detail-card {
    padding: 16px;
  }

  .landing-form-card h1 {
    font-size: 30px;
  }

  .detail-short {
    font-size: 18px;
  }
}
