/* ─────────────────────────────────────────────────────────
   FARKY — Landing Page Styles
   Paleta: Cinza escuro + Branco + Laranja
   ───────────────────────────────────────────────────────── */

/* ═══ RESET & BASE ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #111111;
  --bg-2:         #181818;
  --bg-card:      #1E1E1E;
  --bg-card-2:    #232323;
  --orange:       #FF5500;
  --orange-h:     #FF6A1A;
  --orange-glow:  rgba(255, 85, 0, 0.12);
  --orange-border:rgba(255, 85, 0, 0.25);
  --white:        #FFFFFF;
  --text:         #F0EDE8;
  --text-muted:   #888880;
  --text-faint:   #555550;
  --border:       rgba(255,255,255,0.07);
  --border-2:     rgba(255,255,255,0.12);
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 32px rgba(0,0,0,0.4);
  --shadow-orange:0 4px 40px rgba(255,85,0,0.2);
  --font-display: 'Urbanist', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-w:        1200px;
  --transition:   0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

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; }
a { text-decoration: none; color: inherit; }

/* ═══ CONTAINER ═══ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══ TYPOGRAPHY ═══ */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; }

em { font-style: normal; color: var(--orange); }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  box-shadow: 0 2px 20px rgba(255,85,0,0.35);
}
.btn--primary:hover {
  background: var(--orange-h);
  box-shadow: 0 4px 32px rgba(255,85,0,0.5);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 14px 28px;
  border: 1px solid var(--border-2);
}
.btn--ghost:hover {
  color: var(--text);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

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

/* ═══ PILL ═══ */
.pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--orange-glow);
  color: var(--orange);
  border: 1px solid var(--orange-border);
}
.pill--light {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  border-color: var(--border-2);
}

/* ═══ SECTION BASE ═══ */
.section { padding: 100px 0; }

.section--dark {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ═══ SEÇÃO CLARA com corte diagonal ═══ */
.section--light {
  background: #F2F1EE;
  position: relative;
  z-index: 2;
  padding: 150px 0 130px;
  clip-path: polygon(0 56px, 100% 0, 100% calc(100% - 56px), 0 100%);
  margin: -28px 0;
}

/* textos na seção clara */
.section--light .section__title,
.section--light h2 { color: #111111; }

.section--light .section__sub,
.section--light p { color: #555555; }

.section--light .pill {
  background: rgba(255, 85, 0, 0.1);
  color: var(--orange);
  border-color: rgba(255, 85, 0, 0.25);
}
.section--light .pill--light {
  background: rgba(0,0,0,0.06);
  color: #444444;
  border-color: rgba(0,0,0,0.12);
}

/* method steps na seção clara */
.section--light .method__grid { border-color: rgba(0,0,0,0.06); }
.section--light .method__step {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.section--light .method__step:hover {
  background: #FFFFFF;
  border-color: rgba(255,85,0,0.35);
  box-shadow: 0 8px 40px rgba(255,85,0,0.1);
}
.section--light .method__num { color: rgba(255,85,0,0.9); }
.section--light .method__content h3 { color: #111111; }
.section--light .method__content p  { color: #555555; }

/* form na seção clara */
.section--light .form__left h2    { color: #111111; }
.section--light .form__left h2 em { color: var(--orange); font-style: normal; }
.section--light .form__left p     { color: #555555; }
.section--light .form__bullets li { color: #444444; }
.section--light .form__bullets li svg { stroke: var(--orange); }

.section--light .form__right {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 24px 80px rgba(0,0,0,0.1);
}
.section--light .form-group label { color: #333333; }
.section--light .form-group input,
.section--light .form-group select {
  background: #F7F6F3;
  border-color: rgba(0,0,0,0.1);
  color: #111111;
}
.section--light .form-group input::placeholder { color: #AAAAAA; }
.section--light .form-group select option      { background: #FFFFFF; color: #111111; }
.section--light .form-group input:focus,
.section--light .form-group select:focus {
  border-color: var(--orange);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255,85,0,0.1);
}
.section--light .form__disclaimer { color: #999999; }


/* ── Processo / Metodologia Aplicada ── */
.section--processo {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.processo__img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 0 80px rgba(255, 85, 0, 0.08), 0 32px 64px rgba(0,0,0,0.5);
  background: #0e0e0e;
}

.processo__img {
  width: 100%;
  height: auto;
  display: block;
  padding: 40px 60px;
  filter: drop-shadow(0 0 24px rgba(255,85,0,0.15));
}

@media (max-width: 768px) {
  .processo__img {
    padding: 24px 16px;
  }
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
}

.section__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══ LOGO IMAGE ═══ */
.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  transition: opacity var(--transition);
}
.nav__logo-img:hover { opacity: 0.85; }

/* ═══ ANIMATE ON SCROLL ═══ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════ NAV ═══ */
.nav {
  display: none;
}
.mobile-menu { display: none !important; }
.nav.scrolled {
  background: rgba(17,17,17,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav__logo span { color: var(--orange); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a:not(.btn) {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition);
}
.nav__links a:not(.btn):hover { color: var(--text); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--white); }
.mobile-link--cta {
  background: var(--orange);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  text-align: center;
  border: none;
  font-weight: 600;
  margin-top: 8px;
}

/* ═══════════════════════════════════════ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}

/* LEFT */
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 80px 64px 80px;
  position: relative;
  z-index: 2;
}

.hero__headline {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.hero__headline em {
  display: inline;
  color: var(--orange);
  font-style: normal;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 460px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stats (compacto, 2 itens) */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 20px 32px;
  width: fit-content;
  margin-top: 8px;
}

.hero__stats .stat__divider {
  width: 1px;
  height: 40px;
  background: var(--border-2);
  margin: 0 28px;
}

.hero__stats .stat {
  align-items: flex-start;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat__num sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
}

/* RIGHT — foto hero */
.hero__right {
  position: relative;
  overflow: hidden;
}

.hero__img-frame {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Gradiente da esquerda para fundir com o fundo */
.hero__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    rgba(17,17,17,0.4) 30%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

/* Gradiente inferior */
.hero__right::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Tag flutuante */
.hero__img-tag {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.hero__img-tag svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
}

/* Linha laranja vertical decorativa */
.hero__accent-line {
  position: absolute;
  top: 15%;
  bottom: 15%;
  left: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  z-index: 2;
}

/* Responsive hero */
@media (max-width: 900px) {
  .hero__split {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
  }
  .hero__left {
    padding: 32px 20px 40px;
    order: 2;
  }
  .hero__right {
    order: 1;
    height: 118vw;
    min-height: 420px;
    max-height: 560px;
  }
  .hero__img-frame {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .hero__img {
    object-position: center 22%;
  }
  .hero__right::after {
    height: 44px;
    background: linear-gradient(to top, var(--bg) 0%, rgba(17,17,17,0.4) 70%, transparent 100%);
  }
  .hero__right::before {
    background: linear-gradient(to right, rgba(17,17,17,0.2) 0%, transparent 40%);
  }
  .hero__img-tag {
    display: none;
  }
  .hero__right::before {
    background: linear-gradient(to top, var(--bg) 0%, transparent 50%);
  }
  .hero__img-tag { bottom: 20px; }
  .hero__headline { font-size: clamp(1.2rem, 4.5vw, 1.8rem); }
  .hero__stats { flex-direction: row; justify-content: center; gap: 32px; padding: 16px 20px; width: 100%; box-sizing: border-box; }
  .stat__divider { display: none; }
}

.stat__divider {
  width: 1px;
  height: 48px;
  background: var(--border-2);
}

/* ═══════════════════════════════════════ SERVIÇOS ═══ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Last 2 cards centered in second row */
.service-card:nth-child(4) { grid-column: 1; }
.service-card:nth-child(5) { grid-column: 2; }

/* When 5 cards: make last row centered */
@media (min-width: 769px) {
  .services__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .service-card:nth-child(1) { grid-column: 1 / 3; }
  .service-card:nth-child(2) { grid-column: 3 / 5; }
  .service-card:nth-child(3) { grid-column: 5 / 7; }
  .service-card:nth-child(4) { grid-column: 2 / 4; }
  .service-card:nth-child(5) { grid-column: 4 / 6; }
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
}
.service-card:hover::before { opacity: 1; }

.service-card--featured {
  border-color: var(--orange-border);
  background: linear-gradient(135deg, rgba(255,85,0,0.08) 0%, var(--bg-card) 60%);
}
.service-card--featured::before { opacity: 0.5; }

.service-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--orange-glow);
  border: 1px solid var(--orange-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  position: relative;
}
.service-card__icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════ METODOLOGIA ═══ */
.method__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.method__step {
  background: var(--bg-2);
  padding: 48px 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: background var(--transition);
  position: relative;
}
.method__step:hover { background: var(--bg-card); }

.method__step::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity var(--transition);
}
.method__step:hover::after { opacity: 1; }

.method__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.method__step:hover .method__num { opacity: 0.6; }

.method__content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.method__content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════ CASES ═══ */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}
.case-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.case-card--featured {
  border-color: var(--orange-border);
  background: linear-gradient(160deg, rgba(255,85,0,0.06) 0%, var(--bg-card) 50%);
  box-shadow: 0 0 0 1px var(--orange-border);
}

.case-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.case-card__company {
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-card__company strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}
.case-card__company span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.case-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange-glow);
  border: 1px solid var(--orange-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange);
  flex-shrink: 0;
}

.case-card__result {
  text-align: right;
  flex-shrink: 0;
}
.result__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.result__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.case-card__quote {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  padding-left: 16px;
  border-left: 2px solid var(--orange-border);
  flex-grow: 1;
}

.case-card__author {
  font-size: 0.82rem;
  color: var(--text-faint);
  font-weight: 500;
}

/* ═══════════════════════════════════════ FORM ═══ */
.section--form {
  padding: 100px 0;
}

.form__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.form__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}
.form__left p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.form__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.form__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.form__bullets li svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

.form__right {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--text-faint); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-2); color: var(--text); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.form__disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: -4px;
}

.form__success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.form__success svg {
  width: 56px;
  height: 56px;
  color: var(--orange);
}
.form__success h3 {
  font-size: 1.4rem;
  color: var(--white);
}
.form__success p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════ SOBRE ═══ */
.sobre__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.sobre__img-wrap {
  position: relative;
}

.sobre__img {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.sobre__img-wrap:hover .sobre__img { filter: grayscale(0%); }

.sobre__img-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 24px rgba(255,85,0,0.4);
}

.sobre__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sobre__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

.sobre__content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.sobre__numbers {
  display: flex;
  gap: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 4px 0;
}

.sobre__num strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.sobre__num strong sup {
  font-size: 1rem;
  vertical-align: super;
}
.sobre__num span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

@media (max-width: 768px) {
  .sobre__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sobre__img { max-width: 100%; }
  .sobre__img-badge { left: 16px; }
  .sobre__numbers { gap: 24px; }
}

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

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 24px;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 260px;
}
.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 28px;
}
.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--text); }

.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer__social a:hover {
  color: var(--orange);
  border-color: var(--orange-border);
  background: var(--orange-glow);
}
.footer__social a svg { width: 18px; height: 18px; }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-faint);
  text-align: center;
}

/* ═══════════════════════════════════════ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero__stats { padding: 24px 32px; }
  .stat__num { font-size: 1.8rem; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  /* Nav */
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  /* Hero — sobrescreve o padding 64px com valor mobile seguro */
  .hero { padding: 0; overflow: hidden; }
  .hero__left {
    padding: 8px 20px 40px !important;
    gap: 14px;
  }
  .hero__headline {
    font-size: clamp(1.55rem, 6vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
  }
  .hero__sub { font-size: 0.8rem; line-height: 1.5; max-width: 100%; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; justify-content: center; }
  .hero__stats {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    padding: 16px 20px;
    box-sizing: border-box;
  }
  .stat__divider { display: none; }
  .stat { text-align: center; }

  /* Pill badge */
  .pill { font-size: 0.7rem; padding: 6px 14px; }

  /* Section header */
  .section__header { margin-bottom: 40px; }
  .section__title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }
  .service-card:nth-child(n) { grid-column: auto; }
  .service-card { padding: 28px 24px; }

  /* Processo */
  .processo__img { padding: 16px 0; }

  /* Method */
  .method__grid { grid-template-columns: 1fr; }
  .method__step { padding: 28px 24px; }

  /* Cases */
  .cases__grid { grid-template-columns: 1fr; }
  .case-card { padding: 20px; }
  .case-card__company span { white-space: nowrap; }
  .case-card__company strong { white-space: nowrap; }
  .result__num { font-size: 1.5rem; }

  /* Sobre */
  .sobre__wrapper { grid-template-columns: 1fr; gap: 32px; }
  .sobre__img { max-width: 100%; }
  .sobre__img-badge { left: 16px; }
  .sobre__numbers { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .sobre__content { text-align: center; align-items: center; }
  .sobre__content .btn { width: 100%; text-align: center; justify-content: center; }

  /* Form */
  .form__wrapper { grid-template-columns: 1fr; gap: 32px; }
  .form__right { padding: 24px 20px; width: 100%; box-sizing: border-box; max-width: 100%; }
  .form__left { padding: 0 20px; text-align: center; align-items: center; }
  .form__left h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .form__bullets { text-align: left; align-self: stretch; }

  /* Sobre */
  .sobre__num strong { font-size: 1.5rem; }

  /* Logo — reduz tamanho mobile */
  .nav__logo-img { height: 28px; mix-blend-mode: screen; }

  /* Footer */
  .footer__inner { flex-direction: column; text-align: center; align-items: center; }
  .footer__brand { align-items: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer__logo-img { height: 28px; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: clamp(1.45rem, 5.8vw, 1.95rem); }
  .stat { text-align: center; }
  .hero__stats { flex-direction: row; justify-content: center; gap: 28px; }
  .section__title { font-size: 1.6rem; }
  .method__num { font-size: 4rem; }
}
