:root {
  --green: #4ed024;
  --green2: #3dbe1a;
  --green-glow: rgba(78,208,36,0.18);
  --navy: #0B101C;
  --navy2: #0C141F;
  --navy-mid: #131B2E;
  --gray: #EEF1F4;
  --gray2: #CBD2D9;
  --text: #17202A;
  --muted: #5A6572;
  --white: #FFFFFF;
  --surface: #F7F9FB;
  --card-border: rgba(78,208,36,0.15);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;

  --layout-nav-bg: rgba(11,16,28,0.85);
  --layout-nav-border: rgba(78,208,36,0.12);
  --layout-nav-button-bg: var(--green);
  --layout-nav-button-text: var(--navy);
  --layout-hero-bg: var(--navy);
  --layout-hero-text: var(--white);
  --layout-hero-muted: rgba(255,255,255,0.65);
  --layout-hero-accent: var(--green);
  --layout-hero-form-bg: rgba(11,16,28,0.92);
  --layout-hero-form-text: var(--white);
  --layout-hero-form-border: rgba(78,208,36,0.25);

  --layout-nav-button-hover-bg: var(--green2);
  --layout-hero-overlay-left: var(--navy);
  --layout-hero-overlay-bottom: var(--navy);
  --layout-hero-stats-value: var(--green);
  --layout-hero-stats-label: rgba(255,255,255,0.50);
  --layout-hero-action-button-bg: var(--green);
  --layout-hero-action-button-text: var(--navy);
  --layout-hero-action-button-hover-bg: var(--green2);
  --layout-hero-microcopy-text: rgba(255,255,255,0.35);
  --layout-hero-form-heading-text: var(--white);
  --layout-hero-form-sub-text: rgba(255,255,255,0.50);
  --layout-hero-field-bg: rgba(255,255,255,0.06);
  --layout-hero-field-text: var(--white);
  --layout-hero-field-placeholder: rgba(255,255,255,0.35);
  --layout-hero-field-border: rgba(255,255,255,0.10);
  --layout-hero-field-focus-bg: rgba(78,208,36,0.06);
  --layout-hero-field-focus-border: var(--green);
  --layout-hero-phone-prefix-bg: rgba(78,208,36,0.08);
  --layout-hero-phone-prefix-text: var(--green);
  --layout-hero-phone-prefix-border: rgba(255,255,255,0.14);
  --layout-hero-checkbox-text: rgba(255,255,255,0.45);
  --layout-hero-checkbox-accent: var(--green);
  --layout-hero-form-button-bg: var(--green);
  --layout-hero-form-button-text: var(--navy);
  --layout-hero-form-button-hover-bg: var(--green2);
  --layout-hero-form-feedback-text: var(--green);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--layout-nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--layout-nav-border);
}

.nav-logo img { height: 48px; object-fit: contain; }

.nav-cta {
  background: var(--layout-nav-button-bg);
  color: var(--layout-nav-button-text);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all .2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--layout-nav-button-hover-bg); transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-top: 80px;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(78,208,36,0.07) 0%, transparent 70%), var(--layout-hero-bg);
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(78,208,36,0.12);
  border: 1px solid rgba(78,208,36,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-eyebrow span.dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  color: var(--layout-hero-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--layout-hero-accent);
}

.hero h1 {
  transition: opacity .35s ease;
}

.hero h1.headline-fade {
  opacity: 0;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--layout-hero-muted);
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 44px;
}

.hero-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--layout-hero-stats-value);
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 12px;
  color: var(--layout-hero-stats-label);
  margin-top: 4px;
  line-height: 1.3;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--navy2);
}

.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  min-height: 100vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1.1s ease, transform 6s ease;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, var(--layout-hero-overlay-left) 0%, transparent 30%),
              linear-gradient(0deg, var(--layout-hero-overlay-bottom) 0%, transparent 25%);
}

.hero-form-float {
  color: var(--layout-hero-form-text);
  position: absolute;
  bottom: 48px;
  right: 40px;
  z-index: 3;
  width: 340px;
  background: var(--layout-hero-form-bg);
  border: 1px solid var(--layout-hero-form-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(78,208,36,0.08);
}

.hero-form-float h3 {
  color: var(--layout-hero-form-heading-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}

.hero-form-float p {
  font-size: 13px;
  color: var(--layout-hero-form-sub-text);
  margin-bottom: 24px;
  line-height: 1.5;
}


.hero-left > .btn-primary {
  background: var(--layout-hero-action-button-bg);
  color: var(--layout-hero-action-button-text);
}

.hero-left > .btn-primary:hover {
  background: var(--layout-hero-action-button-hover-bg);
}

.hero-left > p[style*="font-size:12px"] {
  color: var(--layout-hero-microcopy-text) !important;
}

.hero-form-float .phone-prefix {
  background: var(--layout-hero-phone-prefix-bg);
  color: var(--layout-hero-phone-prefix-text);
  border-right-color: var(--layout-hero-phone-prefix-border);
}

.hero-form-float .form-group input,
.hero-form-float .form-group select {
  background: var(--layout-hero-field-bg);
  border-color: var(--layout-hero-field-border);
  color: var(--layout-hero-field-text);
}

.hero-form-float .form-group input::placeholder {
  color: var(--layout-hero-field-placeholder);
}

.hero-form-float .form-group input:focus,
.hero-form-float .form-group select:focus {
  border-color: var(--layout-hero-field-focus-border);
  background: var(--layout-hero-field-focus-bg);
}

.hero-form-float .form-group select option {
  background: var(--layout-hero-form-bg);
  color: var(--layout-hero-field-text);
}

.hero-form-float .form-check input[type="checkbox"] {
  accent-color: var(--layout-hero-checkbox-accent);
}

.hero-form-float .form-check label {
  color: var(--layout-hero-checkbox-text);
}

.hero-form-float .btn-primary {
  background: var(--layout-hero-form-button-bg);
  color: var(--layout-hero-form-button-text);
}

.hero-form-float .btn-primary:hover {
  background: var(--layout-hero-form-button-hover-bg);
}

.hero-form-float .form-feedback {
  color: var(--layout-hero-form-feedback-text);
}

.form-group {
  margin-bottom: 12px;
}

.phone-field {
  position: relative;
}

.phone-prefix {
  position: absolute;
  left: 1px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: calc(100% - 2px);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  border-right: 1px solid rgba(255,255,255,0.14);
  background: rgba(78,208,36,0.08);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  pointer-events: none;
}

.phone-field input[type="tel"] {
  padding-left: 74px !important;
}

.form-group input, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
}

.form-group input::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group select:focus {
  border-color: var(--green);
  background: rgba(78,208,36,0.06);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.form-check input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
  flex-shrink: 0;
}

.form-check label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.btn-primary {
  display: block;
  width: 100%;
  background: var(--green);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  letter-spacing: 0.2px;
}

.btn-primary:hover {
  background: var(--green2);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(78,208,36,0.35);
}

.btn-primary:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}

.form-feedback {
  font-size: 13px;
  color: var(--green);
  margin-top: 10px;
  min-height: 1em;
  line-height: 1.4;
}

.form-feedback.erro { color: #ff7a7a; }

/* SECTIONS */
section {
  padding: 100px 80px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 620px;
}

/* SITUAÇÃO */
.situacao {
  background: var(--navy2);
  position: relative;
  overflow: hidden;
}

.situacao::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(78,208,36,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.situacao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}

.situacao-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.situacao-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.situacao-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(11,16,28,0.9);
  border: 1px solid rgba(78,208,36,0.3);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(10px);
}

.situacao-img-badge .val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
}

.situacao-img-badge .lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.situacao-content .phrase {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
}

.situacao-content .phrase em {
  color: var(--green);
  font-style: normal;
}

/* NÚMEROS */
.numeros {
  background: var(--green);
  color: var(--navy);
  padding: 80px;
}

.numeros .section-eyebrow { color: rgba(11,16,28,0.6); }
.numeros .section-title { color: var(--navy); }
.numeros .section-sub { color: rgba(11,16,28,0.65); }

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.num-card {
  background: transparent;
  padding: 18px 12px;
  text-align: center;
}

.num-card-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.num-card-lbl {
  font-size: 14px;
  color: rgba(11,16,28,0.7);
  line-height: 1.4;
}

/* PROBLEMA */
.problema {
  background: var(--navy);
}

.problema-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.prob-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.prob-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(78,208,36,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s;
}

.prob-card:hover {
  border-color: rgba(78,208,36,0.3);
  transform: translateY(-4px);
}

.prob-card:hover::before { opacity: 1; }

.prob-icon {
  width: 48px; height: 48px;
  background: rgba(78,208,36,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.prob-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.prob-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* IMPLICAÇÃO */
.implicacao {
  background: var(--navy2);
  text-align: center;
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.implicacao::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(78,208,36,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.impact-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 56px auto;
  max-width: 700px;
}

.impact-line {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  text-align: center;
  color: rgba(255,255,255,0.5);
  transition: color .4s;
}

.impact-line:last-child { border-bottom: none; }
.impact-line.active, .impact-line:hover {
  color: var(--white);
}

.impact-line strong {
  color: var(--green);
}

/* SOLUÇÃO */
.solucao {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  min-height: 80vh;
}

.solucao-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solucao-img {
  position: relative;
  overflow: hidden;
}

.solucao-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
}

.solucao-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 35%);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}

.feature-item::before {
  content: '';
  width: 20px; height: 20px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230B101C'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ONDE ATUA */
.onde {
  background: var(--navy2);
}

.onde-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 48px;
}

.onde-item {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: all .2s;
  cursor: default;
}

.onde-item:hover {
  background: rgba(78,208,36,0.1);
  border-color: rgba(78,208,36,0.35);
  color: var(--white);
}

.onde-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.onde-phrase {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  max-width: 400px;
  line-height: 1.4;
}

/* MODELO */
.modelo {
  background: var(--navy);
}

.modelo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.step-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: rgba(78,208,36,0.08);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
  user-select: none;
}

.step-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.step-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  position: relative;
}

.step-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: rgba(78,208,36,0.15);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
}

/* PUBLICO */
.publico {
  background: var(--green);
  color: var(--navy);
  padding: 100px 80px;
}

.publico .section-eyebrow { color: rgba(11,16,28,0.55); }
.publico .section-title { color: var(--navy); }
.publico .section-sub { color: rgba(11,16,28,0.65); }

.publico-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.publico-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.publico-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}

.publico-item-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.publico-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(11,16,28,0.3);
}

.publico-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* OBJEÇÕES */
.objecoes {
  background: var(--navy2);
}

.faq-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 860px;
}

.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: var(--navy-mid);
  border: none;
  padding: 22px 24px;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .2s;
}

.faq-q:hover { background: rgba(78,208,36,0.08); }
.faq-q.open { background: rgba(78,208,36,0.1); color: var(--green); }

.faq-arrow {
  flex-shrink: 0;
  transition: transform .2s;
  font-size: 18px;
  color: var(--green);
}

.faq-q.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  background: var(--navy-mid);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.faq-a.open {
  max-height: 200px;
  padding: 20px 24px;
}

/* CONVERSÃO FINAL */
.conversao {
  background: var(--navy);
  text-align: center;
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.conversao::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(78,208,36,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.conversao .section-title { color: var(--white); max-width: 700px; margin: 0 auto 16px; }
.conversao .section-sub { margin: 0 auto 48px; text-align: center; }

.conversao-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
  text-align: left;
}

.conversao-form .form-group { margin: 0; }

.conversao-form .form-group input {
  padding: 14px 16px;
  font-size: 15px;
}

.conversao-form .btn-primary {
  padding: 14px 24px;
  width: 100%;
  margin-top: 6px;
  border-radius: var(--radius-sm);
}

.conversao-microcopy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
}

/* FOOTER */
footer {
  background: var(--navy2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 80px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand img {
  width: auto;
  height: 32px;
  max-width: 180px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .2s;
}

.footer-col a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
  max-width: 700px;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 16px;
  transition: all .2s;
}

.social-btn:hover {
  background: rgba(78,208,36,0.15);
  color: var(--green);
}

/* LEGAL MODAL / LGPD */
.legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(3,7,13,0.72);
  backdrop-filter: blur(10px);
}

.legal-overlay.open,
.legal-modal.open,
.cookie-bar.open {
  display: block;
}

.legal-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1201;
  width: min(760px, calc(100vw - 32px));
  max-height: min(78vh, 760px);
  transform: translate(-50%, -50%);
  background: rgba(12,20,31,0.98);
  border: 1px solid rgba(78,208,36,0.22);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 32px 90px rgba(0,0,0,0.62);
  overflow: hidden;
}

.legal-modal[hidden],
.legal-overlay[hidden],
.cookie-bar[hidden] {
  display: none;
}

.legal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.72);
  cursor: pointer;
}

.legal-close:hover {
  background: rgba(78,208,36,0.16);
  color: var(--green);
}

.legal-eyebrow {
  margin-bottom: 10px;
}

.legal-modal h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  margin-bottom: 18px;
  padding-right: 44px;
}

.legal-content {
  max-height: calc(min(78vh, 760px) - 130px);
  overflow-y: auto;
  padding-right: 12px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.75;
}

.legal-content h4 {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  margin: 22px 0 8px;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 18px;
}

.cookie-bar {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1190;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px;
  background: rgba(12,20,31,0.96);
  border: 1px solid rgba(78,208,36,0.22);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  backdrop-filter: blur(18px);
}

.cookie-bar.open {
  display: flex;
}

.cookie-text {
  display: grid;
  gap: 4px;
  color: rgba(255,255,255,0.66);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-text strong {
  color: var(--white);
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-link,
.cookie-accept {
  border: 0;
  border-radius: 12px;
  min-height: 44px;
  padding: 0 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.cookie-link {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.78);
}

.cookie-accept {
  background: var(--green);
  color: var(--navy);
}

.cookie-link:hover {
  color: var(--green);
}

.cookie-accept:hover {
  background: var(--green2);
}

/* SCROLL ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   MOBILE 2026 — UI/UX de alto padrão
   ============================================================ */

/* Toques táteis e polimento global */
* { -webkit-tap-highlight-color: transparent; }

.btn-primary:active,
.nav-cta:active,
.faq-q:active,
.onde-item:active {
  transform: scale(0.97);
  transition: transform .08s ease;
}

/* Nav que se esconde ao rolar para baixo (mobile) */
nav { transition: transform .35s cubic-bezier(.4,0,.2,1), background .3s; }
nav.nav-hidden { transform: translateY(-110%); }

@media (max-width: 1024px) {
  /* ---------- HERO: imagem + formulário visíveis ---------- */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left { padding: 110px 24px 36px; }
  .hero-stats { gap: 20px; }

  .hero-right {
    display: block;
    position: relative;
    padding: 0 0 24px;
  }
  .hero-slider {
    position: relative;
    min-height: 300px;
  }
  .hero-img-main {
    min-height: auto;
    height: 300px;
    width: 100%;
    display: block;
    object-position: 68% center;
  }
  .hero-slide {
    height: 300px;
  }
  .hero-img-overlay {
    background: linear-gradient(180deg, var(--navy) 0%, transparent 35%),
                linear-gradient(0deg, var(--navy) 0%, transparent 45%);
  }
  /* Formulário vira card sobreposto à imagem */
  .hero-form-float {
    position: relative;
    bottom: auto; right: auto; left: auto;
    width: auto;
    margin: 20px 20px 0;
    z-index: 3;
  }

  /* ---------- Seções ---------- */
  section { padding: 72px 24px; }
  .numeros { padding: 72px 24px; }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); }
  .problema-cards { grid-template-columns: repeat(2, 1fr); }
  .situacao-grid { grid-template-columns: 1fr; gap: 36px; }
  .situacao-img img { height: 320px; }

  /* Solução: imagem volta a aparecer, acima do texto */
  .solucao { grid-template-columns: 1fr; }
  .solucao-img { min-height: 260px; order: -1; }
  .solucao-img img { min-height: 260px; height: 260px; }
  .solucao-img-overlay {
    background: linear-gradient(0deg, var(--navy) 0%, transparent 40%);
  }
  .solucao-content { padding: 56px 24px 72px; }

  .modelo-steps { grid-template-columns: repeat(2, 1fr); }

  /* Público: imagem volta a aparecer */
  .publico-grid { grid-template-columns: 1fr; gap: 36px; }
  .publico-img { display: block; }
  .publico-img img { height: 280px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { padding: 14px 20px; }
  .nav-logo img { height: 38px; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 76px; }

  /* Inputs: 16px evita zoom automático no iOS; alvo de toque ≥48px */
  .form-group input, .form-group select {
    font-size: 16px;
    min-height: 50px;
    border-radius: 14px;
  }
  .btn-primary { min-height: 52px; font-size: 16px; }
  .faq-q { min-height: 56px; font-size: 15px; text-align: left; }

  .hero-left { padding: 100px 20px 32px; }
  .hero h1 { font-size: clamp(32px, 9vw, 42px); letter-spacing: -1px; }
  .hero-sub { font-size: 15px; margin-bottom: 32px; }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin-bottom: 36px;
  }
  .hero-stat-val { font-size: 26px; }
  .hero-form-float { margin: 20px 16px 0; padding: 26px 22px; border-radius: 24px; }
  .hero-left > .btn-primary,
  .solucao-content > .btn-primary {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    justify-content: center;
    text-align: center;
  }

  nav {
    padding: 12px 12px;
    gap: 10px;
  }

  .nav-logo {
    display: flex;
    min-width: 0;
    flex: 0 1 auto;
  }

  .nav-logo img {
    height: 32px;
    width: auto;
    max-width: 132px;
  }

  .nav-cta {
    flex: 0 0 auto;
    max-width: 188px;
    padding: 9px 12px;
    font-size: 12px;
    letter-spacing: 0;
    text-align: center;
  }

  /* ---------- Carrosséis com scroll-snap ---------- */
  .modelo-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
  }

  .step-card {
    width: 100%;
    max-width: none;
    padding: 30px 24px;
  }

  .problema-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
  }

  .prob-card {
    width: 100%;
    max-width: none;
  }

  .numeros-grid { grid-template-columns: 1fr 1fr; }
  .num-card { padding: 28px 16px; }
  .num-card-val { font-size: 36px; }

  .onde-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .onde-item { font-size: 12px; padding: 14px 8px; }
  .onde-cta { flex-direction: column; align-items: stretch; gap: 16px; }
  .onde-cta .btn-primary { text-align: center; }

  .implicacao { padding: 72px 20px; }
  .impact-line { font-size: clamp(19px, 5.6vw, 26px); }

  .conversao { padding: 80px 20px 110px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  footer { padding: 48px 24px calc(110px + env(safe-area-inset-bottom)); }

  .legal-modal {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 40px);
    padding: 24px 18px 20px;
    border-radius: 20px;
  }

  .legal-content {
    max-height: calc(100vh - 174px);
    padding-right: 8px;
    font-size: 13px;
  }

  .cookie-bar {
    left: 12px;
    right: 12px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-link,
  .cookie-accept {
    flex: 1;
  }
}

/* ============================================================
   BARRA DE CTA FIXA (apenas mobile)
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 998;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(11,16,28,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(78,208,36,0.18);
  gap: 10px;
  transform: translateY(110%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.mobile-cta-bar.visible { transform: translateY(0); }

.mobile-cta-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  min-height: 52px;
  border-radius: 16px;
  text-decoration: none;
  letter-spacing: 0.2px;
  box-shadow: 0 6px 24px rgba(78,208,36,0.35);
}
.mobile-cta-main:active { transform: scale(0.97); }

.mobile-cta-wa {
  flex: 0 0 52px;
  height: 52px;
  background: rgba(37,211,102,0.14);
  border: 1px solid rgba(37,211,102,0.4);
  border-radius: 16px;
  color: #25D366;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-cta-wa:active { transform: scale(0.94); }

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  .wa-fab { display: none !important; }

  /* Modal do WhatsApp vira bottom sheet */
  .wa-overlay { z-index: 1000; }
  .wa-modal {
    bottom: 0; right: 0; left: 0;
    width: 100%;
    border-radius: 28px 28px 0 0;
    padding: 16px 24px calc(28px + env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.32,.72,.24,1), opacity .25s;
  }
  .wa-modal.open { transform: translateY(0); }
  .wa-modal::before {
    content: '';
    display: block;
    width: 44px; height: 5px;
    background: rgba(255,255,255,0.18);
    border-radius: 100px;
    margin: 0 auto 20px;
  }
}

@media (max-width: 768px) {
  .wa-fab { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .fade-in { opacity: 1 !important; transform: none !important; }
  .mobile-cta-bar { transform: none; }
  .mobile-cta-bar:not(.visible) { display: none; }
}

.onde-item i { display: block; font-size: 20px; color: #4ed024; margin-bottom: 8px; }
.onde-item { display: flex; flex-direction: column; align-items: center; gap: 0; padding: 18px 10px; }
.prob-icon i { color: #4ed024; font-size: 20px; }
.publico-item-icon i { font-size: 16px; }
.feature-item i { color: #4ed024; }
.wa-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  transition: transform .2s, box-shadow .2s;
  animation: wa-bounce 3s ease-in-out infinite;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
  animation: none;
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.wa-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1000;
  backdrop-filter: blur(4px);
}
.wa-overlay.open { display: block; }
.wa-modal {
  display: none;
  position: fixed;
  bottom: 110px;
  right: 32px;
  z-index: 1001;
  width: 340px;
  background: #0C141F;
  border: 1px solid rgba(78,208,36,0.25);
  border-radius: 24px;
  padding: 36px 28px 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(78,208,36,0.08);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}
.wa-modal.open {
  display: block;
  transform: translateY(0) scale(1);
  opacity: 1;
}
.wa-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: rgba(255,255,255,0.06);
  border: none;
  color: rgba(255,255,255,0.5);
  width: 30px; height: 30px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.wa-modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.wa-modal-icon {
  width: 52px; height: 52px;
  background: rgba(37,211,102,0.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: #25D366;
  margin-bottom: 16px;
}
.wa-modal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.wa-modal-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  margin-bottom: 22px;
}
.wa-btn-send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-size: 15px;
}
.wa-btn-send:hover {
  background: #1db954;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
