*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

:root {
  --black: #0d0f0d;
  --dark: #151a15;
  --dark2: #1e261e;
  --lime: #c8f000;
  --lime-dim: #a8cc00;
  --white: #f5f5f0;
  --grey: #8a9a8a;
  --grey2: #3a4a3a;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(13, 15, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 240, 0, 0.08);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
}

.nav-wordmark span {
  color: var(--lime);
}

nav a.nav-cta {
  background: var(--lime);
  color: var(--black);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 4px;
  transition:
    background 0.2s,
    transform 0.2s;
}

nav a.nav-cta:hover {
  background: var(--lime-dim);
  transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 80px 64px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 32px;
}

.hero-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--lime);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-headline .accent {
  color: var(--lime);
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(245, 245, 240, 0.65);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-primary {
  background: var(--lime);
  color: var(--black);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--lime-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 240, 0, 0.25);
}

.btn-ghost {
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.5);
  border-bottom: 1px solid rgba(245, 245, 240, 0.2);
  padding-bottom: 2px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: var(--white);
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-right-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}

.hero-right-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(200, 240, 0, 0.12) 0%,
    transparent 65%
  );
}

.hero-big-r {
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  user-select: none;
  width: clamp(280px, 30vw, 420px);
}

.hero-big-r img {
  width: 100%;
  height: auto;
}

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

.hero-stats {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 2px;
  z-index: 3;
}

.hero-stat {
  background: rgba(245, 245, 240, 0.04);
  border: 1px solid rgba(245, 245, 240, 0.08);
  padding: 20px 32px;
  text-align: center;
  flex: 1;
  max-width: 200px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-top: 4px;
}

/* ─── SECTION SHARED ─── */
section {
  padding: 100px 64px;
}

.section-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-tag::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--lime);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-lead {
  font-size: 18px;
  color: rgba(245, 245, 240, 0.6);
  line-height: 1.7;
  max-width: 600px;
}

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--lime);
  padding: 80px 64px;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13, 15, 13, 0.5);
  margin-bottom: 20px;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--black);
  text-transform: uppercase;
}

.manifesto-text em {
  font-style: normal;
  opacity: 0.45;
}

/* ─── PROBLEMA ─── */
.problema {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problema-left,
.problema-right {
  min-width: 0;
  overflow-x: auto;
}

.problema-desc {
  font-size: 17px;
  color: rgba(245, 245, 240, 0.65);
  line-height: 1.75;
  margin-bottom: 40px;
}

.gap-table {
  border-collapse: collapse;
  width: 100%;
}

.gap-table th {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: left;
  padding: 0 0 12px 0;
  border-bottom: 1px solid var(--grey2);
}

.gap-table td {
  padding: 16px 0;
  border-bottom: 1px solid rgba(58, 74, 58, 0.4);
  vertical-align: top;
}

.gap-table td:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--lime);
  width: 38%;
  padding-right: 20px;
}

.gap-table td:last-child {
  font-size: 14px;
  color: rgba(245, 245, 240, 0.6);
  line-height: 1.6;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ─── PARA QUEM ─── */
.para-quem {
  background: var(--black);
}

.para-quem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 64px;
}

.pq-card {
  background: var(--dark);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}

.pq-card:hover {
  transform: translateY(-4px);
}

.pq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--lime);
  transition: height 0.3s;
}

.pq-card:hover::before {
  height: 100%;
}

.pq-card.negative {
  background: rgba(30, 38, 30, 0.4);
  border: 1px solid rgba(58, 74, 58, 0.3);
}

.pq-card.negative:hover {
  transform: none;
}
.pq-card.negative::before {
  display: none;
}

.pq-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pq-label.yes {
  color: var(--lime);
}
.pq-label.no {
  color: var(--grey);
}

.pq-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--white);
}

.pq-card.negative .pq-title {
  color: rgba(245, 245, 240, 0.4);
}

.pq-list {
  list-style: none;
}

.pq-list li {
  font-size: 14px;
  color: rgba(245, 245, 240, 0.6);
  padding: 8px 0;
  border-bottom: 1px solid rgba(58, 74, 58, 0.3);
  line-height: 1.5;
  display: flex;
  gap: 10px;
}

.pq-list li::before {
  content: "→";
  color: var(--lime);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

.pq-card.negative .pq-list li::before {
  content: "×";
  color: rgba(245, 245, 240, 0.2);
}

/* ─── PILARES ─── */
.pilares {
  background: var(--dark2);
  padding: 100px 64px;
}

.pilares-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.pilares-header > * {
  min-width: 0;
}

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

.pilar-card {
  background: var(--dark);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.pilar-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: var(--lime-dim);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 16px;
  letter-spacing: -0.04em;
}

.pilar-icon {
  width: 40px;
  height: 40px;
  background: rgba(200, 240, 0, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pilar-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--lime);
}

.pilar-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.pilar-desc {
  font-size: 13px;
  color: rgba(245, 245, 240, 0.5);
  line-height: 1.65;
}

/* ─── ÁREAS ─── */
.areas {
  background: var(--black);
  padding: 100px 64px;
}

.areas-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.areas-header > * {
  min-width: 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.area-item {
  background: var(--dark);
  padding: 24px 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: background 0.2s;
  cursor: default;
}

.area-item:hover {
  background: var(--dark2);
}

.area-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  flex-shrink: 0;
  min-width: 24px;
  margin-top: 2px;
}

.area-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: rgba(245, 245, 240, 0.85);
}

/* ─── COMPARATIVO ─── */
.comparativo {
  background: var(--dark);
  padding: 100px 64px;
}

.comp-table-wrap {
  margin-top: 64px;
  overflow-x: auto;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.comp-table th {
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comp-table th:first-child {
  color: var(--grey);
  width: 20%;
}
.comp-table th:nth-child(2) {
  color: var(--grey);
  background: rgba(58, 74, 58, 0.2);
}
.comp-table th:last-child {
  color: var(--lime);
  background: rgba(200, 240, 0, 0.06);
}

.comp-table td {
  padding: 18px 24px;
  font-size: 14px;
  line-height: 1.55;
  border-top: 1px solid rgba(58, 74, 58, 0.4);
  vertical-align: top;
}

.comp-table td:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.comp-table td:nth-child(2) {
  background: rgba(58, 74, 58, 0.1);
  color: rgba(245, 245, 240, 0.5);
}

.comp-table td:last-child {
  background: rgba(200, 240, 0, 0.04);
  color: rgba(245, 245, 240, 0.85);
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ─── DEPOIMENTOS ─── */
.depoimentos {
  background: var(--black);
  padding: 100px 64px;
}

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.dep-card {
  background: var(--dark);
  padding: 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.dep-quote {
  font-size: 36px;
  color: var(--lime);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 16px;
}

.dep-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 245, 240, 0.75);
  flex: 1;
  margin-bottom: 32px;
}

.dep-author {
  border-top: 1px solid var(--grey2);
  padding-top: 20px;
}

.dep-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}

.dep-role {
  font-size: 12px;
  color: var(--grey);
  margin-top: 2px;
}

.dep-disclaimer {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: rgba(245, 245, 240, 0.25);
  font-style: italic;
}

/* ─── FORMULÁRIO ─── */
.contato {
  background: var(--dark2);
  padding: 100px 64px;
}

.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contato-left,
.contato-right {
  min-width: 0;
}

.contato-tagline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.contato-tagline .accent {
  color: var(--lime);
}

.contato-desc {
  font-size: 16px;
  color: rgba(245, 245, 240, 0.55);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contato-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contato-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(245, 245, 240, 0.55);
}

.contato-meta-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--lime);
  flex-shrink: 0;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark);
  border: 1px solid var(--grey2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 245, 240, 0.25);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--lime);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select option {
  background: var(--dark);
}

.form-submit {
  grid-column: 1 / -1;
  background: var(--lime);
  color: var(--black);
  border: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--lime-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 240, 0, 0.2);
}

.form-note {
  grid-column: 1 / -1;
  font-size: 12px;
  color: rgba(245, 245, 240, 0.3);
  text-align: center;
  line-height: 1.5;
}

/* success / error state */
.form-success {
  display: none;
  background: rgba(200, 240, 0, 0.08);
  border: 1px solid rgba(200, 240, 0, 0.3);
  padding: 32px;
  border-radius: 4px;
  text-align: center;
}

.form-success.visible {
  display: block;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 15px;
  color: rgba(245, 245, 240, 0.6);
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid var(--grey2);
  padding: 40px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--white);
}

.footer-logo span {
  color: var(--lime);
}

.footer-copy {
  font-size: 12px;
  color: rgba(245, 245, 240, 0.25);
}

.footer-wpp {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 13px;
  color: rgba(245, 245, 240, 0.5);
  transition: color 0.2s;
}

.footer-wpp:hover {
  color: var(--lime);
}
.footer-wpp svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ─── TICKER ─── */
.ticker {
  background: var(--lime);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 40px;
}

.ticker-sep {
  color: rgba(13, 15, 13, 0.3);
  padding: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav {
    padding: 16px 32px;
  }
  section {
    padding: 80px 32px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 120px 32px 60px;
  }
  .hero-right {
    height: 340px;
  }
  .hero-big-r {
    width: 220px;
  }
  .problema {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 32px;
  }
  .para-quem-grid {
    grid-template-columns: 1fr;
  }
  .pilares-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pilares-grid {
    grid-template-columns: 1fr 1fr;
  }
  .areas-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dep-grid {
    grid-template-columns: 1fr;
  }
  .contato-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .manifesto {
    padding: 60px 32px;
  }
  .pilares {
    padding: 80px 32px;
  }
  .areas {
    padding: 80px 32px;
  }
  .comparativo {
    padding: 80px 32px;
  }
  .depoimentos {
    padding: 80px 32px;
  }
  .contato {
    padding: 80px 32px;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 14px 20px;
  }
  section {
    padding: 64px 20px;
  }
  .hero-left {
    padding: 100px 20px 48px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .pilares-grid {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .manifesto {
    padding: 48px 20px;
  }
  .pilares {
    padding: 64px 20px;
  }
  .areas {
    padding: 64px 20px;
  }
  .comparativo {
    padding: 64px 20px;
  }
  .depoimentos {
    padding: 64px 20px;
  }
  .contato {
    padding: 64px 20px;
  }
  footer {
    padding: 32px 20px;
  }
}
