/* ==========================================================================
   GoTRUST — landing page
   Palette taken from the official logo: navy #16223A, green #3BAA35
   ========================================================================== */

:root {
  --navy:        #16223A;
  --navy-soft:   #24334f;
  --navy-muted:  #5a6780;
  --green:       #3BAA35;   /* brand green — accents, rules, icons */
  --green-deep:  #256E20;   /* darker green — buttons and links (AA on white) */
  --green-tint:  #eef7ed;
  --paper:       #ffffff;
  --shell:       #f6f7f9;
  --line:        #e3e6ec;
  --radius:      10px;
  --maxw:        1080px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 .6em; }
h1 { font-size: clamp(2rem, 5vw, 3.15rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.125rem; font-weight: 650; }
p  { margin: 0 0 1.1em; }
a  { color: var(--green-deep); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

section { padding: 84px 0; scroll-margin-top: 72px; }
section.tight { padding: 60px 0; }
.shell { background: var(--shell); border-top: 1px solid var(--line);
         border-bottom: 1px solid var(--line); }

.eyebrow {
  font-size: .8rem; font-weight: 650; letter-spacing: .09em;
  text-transform: uppercase; color: var(--green-deep); margin-bottom: .9em;
}
.lead { font-size: 1.2rem; color: var(--navy-soft); }
.muted { color: var(--navy-muted); }

/* --- buttons -------------------------------------------------------------- */
.btn {
  display: inline-block; padding: 15px 30px; border-radius: var(--radius);
  font-weight: 650; font-size: 1rem; text-decoration: none; border: 2px solid transparent;
  cursor: pointer; transition: background .15s ease, transform .15s ease;
}
.btn-primary { background: var(--green-deep); color: #fff; }
.btn-primary:hover { background: #1d5a19; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-sm { padding: 10px 20px; font-size: .93rem; white-space: nowrap; }
.cta-short { display: none; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--green); outline-offset: 2px;
}

/* --- header --------------------------------------------------------------- */
header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between;
       gap: 16px; padding: 16px 24px; max-width: var(--maxw); margin: 0 auto; }
.nav img { height: 22px; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--navy); text-decoration: none; font-size: .94rem; font-weight: 500; }
.nav-links a:hover { color: var(--green-deep); }

/* --- hero ----------------------------------------------------------------- */
.hero { padding: 96px 0 76px; }
.hero h1 { max-width: 15ch; }
.hero .lead { max-width: 56ch; font-size: 1.28rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; align-items: center; }
.hero-note { font-size: .92rem; color: var(--navy-muted); margin-top: 18px; }

/* --- generic grid --------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }

/* --- steps ---------------------------------------------------------------- */
.step { position: relative; padding-left: 56px; }
.step-n {
  position: absolute; left: 0; top: 0; width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: .95rem;
}

/* --- fit / not fit lists -------------------------------------------------- */
.fit-list { list-style: none; padding: 0; margin: 0; }
.fit-list li { padding: 9px 0 9px 30px; position: relative; border-bottom: 1px solid var(--line); }
.fit-list li:last-child { border-bottom: 0; }
.fit-list li::before {
  position: absolute; left: 0; top: 9px; font-weight: 700;
}
.yes li::before { content: "✓"; color: var(--green-deep); }
.no  li::before { content: "×"; color: var(--navy-muted); font-size: 1.2em; line-height: 1.2; }

/* --- pricing -------------------------------------------------------------- */
.price-table { border: 1px solid var(--line); border-radius: var(--radius);
               overflow: hidden; background: var(--paper); }
.price-row {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: baseline;
  padding: 22px 26px; border-bottom: 1px solid var(--line);
}
.price-row:last-child { border-bottom: 0; }
.price-row .name { font-weight: 650; }
.price-row .desc { font-size: .95rem; color: var(--navy-muted); margin: 4px 0 0; }
.price-row .amount { font-weight: 700; white-space: nowrap; font-size: 1.05rem; }
.price-row .amount small { display: block; font-weight: 500; font-size: .8rem;
                           color: var(--navy-muted); text-align: right; }
.price-row.free { background: var(--green-tint); }

/* --- guarantee ------------------------------------------------------------ */
.guarantee { border-left: 4px solid var(--green); padding-left: 24px; }

/* --- form ----------------------------------------------------------------- */
.form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px;
}
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: 7px; }
.field .hint { font-weight: 400; color: var(--navy-muted); font-size: .88rem; }
input[type=text], input[type=email], input[type=tel], select, textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: 1rem; color: var(--navy);
  background: #fff; border: 1px solid #c8cedb; border-radius: 8px;
}
textarea { min-height: 96px; resize: vertical; }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-row label {
  display: flex; align-items: center; gap: 8px; font-weight: 500; cursor: pointer;
  border: 1px solid #c8cedb; border-radius: 8px; padding: 10px 16px; margin: 0;
}
.radio-row input { accent-color: var(--green-deep); }
.form-foot { font-size: .88rem; color: var(--navy-muted); margin-top: 16px; }

.notice {
  border-radius: 8px; padding: 14px 16px; font-size: .94rem; margin-bottom: 20px;
}
.notice-warn { background: #fff6e5; border: 1px solid #f0d191; color: #6b4c05; }
.notice-ok   { background: var(--green-tint); border: 1px solid #bcdcb8; color: #1d5a19; }
[hidden] { display: none !important; }

/* --- footer --------------------------------------------------------------- */
footer {
  background: var(--navy); color: #c3cad9; padding: 54px 0 40px; font-size: .92rem;
}
footer a { color: #fff; }
footer .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
footer h4 { color: #fff; font-size: .95rem; margin: 0 0 12px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }
footer .muted { color: #9aa6bd; }
.foot-bar { border-top: 1px solid #2c3a55; margin-top: 36px; padding-top: 22px;
            font-size: .85rem; color: #8f9bb3; }

/* --- honeypot antibot ----------------------------------------------------- */
/* Fora da tela, mas ainda no DOM: bot preenche, humano nem vê. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px;
      overflow: hidden; }

/* --- responsive ----------------------------------------------------------- */
@media (max-width: 860px) {
  .grid-3, .grid-2, footer .foot-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  .cta-long { display: none; }
  .cta-short { display: inline; }
  .nav img { height: 19px; }
  .btn-sm { padding: 9px 16px; font-size: .88rem; }
  section { padding: 60px 0; }
  .hero { padding: 64px 0 52px; }
  .price-row { grid-template-columns: 1fr; }
  .price-row .amount, .price-row .amount small { text-align: left; }
}
