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

:root {
  --bg: #07070a;
  --bg-soft: #0c0c12;
  --surface: rgba(18, 18, 26, 0.82);
  --surface-2: rgba(25, 25, 36, 0.78);
  --text: #f8f8fb;
  --muted: #a4a4b0;
  --border: rgba(255,255,255,.10);
  --accent: #8b5cf6;
  --accent-2: #6d28d9;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 10%, rgba(91, 33, 182, .18), transparent 24%),
    radial-gradient(circle at 85% 35%, rgba(124, 58, 237, .12), transparent 22%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -2;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(139, 92, 246, .25);
  border-radius: 44% 56% 61% 39% / 45% 36% 64% 55%;
  filter: blur(.1px);
  opacity: .45;
  pointer-events: none;
}

body::before {
  top: 18%;
  left: -280px;
  transform: rotate(28deg);
}

body::after {
  right: -280px;
  bottom: 8%;
  transform: rotate(-20deg);
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.page-glow {
  position: fixed;
  z-index: -3;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
}

.page-glow-1 {
  width: 320px;
  height: 320px;
  background: rgba(109, 40, 217, .14);
  top: 16%;
  left: 8%;
}

.page-glow-2 {
  width: 380px;
  height: 380px;
  background: rgba(139, 92, 246, .10);
  right: 4%;
  bottom: 10%;
}

.nav-wrap {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-top: 14px;
}

.nav {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 0 18px;
  background: rgba(8,8,12,.64);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-orb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #c4b5fd 0 15%, #8b5cf6 35%, #4c1d95 70%);
  box-shadow: 0 0 24px rgba(139,92,246,.65);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  transition: color .2s ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: white;
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(109,40,217,.24);
}

.menu-btn {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  color: white;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  margin-top: 8px;
  padding: 12px;
  background: rgba(8,8,12,.94);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu a {
  padding: 12px;
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0 0 72px 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,8,.98) 0%, rgba(6,6,11,.85) 42%, rgba(7,7,10,.45) 66%, rgba(7,7,10,.82) 100%),
    url("hero-bg.webp") center/cover no-repeat;
  opacity: .9;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 36%, rgba(124,58,237,.22), transparent 22%),
    linear-gradient(to bottom, transparent 72%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 120px;
}

.hero-copy {
  max-width: 680px;
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #c9c9d3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.hero h1 {
  margin-top: 20px;
  font-size: clamp(56px, 7vw, 92px);
  line-height: .94;
  letter-spacing: -.065em;
  max-width: 760px;
}

.hero h1 span {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(139,92,246,.18);
}

.hero-copy > p {
  max-width: 620px;
  margin-top: 24px;
  color: #c0c0c9;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 10px 34px rgba(109,40,217,.25);
}

.btn-primary:hover {
  box-shadow: 0 14px 42px rgba(109,40,217,.36);
}

.btn-ghost,
.btn-card {
  background: rgba(0,0,0,.12);
  border-color: rgba(139,92,246,.75);
  color: white;
}

.hero-features {
  display: flex;
  gap: 28px;
  margin-top: 46px;
  flex-wrap: wrap;
}

.hero-features > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c7c7d0;
  font-size: 13px;
}

.hero-features b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(139,92,246,.35);
  border-radius: 12px;
  background: rgba(139,92,246,.10);
  color: #a78bfa;
  box-shadow: inset 0 0 18px rgba(139,92,246,.08);
}

.hero-visual {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
}

.visual-card {
  width: min(100%, 520px);
  aspect-ratio: 1.34 / 1;
  padding: 12px;
  transform: perspective(1000px) rotateY(-8deg) rotateX(3deg) rotateZ(-2deg);
  border: 1px solid rgba(139,92,246,.25);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(24,24,38,.92), rgba(9,9,14,.98));
  box-shadow:
    0 45px 120px rgba(0,0,0,.55),
    0 0 50px rgba(109,40,217,.12);
}

.visual-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20%;
  border-radius: 16px;
  background:
    radial-gradient(circle at 24% 20%, rgba(139,92,246,.18), transparent 22%),
    linear-gradient(135deg, #0a0a12 0%, #121121 60%, #0a0a0e 100%);
  color: #9f67ff;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: -.04em;
}

.visual-caption {
  position: absolute;
  right: -20px;
  top: 8%;
  max-width: 120px;
  color: #9a9aa6;
  font-size: 10px;
  letter-spacing: .12em;
  line-height: 1.5;
}

.hero-wave {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -58px;
  height: 140px;
  background: var(--bg);
  border-radius: 50% 50% 0 0 / 70% 70% 0 0;
  box-shadow: 0 -1px 0 rgba(139,92,246,.26);
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.center {
  margin-inline: auto;
  text-align: center;
}

.center .pill {
  margin-inline: auto;
}

.section-heading h2 {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.section-heading p {
  margin-top: 14px;
  color: var(--muted);
}

.plans-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -300px;
  top: 80px;
  border: 1px solid rgba(139,92,246,.14);
  border-radius: 58% 42% 61% 39% / 48% 62% 38% 52%;
  transform: rotate(22deg);
}

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

.plan-card {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 30%),
    var(--surface);
  box-shadow: 0 24px 80px rgba(0,0,0,.16);
}

.plan-card.featured {
  border-color: rgba(139,92,246,.72);
  background:
    radial-gradient(circle at 50% 0%, rgba(139,92,246,.18), transparent 35%),
    var(--surface);
  box-shadow:
    0 24px 80px rgba(0,0,0,.20),
    0 0 36px rgba(109,40,217,.12);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  white-space: nowrap;
}

.plan-card h3 {
  font-size: 26px;
}

.plan-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.plan-card strong {
  display: block;
  margin-top: 24px;
  font-size: 34px;
  letter-spacing: -.04em;
}

.plan-card ul {
  display: grid;
  gap: 13px;
  margin: 30px 0;
  list-style: none;
}

.plan-card li {
  color: #d4d4db;
  font-size: 14px;
}

.plan-card li::before {
  content: "✓";
  margin-right: 10px;
  color: #a78bfa;
}

.process-section {
  padding-top: 70px;
}

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

.step-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  background: rgba(255,255,255,.018);
}

.step-num {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #676774;
  font-size: 13px;
}

.step-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(139,92,246,.25);
  border-radius: 50%;
  background: rgba(139,92,246,.08);
  color: #a78bfa;
  font-size: 20px;
}

.step-card h3 {
  font-size: 18px;
}

.step-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.order-section {
  padding-top: 80px;
}

.order-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.order-copy {
  position: sticky;
  top: 100px;
}

.order-copy h2 {
  margin-top: 16px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.order-copy > p {
  margin-top: 18px;
  max-width: 480px;
  color: var(--muted);
  line-height: 1.7;
}

.order-note {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  color: #c8c8d0;
}

.order-note span {
  color: #8c8c99;
  font-size: 12px;
}

.order-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(139,92,246,.20);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(139,92,246,.055), transparent 25%),
    rgba(14,14,20,.86);
  box-shadow: 0 30px 100px rgba(0,0,0,.24);
}

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

label {
  display: grid;
  gap: 8px;
  color: #e5e5ea;
  font-size: 13px;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 13px;
  outline: none;
  background: rgba(255,255,255,.035);
  color: white;
  padding: 14px 15px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

textarea { resize: vertical; min-height: 150px; }

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(139,92,246,.72);
  box-shadow: 0 0 0 4px rgba(139,92,246,.08);
  background: rgba(255,255,255,.045);
}

select option {
  background: #111118;
}

.submit-btn {
  width: 100%;
  margin-top: 4px;
}

.order-form small {
  color: #777784;
  text-align: center;
}

.cta-section {
  padding: 30px 0 96px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 46px;
  border: 1px solid rgba(139,92,246,.30);
  border-radius: 34px 34px 70px 34px;
  background:
    radial-gradient(circle at 76% 62%, rgba(139,92,246,.23), transparent 24%),
    linear-gradient(135deg, rgba(22,22,31,.92), rgba(11,11,17,.96));
}

.cta-card::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -80px;
  bottom: -180px;
  border: 1px solid rgba(139,92,246,.22);
  border-radius: 45% 55% 58% 42% / 53% 46% 54% 47%;
}

.cta-card h2 {
  max-width: 620px;
  margin-top: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.footer {
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.copyright {
  justify-self: end;
  color: #70707c;
  font-size: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,.74);
  backdrop-filter: blur(14px);
}

.modal.show { display: grid; }

.modal-card {
  width: min(100%, 460px);
  padding: 32px;
  border: 1px solid rgba(139,92,246,.28);
  border-radius: 24px;
  background: #111118;
  text-align: center;
}

.modal-check {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(139,92,246,.12);
  color: #a78bfa;
  font-size: 22px;
}

.modal-card h2 { margin-top: 18px; }
.modal-card p { margin: 12px 0 24px; color: var(--muted); line-height: 1.6; }

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 140px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .visual-card {
    width: min(100%, 620px);
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }

  .plan-card {
    min-height: auto;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-grid {
    grid-template-columns: 1fr;
  }

  .order-copy {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-inner .brand,
  .footer-links {
    justify-self: center;
  }

  .copyright {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 22px), var(--max));
  }

  .nav-wrap {
    padding-top: 8px;
  }

  .nav {
    min-height: 58px;
    border-radius: 14px;
  }

  .hero {
    border-radius: 0 0 38px 38px;
  }

  .hero-content {
    gap: 40px;
    padding-top: 118px;
    padding-bottom: 106px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 34px;
  }

  .hero-visual {
    min-height: 260px;
  }

  .visual-card {
    width: 92%;
  }

  .visual-caption {
    display: none;
  }

  .hero-wave {
    bottom: -44px;
    height: 90px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .plans-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .plan-card,
  .step-card {
    border-radius: 18px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .order-form {
    padding: 20px;
    border-radius: 20px;
  }

  .order-copy h2 {
    font-size: 42px;
  }

  .cta-card {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    border-radius: 26px 26px 54px 26px;
  }

  .cta-card .btn {
    width: 100%;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* ===== Plano / projeto: seletor moderno ===== */
.plan-picker {
  border: 0;
  min-width: 0;
}

.plan-picker legend {
  margin-bottom: 10px;
  color: #e5e5ea;
  font-size: 13px;
  font-weight: 600;
}

.plan-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.plan-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.plan-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.plan-option-card {
  position: relative;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.028), transparent),
    rgba(255,255,255,.025);
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.plan-option-card::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -50px;
  bottom: -60px;
  border-radius: 50%;
  background: rgba(139,92,246,.18);
  filter: blur(24px);
  opacity: 0;
  transition: opacity .2s ease;
}

.plan-option:hover .plan-option-card {
  transform: translateY(-2px);
  border-color: rgba(139,92,246,.34);
}

.plan-option input:checked + .plan-option-card {
  border-color: rgba(139,92,246,.88);
  background:
    linear-gradient(180deg, rgba(139,92,246,.10), rgba(139,92,246,.025)),
    rgba(255,255,255,.028);
  box-shadow:
    0 0 0 3px rgba(139,92,246,.07),
    0 16px 40px rgba(0,0,0,.18);
}

.plan-option input:checked + .plan-option-card::before {
  opacity: 1;
}

.plan-option input:focus-visible + .plan-option-card {
  outline: 2px solid #a78bfa;
  outline-offset: 3px;
}

.plan-option-top {
  display: grid;
  gap: 6px;
}

.plan-option-top b {
  color: white;
  font-size: 15px;
}

.plan-option-top > span {
  color: #c4b5fd;
  font-size: 13px;
  font-weight: 700;
}

.plan-option-card small {
  color: #898995;
  font-size: 11px;
  line-height: 1.45;
  text-align: left;
}

.plan-option-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  color: transparent;
  font-size: 11px;
  transition: .2s ease;
}

.plan-option input:checked + .plan-option-card .plan-option-check {
  border-color: #8b5cf6;
  background: #8b5cf6;
  color: white;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.submit-btn[disabled] {
  opacity: .65;
  cursor: wait;
  transform: none;
}

.form-feedback {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.form-feedback.show {
  display: block;
}

.form-feedback.error {
  border: 1px solid rgba(248,113,113,.25);
  background: rgba(248,113,113,.07);
  color: #fecaca;
}

/* Performance / mobile polish */
.hero-bg {
  will-change: auto;
}

@media (max-width: 980px) {
  .hero-bg {
    background-position: 62% center;
  }

  .plan-picker-grid {
    grid-template-columns: 1fr;
  }

  .plan-option-card {
    min-height: 104px;
  }
}

@media (max-width: 640px) {
  body::before,
  body::after,
  .page-glow {
    display: none;
  }

  .hero-bg {
    opacity: .68;
    background-position: 68% center;
  }

  .nav {
    backdrop-filter: blur(12px);
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(44px, 15vw, 62px);
    line-height: .96;
  }

  .plan-picker-grid {
    gap: 8px;
  }

  .plan-option-card {
    min-height: 96px;
    padding: 14px;
  }

  .order-form {
    box-shadow: 0 20px 55px rgba(0,0,0,.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ===== Identidade Norte Websites ===== */
.brand-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.projects-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.projects-heading > div {
  max-width: 720px;
}

.project-instagram {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #d8d8df;
  font-size: 13px;
  font-weight: 700;
  transition: .2s ease;
}

.project-instagram:hover {
  transform: translateY(-2px);
  border-color: rgba(139,92,246,.55);
  background: rgba(139,92,246,.06);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255,255,255,.018);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,92,246,.28);
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
}

.project-shot {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b0b0d;
}

.project-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s ease;
}

.project-card:hover .project-shot img {
  transform: scale(1.025);
}

.project-overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
}

.project-overlay span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(8,8,10,.72);
  backdrop-filter: blur(10px);
  color: #d7d7df;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
}

.project-meta h3 {
  font-size: 18px;
}

.project-meta p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.project-arrow {
  color: #a78bfa;
  font-size: 20px;
}

.consent-check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  cursor: pointer;
  color: #a8a8b2;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.consent-check input {
  appearance: none;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 5px;
  background: rgba(255,255,255,.035);
  cursor: pointer;
}

.consent-check input:checked {
  border-color: #8b5cf6;
  background:
    linear-gradient(135deg, #8b5cf6, #6d28d9);
  box-shadow: inset 0 0 0 3px #111118;
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 60px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.018);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 19px 50px 19px 20px;
  color: #ededf2;
  font-size: 14px;
  font-weight: 700;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 16px;
  color: #a78bfa;
  font-size: 20px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.footer {
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(circle at 13% 50%, rgba(139,92,246,.07), transparent 23%),
    rgba(5,5,8,.55);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr .7fr .85fr 1fr;
  gap: 44px;
  padding-top: 54px;
  padding-bottom: 42px;
}

.footer-brand-block p {
  max-width: 300px;
  margin-top: 16px;
  color: #7f7f8a;
  font-size: 12px;
  line-height: 1.65;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(139,92,246,.10));
}

.footer-logo-link div {
  display: grid;
  gap: 2px;
}

.footer-logo-link strong {
  font-size: 18px;
  letter-spacing: .12em;
}

.footer-logo-link span {
  color: #9696a0;
  font-size: 8px;
  letter-spacing: .32em;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col strong {
  margin-bottom: 5px;
  color: #d8d8df;
  font-size: 12px;
}

.footer-col a {
  color: #81818c;
  font-size: 12px;
  transition: color .2s ease;
}

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

.footer-tagline {
  align-self: center;
  justify-self: end;
  display: grid;
  text-align: right;
}

.footer-tagline span {
  color: #92929c;
  font-size: 20px;
}

.footer-tagline strong {
  color: #a78bfa;
  font-size: 22px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,.055);
  color: #62626d;
  font-size: 10px;
}

@media (max-width: 980px) {
  .projects-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-tagline {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .projects-heading {
    display: block;
  }

  .project-instagram {
    margin-top: 22px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-meta {
    padding: 17px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-tagline {
    justify-self: start;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
