/* ==========================================================================
   BOX CRIATIVA - Estilos principais
   Mobile-first | Dark Mode | Premium
   ========================================================================== */

:root {
  /* Paleta da marca */
  --black: #07070a;
  --black-soft: #0d0d12;
  --surface: #121219;
  --surface-2: #17171f;
  --border: #232330;
  --purple: #7b2cff;
  --magenta: #d92fff;
  --orange: #ff7a00;
  --yellow: #ffb000;
  --white: #ffffff;
  --gray: #b8b8b8;
  --gray-dim: #7c7c8a;

  /* Tokens semânticos */
  --bg: var(--black);
  --text: var(--white);
  --text-muted: var(--gray);
  --brand: var(--purple);
  --brand-2: var(--magenta);
  --accent: var(--orange);
  --accent-2: var(--yellow);

  --grad-brand: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 100%);
  --grad-accent: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  --grad-text: linear-gradient(120deg, #c79bff 0%, var(--magenta) 50%, var(--orange) 100%);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --container: 1180px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
  --glow-purple: 0 0 50px -8px rgba(123, 44, 255, 0.45);
  --glow-magenta: 0 0 50px -8px rgba(217, 47, 255, 0.4);

  --header-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 20px;
}

.section {
  padding-block: 64px;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--magenta);
  background: rgba(217, 47, 255, 0.08);
  border: 1px solid rgba(217, 47, 255, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section h2 {
  font-size: clamp(1.7rem, 6vw, 2.6rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

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

/* Destaque em degradê (cores da logo) para palavras finais de títulos */
.gradient-text {
  background: linear-gradient(90deg, #7b2cff, #d92fff, #ff7a00, #ffb000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 9999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
    filter 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  line-height: 1;
}

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

.btn:active {
  transform: scale(0.98);
}

.btn:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff8a00 0%, #ffb300 100%);
  color: var(--white);
  box-shadow: 0 8px 24px -10px rgba(255, 138, 0, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 0 48px -8px rgba(255, 138, 0, 0.6);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-whats {
  background: var(--grad-accent);
  color: #1a0f00;
}

.btn-whats:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px -8px rgba(255, 122, 0, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--purple);
  background: rgba(123, 44, 255, 0.1);
}

.btn-block {
  width: 100%;
}

/* ============================ HEADER ============================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(7, 7, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--grad-brand);
  display: grid;
  place-items: center;
  box-shadow: var(--glow-purple);
}

.logo-mark svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.logo span b {
  color: var(--magenta);
  font-weight: 700;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.18s ease;
}

.nav-desktop a:hover {
  color: var(--white);
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(7, 7, 10, 0.98);
  backdrop-filter: blur(10px);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 24px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a:not(.btn) {
  padding: 16px 8px;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.mobile-menu .btn {
  margin-top: 20px;
}

/* Dropdown de Serviços (desktop) */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.18s ease;
}

.nav-dropdown-toggle svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle[aria-expanded="true"] {
  color: var(--white);
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 8px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 120;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(123, 44, 255, 0.12);
  color: var(--white);
}

/* Acordeão de Serviços (mobile) */
.mobile-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8px;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: inherit;
  border: none;
  border-bottom: 1px solid var(--border);
  background: none;
  color: var(--text);
  cursor: pointer;
}

.mobile-accordion-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

.mobile-accordion-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-accordion-panel a {
  display: block;
  padding: 13px 8px 13px 22px;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.mobile-accordion-panel a:hover {
  color: var(--white);
}

/* ============================ HERO ============================ */
.hero {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 56px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(123, 44, 255, 0.22) 0%,
    rgba(217, 47, 255, 0.08) 40%,
    transparent 70%
  );
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2dd47f;
  box-shadow: 0 0 10px #2dd47f;
}

.hero h1 {
  font-size: clamp(2.1rem, 9vw, 3.6rem);
  margin-bottom: 18px;
}

/* Headline rotativa */
.hero-headline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Altura fixa para evitar "pulos"/reflow na troca de frases (2 linhas) */
  min-height: 9.5rem;
  margin-bottom: 14px;
  outline: none;
}

/* Mobile: fonte menor para melhor legibilidade e menos quebras */
@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(1.5rem, 6.4vw, 2rem);
    line-height: 1.2;
  }
  .hero-headline {
    min-height: 7rem;
  }
}

.hero-headline .headline-text {
  display: block;
  text-wrap: balance;
  transition: opacity 400ms ease, transform 400ms ease;
  will-change: opacity, transform;
}

.hero-headline.is-fading .headline-text {
  opacity: 0;
  transform: translateY(8px);
}

/* Indicador (pontos) */
.headline-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 26px;
}

.headline-dots .h-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: background 300ms ease, width 300ms ease, transform 300ms ease;
}

.headline-dots .h-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.headline-dots .h-dot.active {
  width: 26px;
  background: var(--grad-accent);
}

.headline-dots .h-dot:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-headline .headline-text {
    transition: none;
  }
  .hero-headline.is-fading .headline-text {
    transform: none;
  }
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 32px;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  margin: 0 auto 36px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats .stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stats .stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero mockup */
.hero-mockup {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
}

.mock-browser {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), var(--glow-purple);
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.mock-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #3a3a46;
}

.mock-bar i:nth-child(1) {
  background: #ff5f57;
}
.mock-bar i:nth-child(2) {
  background: var(--yellow);
}
.mock-bar i:nth-child(3) {
  background: #2dd47f;
}

.mock-url {
  margin-left: 10px;
  font-size: 0.72rem;
  color: var(--gray-dim);
  background: var(--black-soft);
  padding: 4px 12px;
  border-radius: 999px;
}

.mock-body {
  padding: 22px;
}

.mock-hero {
  height: 90px;
  border-radius: var(--radius-sm);
  background: var(--grad-brand);
  opacity: 0.9;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.mock-hero::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 60%;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 24px 0 -2px rgba(255, 255, 255, 0.3);
}

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

.mock-card {
  height: 64px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.mock-card:nth-child(1) {
  border-top: 3px solid var(--orange);
}
.mock-card:nth-child(2) {
  border-top: 3px solid var(--magenta);
}
.mock-card:nth-child(3) {
  border-top: 3px solid var(--purple);
}

/* Floating phone */
.mock-phone {
  position: absolute;
  right: -8px;
  bottom: -28px;
  width: 110px;
  height: 220px;
  background: var(--black-soft);
  border: 6px solid #1c1c26;
  border-radius: 26px;
  box-shadow: var(--shadow), var(--glow-magenta);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-phone .p-top {
  height: 50px;
  border-radius: 8px;
  background: var(--grad-accent);
}

.mock-phone .p-line {
  height: 9px;
  border-radius: 4px;
  background: var(--surface-2);
}
.mock-phone .p-line.short {
  width: 60%;
}

/* ============================ TRUST STRIP ============================ */
.trust {
  border-block: 1px solid var(--border);
  background: var(--black-soft);
  padding-block: 22px;
}

.trust .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

/* ============================ PROBLEMS ============================ */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.problem-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.problem-card .x {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 90, 90, 0.12);
  color: #ff6b6b;
}

.problem-card .x svg {
  width: 20px;
  height: 20px;
}

.problem-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.problem-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Comparison */
/* Seção compacta "Por que escolher" */
.why-box {
  padding-top: 80px;
  padding-bottom: 80px;
}

.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.compare-col {
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.compare-col:hover {
  transform: translateY(-4px);
}

.compare-col.bad {
  background: var(--surface-2);
}

.compare-col.bad:hover {
  border-color: var(--gray-dim);
}

.compare-col.good {
  background: linear-gradient(150deg, rgba(123, 44, 255, 0.16), rgba(255, 122, 0, 0.1));
  border-color: rgba(123, 44, 255, 0.45);
}

.compare-col.good:hover {
  box-shadow: var(--glow-purple);
}

.compare-col h4 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.compare-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
}

.compare-ic svg {
  width: 16px;
  height: 16px;
}

.compare-col.bad .compare-ic {
  background: rgba(255, 107, 107, 0.14);
  color: #ff6b6b;
}

.compare-col.good .compare-ic {
  background: var(--grad-accent);
  color: var(--black);
}

.compare-col.bad h4 {
  color: var(--gray);
}

.compare-col li {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 6px 0;
}

.compare-col li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.compare-col.bad li svg {
  color: #ff6b6b;
}
.compare-col.good li svg {
  color: #2dd47f;
}
.compare-col.good li {
  color: var(--text);
}

.why-box-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ============================ SERVICES ============================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 44, 255, 0.5);
  box-shadow: var(--glow-purple);
}

.service-card .service-link {
  margin-top: auto;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(123, 44, 255, 0.12);
  color: var(--magenta);
  margin-bottom: 16px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
  /* Máximo de 2 linhas */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.18s ease;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ============================ DIFERENCIAL ============================ */
.diff {
  background: var(--black-soft);
}

.diff-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.diff-text h2 {
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  margin-bottom: 18px;
}

.diff-text p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.diff-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.diff-pills span {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.diff-visual {
  position: relative;
  background: linear-gradient(160deg, rgba(217, 47, 255, 0.12), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.diff-center {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--grad-brand);
  box-shadow: var(--glow-purple);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.diff-orbit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.diff-orbit span {
  font-size: 0.78rem;
  text-align: center;
  padding: 12px 6px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ============================ OFERTA / COMBO ============================ */
/* ============================ COMBOS ============================ */
.combos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 36px;
  align-items: stretch;
}

.combo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.combo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 44, 255, 0.4);
}

.combo-card.featured {
  background: linear-gradient(155deg, rgba(123, 44, 255, 0.16), rgba(217, 47, 255, 0.1) 45%, rgba(255, 122, 0, 0.08));
  border-width: 2px;
  border-color: rgba(217, 47, 255, 0.65);
  box-shadow: 0 0 0 1px rgba(217, 47, 255, 0.25), var(--glow-magenta);
}

.combo-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--grad-accent);
  color: #1a0f00;
  padding: 6px 16px;
  border-radius: 999px;
}

/* Selo secundário (combos não destacados) */
.combo-badge-soft {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.7rem;
  max-width: calc(100% - 20px);
  overflow: hidden;
  text-overflow: ellipsis;
}

.combo-name {
  font-size: 1.25rem;
  margin: 4px 0 6px;
}

.combo-for {
  font-size: 0.85rem;
  color: var(--text-muted);
  min-height: 40px;
  margin-bottom: 14px;
}

.combo-price {
  margin-bottom: 18px;
}

.combo-price strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  line-height: 1.05;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.combo-price strong small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}

.combo-price-note {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-dim);
  margin-top: 4px;
}

.combo-cta {
  width: 100%;
  margin-bottom: 18px;
}

.combo-list {
  display: grid;
  gap: 7px;
}

.combo-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  line-height: 1.3;
  color: var(--text-muted);
}

.combo-list li svg {
  width: 16px;
  height: 16px;
  color: #2dd47f;
  flex-shrink: 0;
}

.combo-list {
  margin-bottom: 4px;
}

.combo-card.featured .combo-list li {
  color: var(--text);
}

/* ===== Tabela comparativa ===== */
.compare-table-head {
  text-align: center;
  margin-top: 56px;
}

.compare-table-head h3 {
  font-size: clamp(1.3rem, 4vw, 1.7rem);
}

.compare-table-wrap {
  display: none;
  max-width: 900px;
  margin: 24px auto 0;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 13px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.compare-table thead th {
  background: var(--surface-2, var(--surface));
  font-size: 0.95rem;
  color: var(--text);
}

.compare-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--text-muted);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table .is-featured {
  background: rgba(217, 47, 255, 0.08);
  border-left: 1px solid rgba(217, 47, 255, 0.3);
  border-right: 1px solid rgba(217, 47, 255, 0.3);
}

.compare-table thead .is-featured {
  background: rgba(217, 47, 255, 0.16);
  color: var(--white);
}

.compare-table td[data-yes]::before {
  content: "✓";
  color: #2dd47f;
  font-weight: 700;
  font-size: 1.05rem;
}

.compare-table td[data-no]::before {
  content: "—";
  color: var(--gray-dim);
}

/* ===== Cards comparativos (mobile) ===== */
.compare-cards {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.compare-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.compare-card-feature {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.compare-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.compare-card-row.is-featured {
  background: rgba(217, 47, 255, 0.1);
  color: var(--text);
}

.compare-card-row .cmp-yes {
  display: inline-flex;
  color: #2dd47f;
}

.compare-card-row .cmp-yes svg {
  width: 18px;
  height: 18px;
}

.compare-card-row .cmp-no {
  color: var(--gray-dim);
}

/* ===== CTA de ajuda ===== */
.compare-help {
  text-align: center;
  max-width: 620px;
  margin: 40px auto 0;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.compare-help h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.compare-help p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.combos-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-dim);
  max-width: 640px;
  margin: 22px auto 0;
  font-style: italic;
}

/* A partir de tablet: mostra a tabela e esconde os cards comparativos */
@media (min-width: 760px) {
  .compare-table-wrap {
    display: block;
  }
  .compare-cards {
    display: none;
  }
}

/* ============================ LANDING EXPRESS ============================ */
.niches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.niche-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.niche-card:hover {
  border-color: var(--magenta);
  transform: translateY(-3px);
}

.niche-card .niche-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--grad-brand);
  color: #fff;
}

.niche-card .niche-icon svg {
  width: 22px;
  height: 22px;
}

.niche-card span {
  font-size: 0.85rem;
  font-weight: 600;
}

.express-perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}

.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.perk svg {
  width: 26px;
  height: 26px;
  color: var(--orange);
  flex-shrink: 0;
}

.perk strong {
  display: block;
  font-size: 0.95rem;
}

.perk span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================ PROCESSO / TIMELINE ============================ */
.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--purple), var(--magenta), var(--orange));
}

.step {
  position: relative;
  padding-left: 60px;
  padding-bottom: 28px;
}

.step:last-child {
  padding-bottom: 0;
}

.step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--purple);
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--magenta);
  z-index: 1;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================ CONDIÇÕES ============================ */
.terms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.term-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.term-card .term-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 0, 0.12);
  color: var(--orange);
  margin-bottom: 14px;
}

.term-card .term-icon svg {
  width: 22px;
  height: 22px;
}

.term-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.term-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============================ PORTFÓLIO ============================ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}

.filter-btn {
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.18s ease;
}

.filter-btn.active,
.filter-btn:hover {
  color: #fff;
  border-color: var(--purple);
  background: rgba(123, 44, 255, 0.15);
}

/* Carrossel: 1 card (mobile) / 2 (tablet) / 3 (desktop) por vez */
.portfolio-carousel {
  --cards: 1;
  --gap: 16px;
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.portfolio-viewport {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.portfolio-viewport::-webkit-scrollbar {
  display: none;
}

.portfolio-track {
  display: flex;
  gap: var(--gap);
  align-items: stretch;
}

.portfolio-carousel.is-centered .portfolio-track {
  justify-content: center;
}

.portfolio-card {
  flex: 0 0 calc((100% - (var(--cards) - 1) * var(--gap)) / var(--cards));
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

/* Setas de navegação */
.portfolio-nav {
  flex: 0 0 auto;
  align-self: center;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: all 0.18s ease;
}

.portfolio-nav svg {
  width: 20px;
  height: 20px;
}

.portfolio-nav:hover:not(:disabled) {
  border-color: var(--purple);
  background: rgba(123, 44, 255, 0.15);
}

.portfolio-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.portfolio-carousel.no-nav .portfolio-nav {
  display: none;
}

/* Indicador discreto (dots por página) */
.portfolio-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.portfolio-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--border);
  cursor: pointer;
  transition: all 0.18s ease;
}

.portfolio-dot.active {
  width: 22px;
  background: var(--magenta);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: var(--magenta);
}

.portfolio-thumb {
  aspect-ratio: 16 / 10;
  background: var(--grad-brand);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  will-change: transform;
}

.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.06);
  filter: brightness(1.06) saturate(1.05);
}

.portfolio-thumb svg {
  width: 46px;
  height: 46px;
  color: rgba(255, 255, 255, 0.85);
}

.portfolio-card:nth-child(even) .portfolio-thumb:not(:has(img)) {
  background: var(--grad-accent);
}

.portfolio-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  color: #0b0b10;
  background: var(--yellow);
}

.portfolio-info {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-info .cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--magenta);
  font-weight: 600;
}

.portfolio-info h3 {
  font-size: 1.05rem;
  margin-top: 4px;
}

.portfolio-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 8px 0 0;
  padding: 0;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.portfolio-meta li {
  display: inline-flex;
  align-items: center;
}

.portfolio-meta li + li::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
  margin-right: 10px;
}

.portfolio-meta .pm-seg {
  color: var(--magenta);
  font-weight: 600;
}

.portfolio-info p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.5;
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}

.portfolio-preview-btn,
.portfolio-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.18s ease;
}

.portfolio-preview-btn {
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
}

.portfolio-preview-btn:hover {
  border-color: var(--purple);
  background: rgba(123, 44, 255, 0.15);
}

.portfolio-open {
  border: 1px solid transparent;
  background: var(--grad-brand);
  color: #fff;
  text-decoration: none;
}

.portfolio-open:hover {
  filter: brightness(1.08);
}

.portfolio-preview-btn svg,
.portfolio-open svg {
  width: 15px;
  height: 15px;
}

.portfolio-soon {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 0;
}

.portfolio-empty {
  width: 100%;
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
}

/* Modal de prévia */
.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.portfolio-modal[hidden] {
  display: none;
}

.portfolio-modal.open {
  opacity: 1;
}

.portfolio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 12, 0.78);
  backdrop-filter: blur(4px);
}

.portfolio-modal-dialog {
  position: relative;
  width: min(1000px, 100%);
  max-height: min(88vh, 720px);
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(123, 44, 255, 0.25);
  transform: translateY(12px) scale(0.99);
  transition: transform 0.2s ease;
}

.portfolio-modal.open .portfolio-modal-dialog {
  transform: translateY(0) scale(1);
}

.portfolio-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.portfolio-modal-head h3 {
  font-size: 1rem;
  margin: 0;
}

.portfolio-modal-head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.portfolio-modal-close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  cursor: pointer;
  transition: all 0.18s ease;
}

.portfolio-modal-close:hover {
  border-color: var(--magenta);
  color: #fff;
}

.portfolio-modal-close svg {
  width: 18px;
  height: 18px;
}

.portfolio-modal-body {
  flex: 1;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.portfolio-shot {
  margin: 0;
  background: #0b0f17;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.portfolio-shot img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 55vh;
  object-fit: contain;
  object-position: center center;
}

.portfolio-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 22px 24px;
}

.portfolio-detail .cat {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-detail h4 {
  font-size: 1.35rem;
  margin: 0 0 10px;
  line-height: 1.25;
}

.portfolio-detail-desc {
  color: var(--text-muted);
  margin: 0 0 18px;
  line-height: 1.55;
}

.portfolio-services {
  margin-bottom: 22px;
}

.portfolio-services h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin: 0 0 12px;
}

.portfolio-services ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-services li {
  font-size: 0.82rem;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
}

.portfolio-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
  width: 100%;
}

.portfolio-detail-open,
.portfolio-detail-image {
  align-self: flex-start;
}

@media (max-width: 759px) {
  .portfolio-detail-actions {
    flex-direction: column;
  }
  .portfolio-detail-open,
  .portfolio-detail-image {
    width: 100%;
  }
}

/* Em telas largas, screenshot à esquerda e detalhes à direita */
@media (min-width: 760px) {
  .portfolio-modal-body {
    grid-template-columns: 1.35fr 1fr;
  }
  .portfolio-shot {
    border-bottom: 0;
    border-right: 1px solid var(--border);
    height: 100%;
    overflow: hidden;
    padding: 20px;
  }
  .portfolio-shot img {
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    object-position: center center;
  }
}

/* ============================ FAQ ============================ */
.faq-search {
  max-width: 800px;
  margin: 0 auto 22px;
  position: relative;
  display: flex;
  align-items: center;
}

.faq-search svg {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  color: var(--magenta);
  pointer-events: none;
}

.faq-search input {
  width: 100%;
  background: var(--surface);
  border: 1px solid rgba(123, 44, 255, 0.4);
  border-radius: var(--radius);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 14px 16px 14px 44px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-search input::placeholder {
  color: var(--gray-dim);
}

.faq-search input:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(123, 44, 255, 0.18);
}

.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-empty {
  max-width: 800px;
  margin: 8px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-empty a {
  color: var(--magenta);
  font-weight: 600;
}

.faq-empty a:hover {
  text-decoration: underline;
}

.faq-pagination {
  max-width: 800px;
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.faq-page-btn {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.faq-page-btn:hover:not(:disabled):not(.active) {
  border-color: rgba(123, 44, 255, 0.5);
  color: var(--white);
}

.faq-page-btn.active {
  background: var(--grad-brand);
  border-color: transparent;
  color: var(--white);
  cursor: default;
}

.faq-page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-q svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--magenta);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ====================== ATENDIMENTO NACIONAL ====================== */
.national {
  text-align: center;
}

.national-box {
  max-width: 720px;
  margin: 0 auto;
}

.national-box h2 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  margin: 8px 0 14px;
}

.national-box p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  text-wrap: pretty;
  margin: 0 auto;
}

/* ============================ CTA FINAL ============================ */
.cta-final {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(150deg, rgba(123, 44, 255, 0.2), rgba(217, 47, 255, 0.12));
  border: 1px solid rgba(217, 47, 255, 0.35);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  box-shadow: var(--glow-purple);
}

.cta-box h2 {
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  margin-bottom: 14px;
}

.cta-box p {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 480px;
  margin-inline: auto;
}

.cta-box .btn {
  font-size: 1.05rem;
  padding: 16px 32px;
}

/* ============================ FOOTER ============================ */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  padding-block: 48px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 14px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-dim);
  margin-bottom: 16px;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a,
.footer-col span {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.18s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-dim);
}

/* Dados da empresa (rodapé) */
.footer-legal {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  margin-bottom: 22px;
}

.footer-legal h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-dim);
  margin-bottom: 12px;
}

.footer-legal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 28px;
}

.footer-legal-grid p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.footer-legal-grid a {
  color: var(--text-muted);
  transition: color 0.18s ease;
}

.footer-legal-grid a:hover {
  color: var(--white);
}

@media (min-width: 700px) {
  .footer-legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .footer-legal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ============================ WHATSAPP FLOAT ============================ */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 8px 30px -6px rgba(37, 211, 102, 0.6);
  animation: wa-pulse 2.4s infinite;
}

.wa-float svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 8px 30px -6px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 8px 30px -6px rgba(37, 211, 102, 0.6), 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 8px 30px -6px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ============================ REVEAL ANIMATION ============================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================ PAGE HEADER (subpáginas) ============================ */
.page-hero {
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 8vw, 3rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.prose {
  max-width: 760px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.4rem;
  margin: 32px 0 12px;
}

.prose h3 {
  font-size: 1.1rem;
  margin: 22px 0 8px;
}

.prose p,
.prose li {
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.prose ul {
  list-style: disc;
  padding-left: 22px;
}

.prose strong {
  color: var(--white);
}

.prose .legal-note {
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  background: var(--black-soft);
  padding: 16px 18px;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Página de dados da empresa */
.company-data {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 8px 0 28px;
}

.company-data-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.company-data-row:last-child {
  border-bottom: 0;
}

.company-data dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-dim);
}

.company-data dd {
  margin: 0;
  font-size: 0.98rem;
  color: var(--white);
}

.company-data dd a {
  color: var(--orange);
}

.company-data-cta {
  display: flex;
  justify-content: center;
}

@media (min-width: 640px) {
  .company-data-row {
    grid-template-columns: 220px 1fr;
    align-items: baseline;
    gap: 16px;
  }
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--magenta);
}

.blog-thumb {
  aspect-ratio: 16 / 9;
  background: var(--grad-brand);
}

.blog-card:nth-child(3n + 2) .blog-thumb {
  background: var(--grad-accent);
}
.blog-card:nth-child(3n) .blog-thumb {
  background: linear-gradient(135deg, var(--magenta), var(--orange));
}

.blog-body {
  padding: 18px 20px 22px;
}

.blog-body .cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--magenta);
  font-weight: 600;
}

.blog-body h3 {
  font-size: 1.1rem;
  margin: 6px 0 8px;
}

.blog-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.blog-cats span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
}

/* ============================ BREAKPOINTS ============================ */
@media (min-width: 600px) {
  .portfolio-carousel {
    --cards: 2;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .compare {
    grid-template-columns: repeat(2, 1fr);
  }
  .express-perks {
    grid-template-columns: repeat(3, 1fr);
  }
  /* 3 combos lado a lado, mesma altura; Combo 2 (1º no DOM) vai para o centro */
  .combos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
  }
  .combo-card.featured {
    order: 2;
  }
  .combos-grid .combo-card:nth-child(2) {
    order: 1;
  }
  .combos-grid .combo-card:nth-child(3) {
    order: 3;
  }
}

@media (min-width: 900px) {
  .section {
    padding-block: 88px;
  }
  .nav-desktop {
    display: flex;
  }
  .header-cta {
    display: inline-flex;
  }
  .menu-toggle {
    display: none;
  }
  .hero {
    padding-top: calc(var(--header-h) + 72px);
  }
  .hero h1 {
    font-size: clamp(3rem, 5vw, 4rem);
  }
  .hero-headline {
    min-height: 15rem;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .terms-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .niches {
    grid-template-columns: repeat(3, 1fr);
  }
  .portfolio-carousel {
  --cards: 3;
  }
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .diff-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  .niches {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1100px) {
  .hero-mockup {
    max-width: 620px;
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================ PÁGINAS DE SERVIÇO ============================ */
.breadcrumbs {
  font-size: 0.82rem;
  color: var(--gray-dim);
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--white);
}

.breadcrumbs span[aria-current] {
  color: var(--text);
}

.svc-hero .page-hero-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: var(--grad-brand);
  color: var(--white);
}

.svc-hero .page-hero-icon svg {
  width: 30px;
  height: 30px;
}

.svc-block {
  max-width: 820px;
  margin: 0 auto;
}

.svc-block + .svc-block {
  margin-top: 12px;
}

.svc-block h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.svc-block p {
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.65;
}

.svc-list {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

@media (min-width: 700px) {
  .svc-list.two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.svc-list li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.svc-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #2dd47f;
}

.svc-list.bullets li svg {
  color: var(--orange);
}

.svc-steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.svc-steps li {
  list-style: none;
  position: relative;
  padding: 16px 18px 16px 60px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.svc-steps li strong {
  display: block;
  color: var(--text);
  margin-bottom: 2px;
}

.svc-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  background: var(--grad-brand);
}

.svc-faq {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.svc-faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 18px;
}

.svc-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.svc-faq summary::-webkit-details-marker {
  display: none;
}

.svc-faq summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--orange);
  transition: transform 0.2s ease;
}

.svc-faq details[open] summary::after {
  transform: rotate(45deg);
}

.svc-faq details p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  padding: 0 0 18px;
  margin: 0;
}

/* ============================ SIMULADOR DE E-MAIL ============================ */
.email-sim-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.email-sim-intro {
  margin: 0;
}

.email-sim-intro h2 {
  font-size: clamp(1.4rem, 4vw, 1.7rem);
}

.sim-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(123, 44, 255, 0.12);
  border: 1px solid rgba(123, 44, 255, 0.35);
}

.sim-badge svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

.sim-features {
  margin-top: 4px;
}

.sim-features li {
  padding: 10px 14px;
  font-size: 0.88rem;
}

.sim-features li svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #2dd47f;
}

/* Card do simulador */
.sim-card {
  background: var(--surface);
  border: 1px solid rgba(123, 44, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--glow-purple);
}

.sim-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.sim-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.sim-btn {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2, var(--surface));
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.1s ease;
}

.sim-btn:hover {
  border-color: rgba(123, 44, 255, 0.6);
  color: var(--white);
}

.sim-btn:active {
  transform: scale(0.94);
}

.sim-btn svg {
  width: 20px;
  height: 20px;
}

.sim-input {
  flex: 1;
  min-width: 0;
  height: 46px;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  background: var(--bg-deep, #07070A);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  -moz-appearance: textfield;
}

.sim-input::-webkit-outer-spin-button,
.sim-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sim-input:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(123, 44, 255, 0.18);
}

.sim-result {
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sim-result-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.sim-price {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 8vw, 2.8rem);
  line-height: 1.05;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sim-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0 22px;
}

.sim-meta > div {
  background: var(--surface-2, var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  text-align: center;
}

.sim-meta-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-dim);
  margin-bottom: 4px;
}

.sim-meta-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.sim-cta {
  width: 100%;
}

@media (min-width: 860px) {
  .email-sim-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
  }
}
