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

/* ── TOKENS ── */
:root {
  color-scheme: dark;
  --bg:         #080B0A;
  --bg-lifted:  #0D1110;
  --bg-card:    #111716;
  --surface:    #161D1B;
  --green:      #00E06A;
  --green-muted:#00C853;
  --green-dim:  rgba(0,224,106,0.06);
  --green-glow: rgba(0,224,106,0.14);
  --text:       #E8ECE9;
  --text-2:     #8B9D97;
  --text-3:     #4A5955;
  --border:     rgba(255,255,255,0.06);
  --border-g:   rgba(0,224,106,0.15);
  --r:          14px;
  --r-sm:       8px;
  --font-head:  'Plus Jakarta Sans', sans-serif;
  --font-body:  'Manrope', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }


/* ════════════════════════════════════════
   HEADER
   ════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(8,11,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.btn--sm {
  padding: 10px 16px;
  font-size: 10px;
  white-space: nowrap;
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: visible;
}

.hero__inner {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  justify-content: space-around;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero__live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 20px;
  padding: 7px 16px 7px 10px;
  background: rgba(0,224,106,0.05);
  border: 1px solid rgba(0,224,106,0.18);
  border-radius: 100px;
}

.hero__live-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green), 0 0 4px var(--green);
  animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__live-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
}

.hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 9vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}

.hero__h1 .thin {
  font-weight: 400;
  color: var(--text-2);
}

.hero__h1 .accent {
  color: var(--green);
  position: relative;
  display: inline;
}

.hero__h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 3px;
  background: var(--green);
  opacity: 0.3;
  border-radius: 4px;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-2);
  max-width: 500px;
  margin-bottom: 24px;
}

.hero__sub strong { color: var(--text); font-weight: 600; }

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}

.btn--primary {
  padding: 16px 28px;
  background: var(--green);
  color: var(--bg);
  box-shadow: 0 4px 24px rgba(0,224,106,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn--primary:hover {
  background: #00f072;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0,224,106,0.28);
}

.btn--ghost {
  padding: 16px 22px;
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(0,224,106,0.04);
}

.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero__proof {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero__proof-item {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__proof-item svg { width: 13px; height: 13px; color: var(--green-muted); opacity: 0.6; }

/* Hero visual — hidden on mobile, shown on desktop */
.hero__visual {
  display: none;
  position: relative;
  overflow: visible;
  align-items: center;
  justify-content: center;
}

/* Glow principal — grande e visível */
.hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,224,106,0.18) 0%, rgba(0,224,106,0.06) 40%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%,-50%) scale(1.08); }
}

.hero__img-wrap {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 440px;
}

/* Borda verde com glow na imagem */
.hero__img-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 22px 22px 2px 2px;
  background: linear-gradient(160deg, var(--green) 0%, rgba(0,224,106,0.2) 50%, transparent 100%);
  z-index: -1;
  opacity: 0.7;
}

/* Linha decorativa verde ao lado da imagem */
.hero__img-wrap::after {
  content: '';
  position: absolute;
  top: 40px; right: -32px;
  width: 3px; height: 120px;
  background: linear-gradient(to bottom, var(--green), transparent);
  border-radius: 4px;
  opacity: 0.4;
}

.hero__img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px 20px 0 0;
  filter: saturate(0.85) contrast(1.08);
}

/* Nametag com borda verde sutil */
.hero__nametag {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(8,11,10,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,224,106,0.15);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  padding: 16px 28px;
  text-align: center;
  min-width: 210px;
}

.hero__nametag-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.hero__nametag-role {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--green-muted);
  margin-top: 3px;
  letter-spacing: 0.03em;
}

/* Floating elements ao redor da foto */
.hero__float {
  position: absolute;
  z-index: 5;
  background: rgba(8,11,10,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,224,106,0.15);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatY 3.5s ease-in-out infinite;
}

.hero__float--badge {
  top: 15%; left: -10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.hero__float--badge svg {
  color: var(--green);
  flex-shrink: 0;
}

.hero__float--stat {
  bottom: 22%; right: -24px;
  padding: 12px 18px;
  animation-delay: -1.8s;
}

.hero__float-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.hero__float-label {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--text-2);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Dots decorativos */
.hero__dots {
  position: absolute;
  top: 8%; right: 10%;
  width: 60px; height: 60px;
  background-image: radial-gradient(rgba(0,224,106,0.25) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.5;
}

.hero__diagonal {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 60%, 100% 100%);
  z-index: 4;
}


/* ════════════════════════════════════════
   SECTION UTILS
   ════════════════════════════════════════ */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sec { padding: 56px 0; position: relative; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  opacity: 0.75;
  display: block;
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.sec-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 500px;
}

/* ════════════════════════════════════════
   PROBLEM
   ════════════════════════════════════════ */
.problem { background: var(--bg); border-top: 1px solid var(--border); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.dores {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dor {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
  cursor: default;
}

.dor:first-child { border-top: 1px solid var(--border); }
.dor:hover { padding-left: 8px; }

.dor__num {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  opacity: 0.2;
  padding-top: 3px;
  transition: opacity 0.2s;
}

.dor:hover .dor__num { opacity: 0.7; }

.dor__text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  transition: color 0.2s;
}

.dor:hover .dor__text { color: var(--text); }
.dor__text strong { color: var(--text); font-weight: 700; }

.problem__close {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: var(--text-3);
  border-left: 3px solid var(--green);
  padding-left: 16px;
  line-height: 1.65;
}

/* ════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════ */
.services { background: var(--bg-lifted); border-top: 1px solid var(--border); }

.services-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.services-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--green-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: gap 0.2s, opacity 0.2s;
  opacity: 0.7;
  background: none;
  border: none;
  padding: 0;
}

.services-link:hover { opacity: 1; gap: 10px; }
.services-link svg { width: 14px; height: 14px; }

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}

.bento-card:hover {
  border-color: var(--border-g);
  transform: translateY(-2px);
}

.bento-card--star {
  border-color: rgba(0,224,106,0.15);
  background: linear-gradient(150deg, rgba(0,224,106,0.04) 0%, var(--bg-card) 45%);
  display: flex;
  flex-direction: column;
}

.bento-card--star:hover { border-color: rgba(0,224,106,0.35); }

.bento-card--star::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,224,106,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(0,224,106,0.08);
  border: 1px solid rgba(0,224,106,0.18);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 18px;
  width: fit-content;
}

.bento-icon { color: var(--green); opacity: 0.6; margin-bottom: 12px; }
.bento-icon svg { width: 26px; height: 26px; }

.bento-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}

.bento-card--star .bento-name { font-size: 20px; }

.bento-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}

.bento-card--star .bento-desc { font-size: 14px; line-height: 1.75; margin-bottom: 20px; }

.bento-proof {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,224,106,0.06);
  border: 1px solid rgba(0,224,106,0.12);
  border-radius: 10px;
  padding: 14px 18px;
}

.bento-proof__big {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
}

.bento-proof__label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.4;
}

/* ════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════ */
.how { background: var(--bg); border-top: 1px solid var(--border); text-align: center; }
.how .sec-sub { margin: 0 auto 48px; }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.step-arrow { display: none; }

.step__circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1.5px solid rgba(0,224,106,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
}

.step__title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 220px;
  margin: 0 auto;
}

/* ════════════════════════════════════════
   SOCIAL PROOF
   ════════════════════════════════════════ */
.social-proof {
  background: var(--bg-lifted);
  border-top: 1px solid var(--border);
}

.social-proof .sec-sub { margin-bottom: 40px; }

.sp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 40px;
}

.sp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}

.sp-card:hover {
  border-color: var(--border-g);
  transform: translateY(-2px);
}

.sp-card__num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}

.sp-card__label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

.sp-card--local {
  border-color: rgba(0,224,106,0.15);
  background: linear-gradient(150deg, rgba(0,224,106,0.04) 0%, var(--bg-card) 50%);
}

.sp-card__badge {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.sp-card__cities {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .sp-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ════════════════════════════════════════
   GUARANTEE
   ════════════════════════════════════════ */
.guarantee {
  background: var(--green);
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}

.guarantee::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  pointer-events: none;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.guarantee h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 6vw, 46px);
  font-weight: 800;
  color: var(--bg);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.guarantee p {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(8,11,10,0.65);
  line-height: 1.75;
}

.guarantee p strong { color: var(--bg); font-weight: 700; }

.g-items { display: flex; flex-direction: column; gap: 12px; }

.g-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(8,11,10,0.06);
  border-radius: 12px;
  padding: 16px 18px;
}

.g-item-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(8,11,10,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bg);
}

.g-item-icon svg { width: 14px; height: 14px; }

.g-item-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(8,11,10,0.7);
  line-height: 1.55;
}

.g-item-text strong { color: var(--bg); font-weight: 700; font-size: 14px; display: block; margin-bottom: 2px; }

/* ════════════════════════════════════════
   FORM
   ════════════════════════════════════════ */
.form-sec {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.form-left .sec-title em { font-style: normal; color: var(--green); }

.form-left-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 32px;
}

.checklist { display: flex; flex-direction: column; gap: 12px; }

.check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-2);
}

.check svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; opacity: 0.7; }

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
}

.form-card__title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-card__sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 24px;
}

.field { margin-bottom: 16px; }

.field label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 7px;
}

.field input, .field select {
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 44px 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.field input { padding-right: 16px; }

.field input:hover, .field select:hover {
  border-color: rgba(255,255,255,0.14);
}

.field input:focus, .field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,224,106,0.08);
}

.field input::placeholder { color: rgba(139,157,151,0.55); }
.field input.error, .field select.error { border-color: #ff4d4f; }

/* Select placeholder (opção default) com mesma estética do input */
.field select:required:invalid { color: var(--text-3); }
.field select option {
  background: var(--bg-card);
  color: var(--text);
}
.field select option[disabled] { color: var(--text-3); }
.field select option:checked { color: var(--green); }

/* seta do select (estética igual input) */
.field select {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B9D97' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 0, right 16px center;
  background-size: auto, 14px 14px;
}

/* honeypot — escondido de humanos, visível pra bots */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.btn-submit {
  width: 100%;
  background: var(--green);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(0,224,106,0.18);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
}

.btn-submit:hover { background: #00f072; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(0,224,106,0.25); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-micro {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  margin-top: 14px;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.form-divider-line { flex: 1; height: 1px; background: var(--border); }
.form-divider-text { font-family: var(--font-body); font-size: 11px; color: var(--text-3); }

.btn-wpp {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(37,211,102,0.3);
  color: #25d366;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  padding: 13px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  text-decoration: none;
  min-height: 48px;
}

.btn-wpp:hover { background: rgba(37,211,102,0.05); border-color: rgba(37,211,102,0.5); }
.btn-wpp svg { width: 18px; height: 18px; }

/* Estados do formulário */
.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}

.form-success.visible { display: block; }
.form-fields.hidden { display: none; }

.form-success__icon {
  width: 56px; height: 56px;
  background: var(--green-dim);
  border: 1.5px solid rgba(0,224,106,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--green);
}

.form-success__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success__sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text-3);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
}

.footer-social__link:hover {
  color: var(--green);
  border-color: var(--border-g);
  background: var(--green-dim);
}

.footer-social__link svg { width: 15px; height: 15px; }

.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   WhatsApp floating
   ════════════════════════════════════════ */
.wpp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.wpp-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
.wpp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (768px+)
   ════════════════════════════════════════ */
@media (min-width: 768px) {
  .hero__inner { padding: 0 40px; }
  .hero__copy { padding: 72px 0 32px; }
  .wrap { padding: 0 40px; }
  .sec { padding: 100px 0; }

  .problem-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .services-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
  }

  .bento { grid-template-columns: 1fr 1fr; }

  .steps {
    grid-template-columns: 1fr 40px 1fr 40px 1fr;
    align-items: start;
    gap: 0;
  }

  .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    color: var(--text-3);
    opacity: 0.4;
  }

  .step-arrow svg { width: 18px; height: 18px; }

  .guarantee-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .form-grid {
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ════════════════════════════════════════
   RESPONSIVE — DESKTOP (1024px+)
   ════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 1fr; padding: 0 60px; }
  .hero__copy { padding: 10vh 0; }
  .hero__visual { display: flex; }

  .bento {
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .bento-card--star { grid-row: 1 / 3; }
}

/* ════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero entrance — stagger on page load */
.hero__live,
.hero__h1,
.hero__sub,
.hero__ctas,
.hero__proof {
  opacity: 0;
  animation: fadeUp 0.65s ease-out forwards;
}

.hero__live   { animation-delay: 0.1s; }
.hero__h1     { animation-delay: 0.2s; }
.hero__sub    { animation-delay: 0.35s; }
.hero__ctas   { animation-delay: 0.5s; }
.hero__proof  { animation-delay: 0.6s; }

.hero__img-wrap {
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.35s forwards;
}

/* Header solidify on scroll */
.site-header { transition: background 0.3s, box-shadow 0.3s; }
.site-header.scrolled {
  background: rgba(8,11,10,0.96);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

/* Scroll reveal — single element fade-up */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger — children animate in sequence */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.stagger.visible > :nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.visible > :nth-child(2) { opacity: 1; transform: none; transition-delay: 0.08s; }
.stagger.visible > :nth-child(3) { opacity: 1; transform: none; transition-delay: 0.16s; }
.stagger.visible > :nth-child(4) { opacity: 1; transform: none; transition-delay: 0.24s; }
.stagger.visible > :nth-child(5) { opacity: 1; transform: none; transition-delay: 0.32s; }
.stagger.visible > :nth-child(n+6) { opacity: 1; transform: none; transition-delay: 0.38s; }

/* ════════════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
  .hero__live-dot { animation: none; }
  .hero__live, .hero__h1, .hero__sub, .hero__ctas, .hero__proof, .hero__img-wrap { animation: none; opacity: 1; }
  .hero__glow, .hero__float { animation: none; }
  .reveal, .stagger > * { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}

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