:root {
  --brand-800: #0c4a6e;
  --brand-700: #0e5a7f;
  --teal-600: #0ea5a5;
  --gold: #b8892a;
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748b;
  --ink-300: #cbd5e1;
  --ink-200: #e2e8f0;
  --ink-100: #f1f5f9;
  --bg: #f8fafc;
  --white: #ffffff;
  --radius-lg: 16px;
  --shadow: 0 10px 25px rgba(2, 12, 27, 0.08);
}
* {
  box-sizing: border-box;
}
html{
  overflow-x: hidden;
}
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  background: var(--bg);
  color: var(--ink-700);
  line-height: 1.6;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
a {
  color: var(--brand-700);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid var(--ink-200);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--ink-900);
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  font-size: 0.95rem;
}
.btn.primary {
  background: linear-gradient(135deg, var(--brand-800), var(--teal-600));
  color: #fff;
  box-shadow: 0 10px 20px rgba(12, 74, 110, 0.18);
}
/* { */

.sucesso{
  background: linear-gradient(135deg, rgb(24, 61, 24), limegreen);
  color: #fff;
}
.fracasso{
  background: linear-gradient(135deg, rgb(78, 34, 34), rgb(221, 52, 52));
  color: #fff;
}

/* } -> apenas para o form */
.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(12, 74, 110, 0.24);
}
.btn.outline {
  border-color: var(--ink-300);
  background: #fff;
  color: var(--brand-800);
  border: 1px solid rgba(0, 0, 0, 0.082);
}
.btn.outline:hover {
  border-color: var(--brand-700);
}
.hero {
  padding: 56px 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ink-200);
  font-weight: 600;
  color: var(--brand-800);
}
h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 16px 0 10px;
  color: var(--ink-900);
}
.sub {
  font-size: 1.06rem;
  color: var(--ink-600);
  margin-bottom: 18px;
}
.slogan {
  font-weight: 700;
  color: var(--gold);
  margin-top: 4px;
}
.highlight {
  background: var(--gold);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: var(--shadow);
  margin: 16px 0;
  display: inline-block;
}
.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--ink-200);
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;

  cursor: pointer;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s ease-in-out;
}
.badge:hover{
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.2); 
}
.card {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);

  transition: box-shadow .2s ease-in-out;
}
.card:hover{
  box-shadow: none;
}
.form-card {
  padding: 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid .full {
  grid-column: 1/-1;
}
label {
  font-weight: 600;
  color: var(--ink-600);
  font-size: 0.92rem;
}
input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--ink-300);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  background: #fff;
  color: var(--ink-700);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
/*  { */
input[type="checkbox"] {
  width: auto;
}
/*  } -> Estava muito grande o espaçamento*/
textarea {
  min-height: 110px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-700);
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-600);
}
.consent input {
  margin-top: 3px;
}
.helper {
  font-size: 0.85rem;
  color: var(--ink-500);
}
.micro {
  font-size: 0.8rem;
  color: var(--ink-500);
}
.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.kpi {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 14px;
  text-align: center;

  cursor: pointer;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s ease-in-out;
}
.kpi:hover{
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.2);
}
.kpi strong {
  display: block;
  color: var(--ink-900);
  font-size: 1.2rem;
}
.section {
  padding: 38px 0;
}
.section h2 {
  font-size: 1.8rem;
  color: var(--ink-900);
  margin: 0 0 12px;
}
.lead {
  color: var(--ink-600);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 18px;
}
.step {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 18px;

  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s ease-in-out;
}
.step:hover{
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.2);
}
.step .n {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-800), var(--teal-600));
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 18px;
}
.benefit {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 18px;

  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s ease-in-out;
}
.benefit:hover{
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.2);
}
.admin-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.admin-pill {
  border: 1px dashed var(--ink-300);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  color: var(--ink-600);
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

details {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 14px;
  overflow: hidden;

  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s ease-in-out;
}
details:hover{
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.2);
}
summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink-900);
}
footer {
  background: #0f172a;
  color: #e2e8f0;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  padding: 28px 0;
}
.foot-mini {
  font-size: 0.9rem;
  color: #94a3b8;
}
.copyright {
  border-top: 1px solid #233148;
  padding: 12px 0;
  color: #94a3b8;
  font-size: 0.9rem;
}
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: grid;
  place-items: center;

  transition: all 0.2s ease-in-out;
  animation: sempre .3s ease-in-out infinite alternate;
}
.wa-float:hover {
  box-shadow: 1px 1px 36px rgba(22, 163, 74, 0.45);
  
}

.last_important{
  font-weight: 800;
  color: #94a3b8;
}
@keyframes sempre {
  to{
    transform: translateY(-2px);
  }
  from{
    transform: translateY(2px);
  }
}
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .kpis {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps,
  .grid-3,
  .faq {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
  }
  .other2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
  }
}
@media (max-width: 406px) {
.trocar{
  position: relative;
  top: 1.58rem;
}
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
  box-shadow: 0 0 0px 1000px #ffffff inset !important;
  -webkit-text-fill-color: rgb(0, 0, 0) !important;
  caret-color: rgb(0, 0, 0) !important;
  transition: background-color 1000s ease-in-out 0s;
}
