
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    :root {
      --dark:         #1c2912;
      --dark-mid:     #243317;
      --green:        #43572a;
      --green-hover:  #3a4c24;
      --accent:       #b3cf63;
      --accent-dark:  #9ab84e;
      --sage:         #f5f7f0;
      --sage-border:  #dde8c0;
      --body:         #1a1a1a;
      --muted:        #64736a;
      --border:       #e0e4d8;
      --white:        #ffffff;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      color: var(--body);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ─────────────────────────────────── */
    .nav {
      position: absolute;
      top: 0; left: 0; right: 0;
      z-index: 10;
      padding: 28px 6%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo svg { height: 44px; width: auto; display: block; }
    .nav-site-link {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-site-link:hover { color: var(--accent); }

    /* ── HERO ────────────────────────────────── */
    .hero {
      background: var(--dark);
      min-height: 100vh;
      padding: 120px 6% 80px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    /* subtle ambient glow */
    .hero::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 65vw;
      height: 65vw;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(179,207,99,0.06) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -15%;
      left: -5%;
      width: 40vw;
      height: 40vw;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(67,87,42,0.5) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    /* Left — copy */
    .hero-copy { padding-right: 16px; }

    .hero-overline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 28px;
    }
    .hero-overline::before {
      content: '';
      width: 24px;
      height: 2px;
      background: var(--accent);
      flex-shrink: 0;
    }

    .hero-h1 {
      font-family: 'Trirong', serif;
      font-size: clamp(34px, 3.8vw, 56px);
      font-weight: 300;
      color: var(--white);
      line-height: 1.1;
      letter-spacing: -0.01em;
      margin-bottom: 24px;
      text-wrap: balance;
    }
    .hero-h1 em {
      font-style: italic;
      color: var(--accent);
    }

    .hero-sub {
      font-size: 15px;
      font-weight: 400;
      color: #ffffff;
      line-height: 1.8;
      margin-bottom: 44px;
      max-width: 480px;
    }

    .hero-badges {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .hero-badge {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 13px;
      font-weight: 500;
      color: #ffffff;
      line-height: 1.5;
    }
    .hero-badge-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      border-radius: 50%;
      background: rgba(179,207,99,0.15);
      border: 1.5px solid rgba(179,207,99,0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }
    .hero-badge-icon--square {
      font-size: 9px;
      color: var(--accent);
      border-color: transparent;
      background: transparent;
    }

    .hero-badge-icon svg {
      width: 9px;
      height: 9px;
      stroke: var(--accent);
      stroke-width: 2.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* Right — form card */
    .hero-form-wrap {
      /* slight bleed into trust strip */
      margin-bottom: -72px;
      position: relative;
      z-index: 2;
    }

    .hero-form {
      background: var(--white);
      padding: 40px 36px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08);
    }

    .form-badge {
      display: inline-block;
      background: var(--accent);
      color: var(--dark);
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 5px 12px;
      margin-bottom: 20px;
    }

    .form-title {
      font-family: 'Trirong', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--green);
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .form-sub {
      font-size: 12.5px;
      color: var(--muted);
      margin-bottom: 28px;
      line-height: 1.65;
    }

    .form-group {
      margin-bottom: 14px;
    }
    .form-group label {
      display: block;
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group select {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      background: #fafbf8;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      color: var(--body);
      outline: none;
      transition: border-color 0.2s;
      appearance: none;
      -webkit-appearance: none;
    }
    .form-group input::placeholder { color: #b0b8a8; }
    .form-group input:focus,
    .form-group select:focus { border-color: var(--accent); background: #fff; }
    .form-group input.error,
    .form-group select.error { border-color: #c0392b; }

    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%2343572a' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      background-color: #fafbf8;
      padding-right: 36px;
      cursor: pointer;
      color: var(--body);
    }
    .form-group select option[value=""] { color: #b0b8a8; }

    /* two-col row for name + phone */
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    /* phone with indicativo */
    .phone-wrap {
      display: flex;
      border: 1.5px solid var(--border);
      background: #fafbf8;
      transition: border-color 0.2s;
    }
    .phone-wrap:focus-within { border-color: var(--accent); background: #fff; }
    .phone-wrap.error { border-color: #c0392b; }
    .phone-indicativo {
      flex-shrink: 0;
      width: auto !important;
      border: none;
      border-right: 1.5px solid var(--border);
      background: transparent;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      color: var(--body);
      padding: 11px 8px 11px 10px;
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
      outline: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpath fill='%2343572a' d='M4 5L0 0h8z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 6px center;
      padding-right: 20px;
    }
    .phone-number {
      flex: 1;
      border: none;
      background: transparent;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      color: var(--body);
      padding: 11px 14px;
      outline: none;
      min-width: 0;
    }
    .phone-number::placeholder { color: #b0b8a8; }

    .form-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin: 18px 0 20px;
    }
    .form-check input[type="checkbox"] {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 2px;
      accent-color: var(--green);
      cursor: pointer;
    }
    .form-check label {
      font-size: 11px;
      color: var(--muted);
      line-height: 1.6;
      cursor: pointer;
    }
    .form-check label a {
      color: var(--green);
      text-decoration: underline;
    }
    .form-check label a:hover { color: var(--accent-dark); }

    .form-submit {
      width: 100%;
      padding: 14px;
      background: var(--green);
      color: var(--accent);
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
    }
    .form-submit:hover { background: var(--green-hover); }
    .form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

    .form-privacy {
      font-size: 10px;
      color: #b8c0b0;
      text-align: center;
      margin-top: 10px;
      line-height: 1.5;
    }

    /* Success state */
    .form-success {
      display: none;
      text-align: center;
      padding: 24px 0;
    }
    .success-circle {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(179,207,99,0.15);
      border: 2px solid var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .success-circle svg {
      width: 22px; height: 22px;
      stroke: var(--accent);
      stroke-width: 2.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .success-title {
      font-family: 'Trirong', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--green);
      margin-bottom: 10px;
    }
    .success-msg {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 280px;
      margin: 0 auto;
    }

    /* ── TRUST STRIP ─────────────────────────── */
    .trust-strip {
      background: var(--sage);
      border-bottom: 1px solid var(--sage-border);
      padding: 40px 6%;
    }
    .trust-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 0;
    }
    .trust-item {
      flex: 1;
      padding: 0 40px 0 0;
    }
    .trust-item:not(:last-child) {
      border-right: 1px solid var(--sage-border);
      margin-right: 40px;
    }
    .trust-num {
      font-family: 'Trirong', serif;
      font-size: 36px;
      font-weight: 600;
      color: var(--green);
      line-height: 1;
      margin-bottom: 6px;
      font-variant-numeric: tabular-nums;
    }
    .trust-lbl {
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      line-height: 1.4;
    }
    .trust-source {
      font-size: 10px;
      color: #9eaaa0;
      margin-top: 3px;
    }

    /* ── FOOTER ──────────────────────────────── */
    .footer {
      background: var(--dark);
      padding: 48px 6%;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .footer-logo svg { height: 40px; width: auto; opacity: 0.85; }
    .footer-links {
      display: flex;
      gap: 28px;
    }
    .footer-link {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.35);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .footer-link:hover { color: var(--accent); }
    .footer-disclaimer {
      font-size: 10px;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
      margin-bottom: 8px;
    }
    .footer-disclaimer:last-child { margin-bottom: 0; }
    .footer-copyright {
      font-size: 10px;
      color: rgba(255,255,255,0.55);
      margin-top: 16px;
      letter-spacing: 0.06em;
    }

    /* ── RESPONSIVE ──────────────────────────── */
    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .hero-copy { padding-right: 0; order: 2; }
      .hero-form-wrap { order: 1; margin-bottom: 0; }
      .hero {
        padding: 100px 6% 60px;
        min-height: auto;
      }
      .trust-strip { padding-top: 32px; }
      .trust-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
      }
      .trust-item {
        border-right: none !important;
        margin-right: 0 !important;
        padding-right: 0;
        padding-bottom: 28px;
        border-bottom: 1px solid var(--sage-border);
        width: 100%;
      }
      .trust-item:last-child { border-bottom: none; padding-bottom: 0; }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
    }

    @media (max-width: 480px) {
      .nav { padding: 20px 5%; top: 0; }
      .hero { padding: 84px 5% 48px; }
      .hero-inner { align-items: start; }
      .hero-copy { display: contents; }
      .hero-copy-top { order: 1; }
      .hero-copy-top .hero-sub { margin-bottom: 0; }      .hero-form-wrap { order: 2; }
      .hero-copy-bottom { order: 3; }
      .hero-form { padding: 28px 24px; }
      .trust-strip { padding: 28px 5%; }
      .footer { padding: 36px 5%; }
    }


    /* --- ANULAR O IMPACTO DOS P E BR GERADOS PELO CF7 --- */
.wpcf7-form p {
  margin: 0 !important;
  padding: 0 !important;
  display: contents !important; /* Faz com que a tag <p> seja ignorada no layout */
}

.wpcf7-form br {
  display: none !important;
}

.wpcf7-form {
  text-align: left !important;
}

/* --- ESPAÇAMENTOS DOS CAMPOS --- */
.form-row {
  display: flex !important;
  gap: 16px !important;
  margin-bottom: 12px !important;
}

.form-group {
  margin-bottom: 12px !important;
  width: 100% !important;
}

/* Encurtar a distância entre o título do campo e a caixa de input */
.form-group label {
  display: block !important;
  margin-bottom: 4px !important;
}

/* --- CHECKBOX E TEXTO NA MESMA LINHA (GRID INFALÍVEL) --- */
.form-check-container {
  display: grid !important;
  grid-template-columns: 20px 1fr !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-top: 16px !important;
  margin-bottom: 20px !important;
}

.form-check-container .wpcf7-form-control-wrap,
.form-check-container .wpcf7-acceptance {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.form-check-container input[type="checkbox"] {
  margin: 2px 0 0 0 !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  cursor: pointer !important;
}

.form-check-container .consent-text {
  display: block !important;
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
}

/* --- BOTÃO DE SUBMISSÃO --- */
.form-submit {
  width: 100% !important;
  cursor: pointer !important;
  margin-top: 0 !important;
}

.form-check-container .consent-text{
    font-size: 11px!important;
    color: var(--muted);
    line-height: 1.6!important;
    cursor: pointer;
}

.form-check-container .consent-text a {
    color: var(--green)!important;
    text-decoration: underline;
}
.form-check-container .wpcf7-list-item{
  margin: 0;
}