.nws-shell {
  width: 100%;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
}

.nws-shell,
.nws-shell * {
  box-sizing: border-box;
}

.nws-shell {
  --bg: #f8f7f3;
  --ink: #101010;
  --muted: #65625c;
  --line: rgba(16, 16, 16, 0.1);
  --green: #087f5b;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(8, 127, 91, 0.14), transparent 24rem),
    radial-gradient(circle at 92% 20%, rgba(16, 16, 16, 0.08), transparent 24rem),
    linear-gradient(180deg, #fffdfa 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  scroll-behavior: smooth;
}

.nws-shell a {
  color: inherit;
  text-decoration: none;
}

.nws-container,
.nws-nav {
  width: min(1080px, calc(100% - 28px));
  margin: 0 auto;
}

.nws-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.nws-brand,
.nws-actions,
.nws-contact,
.nws-footer .nws-container {
  display: flex;
  align-items: center;
}

.nws-brand {
  gap: 10px;
  font-weight: 780;
}

.nws-brand span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: #111;
  color: #fff;
  box-shadow: 0 16px 34px rgba(16, 16, 16, 0.16);
}

.nws-nav-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.62);
  color: #24231f;
  font-size: 14px;
  font-weight: 720;
  backdrop-filter: blur(14px);
}

.nws-hero {
  padding: 34px 0 26px;
}

.nws-hero-grid {
  display: grid;
  gap: 22px;
}

.nws-copy {
  padding: 26px 2px 4px;
}

.nws-kicker {
  width: fit-content;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: #2f2d29;
  font-size: 13px;
  font-weight: 760;
}

.nws-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 13vw, 92px);
  line-height: 0.95;
  font-weight: 850;
}

.nws-lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: #47443f;
  font-size: 19px;
  line-height: 1.42;
}

.nws-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.nws-button,
.nws-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 790;
  cursor: pointer;
}

.nws-button-dark,
.nws-submit {
  background: #111;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  box-shadow: 0 20px 42px rgba(16, 16, 16, 0.18);
}

.nws-button-light {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: #171717;
}

.nws-button-whatsapp {
  background: var(--green);
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.nws-contact {
  display: grid;
  gap: 13px;
  margin-top: 20px;
  color: #34312c;
  font-size: 14px;
  font-weight: 690;
}

.nws-contact a,
.nws-footer a {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.nws-form-card {
  display: grid;
  gap: 15px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 30px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 30px 85px rgba(34, 31, 27, 0.13);
  backdrop-filter: blur(22px);
}

.nws-form-card header {
  padding-bottom: 4px;
}

.nws-form-card header span {
  color: var(--green);
  font-size: 13px;
  font-weight: 820;
}

.nws-form-card h2 {
  margin: 5px 0 4px;
  font-size: 34px;
  line-height: 1;
}

.nws-form-card p,
.nws-field small,
.nws-safe,
.nws-strip span,
.nws-footer {
  color: var(--muted);
}

.nws-field {
  display: grid;
  gap: 8px;
  color: #1f1e1b;
  font-size: 14px;
  font-weight: 760;
}

.nws-field input,
.nws-field select,
.nws-field textarea {
  width: 100%;
  border: 1px solid rgba(16, 16, 16, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: #111;
  outline: none;
  font: inherit;
  font-weight: 620;
}

.nws-field input,
.nws-field select {
  min-height: 54px;
  padding: 0 15px;
}

.nws-field input[type="file"] {
  padding: 14px;
}

.nws-field textarea {
  min-height: 132px;
  padding: 14px 15px;
  resize: vertical;
  line-height: 1.46;
}

.nws-field input:focus,
.nws-field select:focus,
.nws-field textarea:focus {
  border-color: rgba(8, 127, 91, 0.58);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(8, 127, 91, 0.11);
}

.nws-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.nws-more {
  border: 1px solid rgba(16, 16, 16, 0.09);
  border-radius: 20px;
  padding: 14px;
  background: rgba(248, 247, 243, 0.58);
}

.nws-more summary {
  cursor: pointer;
  font-weight: 790;
}

.nws-more[open] {
  display: grid;
  gap: 14px;
}

.nws-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid rgba(16, 16, 16, 0.09);
  border-radius: 18px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 720;
}

.nws-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--green);
}

.nws-submit {
  width: 100%;
  min-height: 56px;
  font-size: 16px;
}

.nws-safe {
  margin: -4px 0 0;
  text-align: center;
  font-size: 13px;
}

.nws-status {
  display: none;
  border-radius: 18px;
  padding: 13px 14px;
  line-height: 1.45;
  font-weight: 690;
}

.nws-status.success,
.nws-status.error {
  display: block;
}

.nws-status.success {
  border: 1px solid rgba(8, 127, 91, 0.18);
  background: rgba(8, 127, 91, 0.09);
  color: #064f3b;
}

.nws-status.error {
  border: 1px solid rgba(180, 35, 24, 0.18);
  background: rgba(180, 35, 24, 0.08);
  color: #912018;
}

.nws-after-submit {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(8, 127, 91, 0.16);
  border-radius: 20px;
  padding: 14px;
  background: rgba(8, 127, 91, 0.08);
}

.nws-after-submit[hidden],
.nws-honeypot {
  display: none;
}

.nws-strip {
  padding: 28px 0 18px;
}

.nws-strip .nws-container {
  display: grid;
  gap: 10px;
}

.nws-strip div div {
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.nws-strip strong,
.nws-strip span {
  display: block;
}

.nws-strip strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.nws-footer {
  padding: 28px 0 92px;
  font-size: 14px;
}

.nws-footer .nws-container {
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
  padding-top: 20px;
}

.nws-footer p {
  width: 100%;
  margin: 0;
}

.nws-footer a {
  font-weight: 720;
}

@media (min-width: 720px) {
  .nws-container,
  .nws-nav {
    width: min(1080px, calc(100% - 56px));
  }

  .nws-hero {
    padding: 70px 0 38px;
  }

  .nws-hero-grid {
    grid-template-columns: 1.02fr 0.78fr;
    align-items: center;
    gap: 38px;
  }

  .nws-form-card {
    padding: 24px;
  }

  .nws-row {
    grid-template-columns: 1fr 1fr;
  }

  .nws-contact {
    display: flex;
    flex-wrap: wrap;
  }

  .nws-strip .nws-container {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 430px) {
  .nws-container,
  .nws-nav {
    width: min(100% - 28px, 390px);
  }

  .nws-nav-cta {
    display: none;
  }

  .nws-copy h1 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .nws-lead {
    font-size: 17px;
  }

  .nws-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .nws-button {
    min-width: 0;
    padding: 0 12px;
    white-space: nowrap;
  }

  .nws-footer {
    padding-bottom: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nws-shell {
    scroll-behavior: auto;
  }
}
