/* ================================================================
   Maz — main.css
   Design system tokens + site styles
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=DM+Mono:ital,wght@0,400;0,500;1,400&display=swap');

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --maz-black:         #0F0F0F;
  --maz-dark:          #141414;
  --maz-surface:       #1A1A1A;
  --maz-surface-2:     #222222;
  --maz-white:         #FFFFFF;
  --maz-off-white:     #F5F5F5;
  --maz-border:        #2A2A2A;
  --maz-border-light:  #E5E5E5;
  --maz-text:          #FFFFFF;
  --maz-text-sec:      #A0A0A0;
  --maz-text-muted:    #666666;
  --maz-text-dark:     #1A1A1A;
  --maz-text-dark-2:   #555555;
  --maz-orange:        #FF5500;
  --maz-orange-mid:    #FD4C02;
  --maz-orange-deep:   #F72609;
  --maz-orange-light:  #FF7733;
  --maz-orange-bg:     rgba(255, 85, 0, 0.08);
  --maz-green:         #22C55E;
  --maz-gradient:      linear-gradient(135deg, #FF5500 0%, #FD4C02 50%, #F72609 100%);
  --maz-gradient-h:    linear-gradient(90deg,  #FF5500 0%, #FD4C02 50%, #F72609 100%);

  --font:      'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;

  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 999px;

  --shadow-card:          0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-card-dark:     0 4px 16px rgba(0, 0, 0, 0.6);
  --shadow-orange:        0 4px 24px rgba(255, 85, 0, 0.25);
  --shadow-orange-strong: 0 8px 48px rgba(255, 85, 0, 0.35);

  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 150ms;
  --dur-base: 200ms;
  --dur-slow: 350ms;
}

/* ── Theme: Dark (default) ──────────────────────────────────── */
:root,
[data-theme="dark"] {
  --bg:             #0F0F0F;
  --bg-elevated:    #141414;
  --bg-surface:     #1A1A1A;
  --bg-input:       #222222;
  --bg-alt:         #FFFFFF;
  --bg-alt-2:       #F5F5F5;

  --text:           #FFFFFF;
  --text-sec:       #A0A0A0;
  --text-muted:     #666666;
  --text-on-alt:    #1A1A1A;
  --text-sec-alt:   #555555;

  --border:         #2A2A2A;
  --border-alt:     #E5E5E5;

  --nav-bg:         rgba(20, 20, 20, 0.0);
  --nav-bg-scroll:  rgba(20, 20, 20, 0.94);
  --nav-border:     #1A1A1A;
  --nav-text:       #A0A0A0;
  --nav-text-hover: #FFFFFF;

  --s-dark-bg:      #0F0F0F;
  --s-dark-bg-2:    #141414;
  --s-dark-text:    #FFFFFF;
  --s-dark-sec:     #A0A0A0;
  --s-dark-border:  #2A2A2A;
  --s-dark-surface: #1A1A1A;

  --s-light-bg:     #FFFFFF;
  --s-light-bg-2:   #F5F5F5;
  --s-light-text:   #1A1A1A;
  --s-light-sec:    #555555;
  --s-light-border: #E5E5E5;

  --logo-dark:  block;
  --logo-light: none;
}

/* ── Theme: Light ───────────────────────────────────────────── */
[data-theme="light"] {
  --bg:             #FFFFFF;
  --bg-elevated:    #F5F5F5;
  --bg-surface:     #EFEFEF;
  --bg-input:       #F5F5F5;
  --bg-alt:         #F0F0F0;
  --bg-alt-2:       #E8E8E8;

  --text:           #1A1A1A;
  --text-sec:       #555555;
  --text-muted:     #999999;
  --text-on-alt:    #1A1A1A;
  --text-sec-alt:   #555555;

  --border:         #E5E5E5;
  --border-alt:     #D0D0D0;

  --nav-bg:         rgba(255, 255, 255, 0.0);
  --nav-bg-scroll:  rgba(255, 255, 255, 0.94);
  --nav-border:     #E5E5E5;
  --nav-text:       #666666;
  --nav-text-hover: #1A1A1A;

  --s-dark-bg:      #F0F0F0;
  --s-dark-bg-2:    #F5F5F5;
  --s-dark-text:    #1A1A1A;
  --s-dark-sec:     #555555;
  --s-dark-border:  #E0E0E0;
  --s-dark-surface: #FFFFFF;

  --s-light-bg:     #FFFFFF;
  --s-light-bg-2:   #FAFAFA;
  --s-light-text:   #1A1A1A;
  --s-light-sec:    #555555;
  --s-light-border: #E5E5E5;

  --logo-dark:  none;
  --logo-light: block;
}

/* ── Base ───────────────────────────────────────────────────── */
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background var(--dur-slow) var(--ease), color var(--dur-slow) var(--ease);
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 60px;
  background: var(--nav-bg);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  transition: background var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              backdrop-filter var(--dur-base) var(--ease);
}

.nav.scrolled {
  background: var(--nav-bg-scroll);
  border-color: var(--border);
  backdrop-filter: blur(16px);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 26px; width: auto; }
.nav__logo-dark  { display: var(--logo-dark, block); }
.nav__logo-light { display: var(--logo-light, none); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  margin-left: 16px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--nav-text);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active { color: var(--nav-text-hover); }

/* Dropdown */
.nav__dropdown { position: relative; }

.nav__dropdown-btn {
  font-size: 14px;
  font-weight: 500;
  color: var(--nav-text);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--dur-fast), background var(--dur-fast);
  cursor: pointer;
}

.nav__dropdown-btn:hover { color: var(--nav-text-hover); }

.nav__dropdown-btn svg {
  width: 14px; height: 14px;
  transition: transform var(--dur-fast);
}

.nav__dropdown:hover .nav__dropdown-btn svg,
.nav__dropdown:focus-within .nav__dropdown-btn svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--dur-base) var(--ease),
              visibility var(--dur-base),
              transform var(--dur-base) var(--ease);
  box-shadow: var(--shadow-card-dark);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sec);
  border-radius: var(--r-sm);
  transition: background var(--dur-fast), color var(--dur-fast);
}

.nav__dropdown-item:hover {
  background: var(--bg-surface);
  color: var(--text);
}

.nav__dropdown-item .item-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--maz-orange);
  display: block;
  margin-bottom: 2px;
}

/* Nav actions (right side) */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sec);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.theme-toggle:hover {
  color: var(--text);
  background: var(--bg-surface);
}

.theme-toggle svg { width: 18px; height: 18px; }

.icon-moon { display: none; }
.icon-sun  { display: block; }
[data-theme="light"] .icon-moon { display: block; }
[data-theme="light"] .icon-sun  { display: none; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-fast);
}

.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  border-radius: var(--r-sm);
  padding: 10px 22px;
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--maz-gradient);
  color: #FFFFFF;
  box-shadow: var(--shadow-orange);
}

.btn--primary:hover {
  opacity: 0.9;
  box-shadow: var(--shadow-orange-strong);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #555;
}

[data-theme="light"] .btn--ghost:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: #aaa;
}

.btn--ghost-dark {
  background: transparent;
  color: var(--maz-text-dark);
  border: 1px solid var(--maz-border-light);
}

.btn--ghost-dark:hover {
  border-color: #aaa;
  background: rgba(0, 0, 0, 0.04);
}

.btn--sm { font-size: 13px; padding: 7px 16px; }
.btn--lg { font-size: 16px; padding: 14px 32px; }

/* ── Sections ───────────────────────────────────────────────── */
.section {
  padding: 96px 0;
}

.section--sm { padding: 64px 0; }

.section-dark {
  background: var(--s-dark-bg);
}

.section-dark-alt {
  background: var(--s-dark-bg-2);
}

.section-light {
  background: var(--s-light-bg);
}

.section-light-alt {
  background: var(--s-light-bg-2);
}

/* ── Typography helpers ──────────────────────────────────────── */
.overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maz-orange);
  margin-bottom: 12px;
}

.section-dark .heading,
.section-dark-alt .heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--s-dark-text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-light .heading,
.section-light-alt .heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--s-light-text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-dark .body-text,
.section-dark-alt .body-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--s-dark-sec);
}

.section-light .body-text,
.section-light-alt .body-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--s-light-sec);
}

.text-gradient {
  background: var(--maz-gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  background: var(--s-dark-bg);
  position: relative;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,85,0,0.12) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero__content { position: relative; z-index: 1; max-width: 760px; }

.hero__headline {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 700;
  color: var(--s-dark-text);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 400;
  color: var(--s-dark-sec);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__metrics {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid var(--s-dark-border);
  display: flex;
  gap: 0;
}

.hero__metric {
  flex: 1;
  padding: 28px 40px;
  border-right: 1px solid var(--s-dark-border);
}

.hero__metric:last-child { border-right: none; }

.hero__metric-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--maz-orange);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.hero__metric-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--s-dark-sec);
  line-height: 1.4;
  max-width: 140px;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  border-radius: var(--r-md);
  padding: 28px;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}

.card--dark {
  background: var(--s-dark-surface);
  border: 1px solid var(--s-dark-border);
}

.card--dark:hover {
  transform: translateY(-2px);
  border-color: #444;
}

.card--light {
  background: var(--s-light-bg);
  border: 1px solid var(--s-light-border);
}

.card--light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: #ccc;
}

.card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--maz-orange);
  margin-bottom: 12px;
}

.card--dark .card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--s-dark-text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card--light .card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--s-light-text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card--dark .card__text {
  font-size: 14px;
  color: var(--s-dark-sec);
  line-height: 1.65;
}

.card--light .card__text {
  font-size: 14px;
  color: var(--s-light-sec);
  line-height: 1.65;
}

/* ── Grid layouts ───────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; }
.grid-2-1 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }

/* ── Badge ──────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
}

.badge--orange {
  background: var(--maz-orange-bg);
  color: var(--maz-orange);
  border: 1px solid rgba(255,85,0,0.2);
}

/* ── How it works (steps) ───────────────────────────────────── */
.steps { display: flex; gap: 0; position: relative; }

.step {
  flex: 1;
  padding: 32px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 40px;
  height: 1px;
  width: 48px;
  background: var(--s-dark-border);
}

.step__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--maz-orange);
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.step__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--s-dark-text);
  margin-bottom: 10px;
}

.step__text {
  font-size: 14px;
  color: var(--s-dark-sec);
  line-height: 1.65;
}

/* ── Depoimentos ────────────────────────────────────────────── */
.depo { position: relative; }

.depo__quote {
  font-size: 14px;
  color: var(--s-dark-sec);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.depo__quote::before { content: '"'; font-size: 20px; color: var(--maz-orange); }
.depo__quote::after  { content: '"'; font-size: 20px; color: var(--maz-orange); }

.depo__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--s-dark-text);
  margin-bottom: 2px;
}

.depo__role {
  font-size: 12px;
  color: var(--s-dark-sec);
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--s-light-border);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--s-light-text);
  text-align: left;
  gap: 16px;
}

.faq-btn:hover { color: var(--maz-orange); }

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--s-light-sec);
  transition: transform var(--dur-base) var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--maz-orange); }

.faq-body {
  font-size: 14px;
  color: var(--s-light-sec);
  line-height: 1.7;
  padding-bottom: 20px;
  display: none;
}

.faq-item.open .faq-body { display: block; }

/* ── CTA section (orange) ───────────────────────────────────── */
.section-cta {
  background: var(--maz-gradient);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.section-cta .container { position: relative; z-index: 1; }

.section-cta .cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.section-cta .cta-headline {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-cta .cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--cta-white {
  background: #FFFFFF;
  color: var(--maz-orange);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--r-sm);
  transition: opacity var(--dur-fast), transform var(--dur-fast);
}

.btn--cta-white:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn--cta-ghost {
  background: transparent;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.35);
  transition: background var(--dur-fast), border-color var(--dur-fast);
}

.btn--cta-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--maz-gradient);
  padding: 64px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand .tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 220px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  transition: background var(--dur-fast);
}

.footer__social-link:hover { background: rgba(255,255,255,0.25); }

.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer__link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
  transition: color var(--dur-fast);
}

.footer__link:hover { color: #FFFFFF; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast);
}

.footer__legal a:hover { color: rgba(255,255,255,0.85); }

/* ── Contact form ────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--s-light-text);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--s-light-border);
  background: var(--s-light-bg);
  color: var(--s-light-text);
  font-size: 14px;
  transition: border-color var(--dur-fast);
  outline: none;
}

.form-input:focus { border-color: var(--maz-orange); }

.form-input::placeholder { color: #aaa; }

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--s-light-sec);
  margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 1px;
  cursor: pointer;
  accent-color: var(--maz-orange);
  flex-shrink: 0;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

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

.form-success__icon {
  font-size: 48px;
  color: var(--maz-green);
  margin-bottom: 16px;
}

.form-success__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--s-light-text);
  margin-bottom: 8px;
}

.form-success__text {
  font-size: 14px;
  color: var(--s-light-sec);
}

/* ── Metrics strip ───────────────────────────────────────────── */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--s-dark-border);
}

.metrics-strip__item {
  padding: 32px 40px;
  border-right: 1px solid var(--s-dark-border);
}

.metrics-strip__item:last-child { border-right: none; }

.metrics-strip__value {
  font-size: 40px;
  font-weight: 700;
  color: var(--maz-orange);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.metrics-strip__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--s-dark-sec);
  line-height: 1.4;
}

/* ── Product page ────────────────────────────────────────────── */
.product-hero {
  padding: 140px 0 96px;
  background: var(--s-dark-bg);
  position: relative;
  overflow: hidden;
}

.product-hero__glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,85,0,0.10) 0%, transparent 70%);
  right: -60px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.product-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--maz-orange);
  margin-bottom: 20px;
}

.product-hero__tag::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--maz-gradient-h);
  border-radius: 2px;
}

.product-hero__headline {
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 700;
  color: var(--s-dark-text);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 760px;
  text-wrap: balance;
}

.product-hero__sub {
  font-size: 17px;
  color: var(--s-dark-sec);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 40px;
}

/* Features grid */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.feature-card {
  background: var(--s-dark-surface);
  border: 1px solid var(--s-dark-border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: border-color var(--dur-base), transform var(--dur-base);
}

.feature-card:hover {
  border-color: rgba(255,85,0,0.3);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--maz-orange-bg);
  border: 1px solid rgba(255,85,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
}

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--s-dark-text);
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: 14px;
  color: var(--s-dark-sec);
  line-height: 1.65;
}

/* ── Page header (inner pages) ───────────────────────────────── */
.page-header {
  padding: 140px 0 80px;
  background: var(--s-dark-bg);
  text-align: center;
}

.page-header__headline {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  color: var(--s-dark-text);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}

.page-header__sub {
  font-size: 17px;
  color: var(--s-dark-sec);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ── Sobre page specific ─────────────────────────────────────── */
.value-card {
  background: var(--s-dark-surface);
  border: 1px solid var(--s-dark-border);
  border-radius: var(--r-md);
  padding: 28px;
}

.value-card__num {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.10em;
  color: var(--maz-orange);
  margin-bottom: 12px;
}

.value-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--s-dark-text);
  margin-bottom: 8px;
}

.value-card__text {
  font-size: 14px;
  color: var(--s-dark-sec);
  line-height: 1.65;
}

/* ── Service cards ───────────────────────────────────────────── */
.service-card {
  background: var(--s-light-bg);
  border: 1px solid var(--s-light-border);
  border-radius: var(--r-md);
  padding: 32px;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: #ccc;
}

.service-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--maz-orange);
  margin-bottom: 14px;
}

.service-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--s-light-text);
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 14px;
  color: var(--s-light-sec);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ── Announcement bar ────────────────────────────────────────── */
.announcement {
  background: var(--maz-orange-bg);
  border-bottom: 1px solid rgba(255,85,0,0.15);
  padding: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--maz-orange);
  font-weight: 500;
}

/* ── Logo mark / icon ────────────────────────────────────────── */
.brand-icon {
  width: 48px; height: 48px;
}

/* ── Scroll-reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}

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

/* ── Separator ───────────────────────────────────────────────── */
.sep { height: 1px; background: var(--border); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .section { padding: 72px 0; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero__metrics { position: static; margin-top: 64px; }
  .hero { min-height: auto; padding-bottom: 64px; }
}

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

  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__burger { display: flex; }

  .nav__links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    background: var(--nav-bg-scroll);
    backdrop-filter: blur(20px);
    padding: 32px 20px;
    gap: 4px;
    align-items: flex-start;
    overflow-y: auto;
    z-index: 99;
  }

  .nav__links.mobile-open .nav__link,
  .nav__links.mobile-open .nav__dropdown-btn {
    font-size: 20px;
    padding: 12px 8px;
    width: 100%;
  }

  .nav__links.mobile-open .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
  }

  .nav__links.mobile-open .nav__dropdown-item {
    font-size: 16px;
    padding: 10px 8px;
  }

  .nav__links.mobile-open + .nav__actions {
    display: none;
  }

  .mobile-cta {
    display: block;
    margin-top: 24px;
    width: 100%;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-2-1,
  .grid-1-2,
  .feature-grid { grid-template-columns: 1fr; gap: 16px; }

  .hero__headline { font-size: clamp(36px, 8vw, 52px); }
  .hero__sub { font-size: 15px; }
  .hero__actions { flex-direction: column; width: fit-content; }

  .metrics-strip { grid-template-columns: 1fr; }
  .metrics-strip__item { border-right: none; border-bottom: 1px solid var(--s-dark-border); }
  .metrics-strip__item:last-child { border-bottom: none; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }

  .steps { flex-direction: column; }
  .step:not(:last-child)::after { display: none; }

  .page-header { padding: 100px 0 56px; }
  .product-hero { padding: 100px 0 56px; }

  .cta-actions { flex-direction: column; align-items: center; }

  .grid-2-1 { gap: 40px; }
  .grid-1-2 { gap: 40px; }
}

@media (max-width: 480px) {
  .hero__metric-value { font-size: 32px; }
  .footer__inner { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
