/* =========================================================
   DgsLoja - Design System (CSS puro)
   Convertido de dgsloja-next (Tailwind -> CSS)
   ========================================================= */

/* ---------- Design Tokens (cores como canais RGB) ---------- */
:root {
  /* Brand - Verde */
  --color-brand-50: 240 253 244;
  --color-brand-100: 187 247 208;
  --color-brand-200: 134 239 172;
  --color-brand-300: 74 222 128;
  --color-brand-400: 34 197 94;
  --color-brand-500: 22 163 74;
  --color-brand-600: 21 128 61;
  --color-brand-700: 20 83 45;

  /* Neutral */
  --color-neutral-50: 250 250 250;
  --color-neutral-100: 245 245 245;
  --color-neutral-200: 229 229 229;
  --color-neutral-300: 212 212 212;
  --color-neutral-400: 163 163 163;
  --color-neutral-500: 115 115 115;
  --color-neutral-600: 82 82 82;
  --color-neutral-700: 64 64 64;
  --color-neutral-800: 38 38 38;
  --color-neutral-900: 23 23 23;

  --color-red-400: 248 113 113;
  --color-yellow-400: 250 204 21;
  --color-green-400: 74 222 128;
  --color-amber-100: 254 243 199;
  --color-amber-400: 251 191 36;
  --color-amber-800: 146 64 14;

  --color-white: 255 255 255;
  --color-black: 0 0 0;

  --font-sans:
    "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  padding-top: var(--nav-height, 3.6rem);
  background:
    radial-gradient(
      45rem 45rem at 90% -10%,
      rgb(var(--color-brand-100) / 0.28),
      transparent 65%
    ),
    radial-gradient(
      40rem 40rem at -10% 35%,
      rgb(var(--color-brand-50)),
      transparent 60%
    ),
    radial-gradient(
      45rem 45rem at 105% 75%,
      rgb(var(--color-brand-100) / 0.2),
      transparent 65%
    ),
    rgb(var(--color-white));
  color: rgb(var(--color-neutral-900));
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  background: rgb(var(--color-brand-500));
  color: rgb(var(--color-white));
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: rgb(var(--color-neutral-100));
}
::-webkit-scrollbar-thumb {
  background: rgb(var(--color-neutral-300));
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(var(--color-neutral-400));
}

/* ---------- Ícones SVG inline ---------- */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-sm {
  width: 1rem;
  height: 1rem;
}
.icon-xs {
  width: 0.875rem;
  height: 0.875rem;
}
.icon-lg {
  width: 1.75rem;
  height: 1.75rem;
}
.icon-xl {
  width: 2.5rem;
  height: 2.5rem;
}

/* ---------- Ícones 3D (webp) ---------- */
.icon-3d {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}
.icon-3d-sm {
  width: 1.5rem;
  height: 1.5rem;
}
.icon-3d-lg {
  width: 2.5rem;
  height: 2.5rem;
}

/* ---------- Layout · Container ---------- */
.container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.container-sm {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.container-xs {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ---------- Responsividade do grid (2 col -> 1 col) ---------- */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 {
  grid-template-columns: 1fr;
}
.grid-3 {
  grid-template-columns: 1fr;
}
.grid-5 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ---------- Seções ---------- */
.section {
  padding: 4rem 0;
}
.section-lg {
  padding: 5rem 0;
}
@media (min-width: 640px) {
  .section {
    padding: 5rem 0;
  }
  .section-lg {
    padding: 6rem 0;
  }
}
.bg-neutral {
  background: rgb(var(--color-neutral-50));
  position: relative;
  overflow: hidden;
}
.bg-neutral::before {
  content: "";
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 22rem;
  height: 22rem;
  background: rgb(var(--color-brand-100) / 0.3);
  border-radius: 50%;
  filter: blur(90px);
}
.bg-neutral::after {
  content: "";
  position: absolute;
  bottom: -6rem;
  left: -6rem;
  width: 22rem;
  height: 22rem;
  background: rgb(var(--color-brand-100) / 0.25);
  border-radius: 50%;
  filter: blur(90px);
}
.bg-neutral .container {
  position: relative;
}
.bg-dark {
  background: rgb(var(--color-neutral-900));
  color: rgb(var(--color-white));
  position: relative;
  overflow: hidden;
}
.bg-dark::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgb(var(--color-brand-500));
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.22;
  transform: translate(30%, -30%);
}
.bg-dark::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: rgb(var(--color-brand-300));
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.14;
  transform: translate(-30%, 30%);
}
.bg-dark .container {
  position: relative;
}

/* ---------- Títulos de seção ---------- */
.section-title {
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  color: rgb(var(--color-neutral-500));
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}
@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

/* Section badge centralizado */
.section-badge-wrap {
  text-align: center;
  margin-bottom: 1rem;
}
.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  color: rgb(var(--color-brand-500));
  background: rgb(var(--color-brand-500) / 0.05);
}
.section-badge.light {
  color: rgb(var(--color-brand-300));
  background: rgb(var(--color-brand-300) / 0.1);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}
.btn:focus-visible {
  outline: 2px solid var(--color-brand-600);
  outline-offset: 2px;
}

.btn-brand {
  background: rgb(var(--color-brand-500));
  color: rgb(var(--color-white));
}
.btn-brand:hover {
  background: rgb(var(--color-brand-600));
  transform: scale(1.05);
}

.btn-white {
  background: rgb(var(--color-white));
  color: rgb(var(--color-brand-600));
}
.btn-white:hover {
  background: rgb(var(--color-brand-50));
  transform: scale(1.05);
}

.btn-ghost {
  background: rgb(var(--color-white) / 0.1);
  border: 1px solid rgb(var(--color-white) / 0.2);
  color: rgb(var(--color-brand-100));
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgb(var(--color-white) / 0.2);
  color: rgb(var(--color-white));
}

.btn-md {
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
}
.btn-lg {
  font-size: 1rem;
  padding: 1rem 2rem;
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* ---------- Padrão de fundo em grade ---------- */
.bg-grid {
  background-image:
    linear-gradient(rgb(var(--color-brand-500) / 0.04) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgb(var(--color-brand-500) / 0.04) 1px,
      transparent 1px
    );
  background-size: 60px 60px;
}

/* ---------- Barra de navegação ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  background: rgb(var(--color-white) / 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgb(var(--color-neutral-100));
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.navbar.scrolled {
  background: rgb(var(--color-white) / 0.95);
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.06);
  border-bottom-color: rgb(var(--color-neutral-200));
}
:root {
  --nav-height: 3.6rem;
}
@media (min-width: 640px) {
  :root {
    --nav-height: 4.125rem;
  }
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
@media (min-width: 640px) {
  .navbar-inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-logo {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgb(var(--color-brand-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-white));
}
.brand-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgb(var(--color-brand-500));
}
.brand-text b {
  color: rgb(var(--color-black));
  font-weight: 700;
}
.brand-logo-img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2rem;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(var(--color-neutral-500));
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: rgb(var(--color-brand-500));
}
.nav-link.active {
  color: rgb(var(--color-brand-500));
  font-weight: 700;
  position: relative;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: rgb(var(--color-brand-500));
  border-radius: 999px;
}
.nav-link:focus-visible,
.nav-cta:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid rgb(var(--color-brand-500));
  outline-offset: 2px;
}
.nav-link .chev {
  transition: transform 0.2s ease;
}
.nav-link.open .chev {
  transform: rotate(180deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(var(--color-neutral-600));
  transition: color 0.2s ease;
}
.nav-back:hover {
  color: rgb(var(--color-neutral-900));
}
.nav-back .icon {
  transition: transform 0.2s ease;
}
.nav-back:hover .icon {
  transform: translateX(-2px);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgb(var(--color-brand-500));
  color: rgb(var(--color-white));
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 10px 15px -3px rgb(var(--color-brand-500) / 0.4);
  transition:
    background-color 0.2s ease,
    transform 0.3s ease;
}
.nav-cta:hover {
  background: rgb(var(--color-brand-600));
  transform: scale(1.05);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgb(var(--color-neutral-200));
  background: rgb(var(--color-white));
  color: rgb(var(--color-neutral-700));
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.nav-toggle:hover {
  color: rgb(var(--color-brand-500));
  border-color: rgb(var(--color-brand-500) / 0.3);
}
.nav-toggle .icon {
  width: 1.25rem;
  height: 1.25rem;
}
.nav-toggle .icon-close {
  display: none;
}
.navbar.open .nav-toggle .icon-menu {
  display: none;
}
.navbar.open .nav-toggle .icon-close {
  display: block;
}
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

/* Painel do menu mobile */
.nav-mobile-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgb(var(--color-white) / 0.98);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgb(var(--color-neutral-100));
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08);
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 0.3s ease,
    visibility 0.3s,
    opacity 0.25s ease,
    transform 0.25s ease;
}
.navbar.open .nav-mobile-panel {
  max-height: calc(100vh - 4.5rem);
  overflow-y: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .nav-mobile-panel {
    transition: none;
  }
}
.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}
.nav-back-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(var(--color-neutral-600));
  transition: color 0.2s ease;
}
.nav-back-mobile:hover {
  color: rgb(var(--color-neutral-900));
}
.nav-mobile-group {
  display: flex;
  flex-direction: column;
}
.nav-mobile-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgb(var(--color-neutral-400));
  margin-bottom: 0.5rem;
}
.nav-mobile-group a {
  display: block;
  padding: 0.85rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgb(var(--color-neutral-700));
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.nav-mobile-group a:hover {
  background: rgb(var(--color-brand-500) / 0.06);
  color: rgb(var(--color-brand-500));
}
.nav-mobile-group a.active {
  background: rgb(var(--color-brand-500) / 0.08);
  color: rgb(var(--color-brand-500));
  font-weight: 700;
}
@media (min-width: 768px) {
  .nav-mobile-panel {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      55rem 30rem at 10% -15%,
      rgb(var(--color-brand-400) / 0.45),
      transparent 60%
    ),
    radial-gradient(
      40rem 28rem at 105% 10%,
      rgb(var(--color-brand-300) / 0.3),
      transparent 60%
    ),
    radial-gradient(
      45rem 30rem at 50% 120%,
      rgb(var(--color-brand-700)),
      transparent 65%
    ),
    linear-gradient(
      135deg,
      rgb(var(--color-brand-500)),
      rgb(var(--color-brand-600)) 50%,
      rgb(var(--color-brand-700))
    );
  color: rgb(var(--color-white));
}
.hero-blob-a {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: rgb(var(--color-brand-400));
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: aurora-a 14s ease-in-out infinite;
}
.hero-blob-b {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: rgb(var(--color-brand-300));
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: aurora-b 18s ease-in-out infinite;
}
@keyframes aurora-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.2;
  }
  33% {
    transform: translate(3rem, 2rem) scale(1.15);
    opacity: 0.28;
  }
  66% {
    transform: translate(-2rem, -1.5rem) scale(0.9);
    opacity: 0.16;
  }
}
@keyframes aurora-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.15;
  }
  40% {
    transform: translate(-4rem, -2rem) scale(1.2);
    opacity: 0.22;
  }
  75% {
    transform: translate(2.5rem, 1.5rem) scale(0.85);
    opacity: 0.12;
  }
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgb(var(--color-brand-200));
  opacity: 0.5;
  filter: blur(1px);
  animation: particle-rise 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes particle-rise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  15% {
    opacity: 0.55;
  }
  50% {
    transform: translateY(-2.5rem) translateX(1rem);
  }
  85% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-5rem) translateX(-0.75rem);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-blob-a,
  .hero-blob-b,
  .hero-particle {
    animation: none;
  }
  .hero-particle {
    opacity: 0.35;
  }
}

.hero-inner {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 5rem;
}
@media (min-width: 640px) {
  .hero-inner {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgb(var(--color-white) / 0.1);
  border: 1px solid rgb(var(--color-white) / 0.1);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgb(var(--color-brand-300));
}
.pill-pulse {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.pill-text {
  color: rgb(var(--color-brand-100));
  font-weight: 500;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: rgb(var(--color-brand-200));
}
.hero-title .spark {
  display: inline-block;
  margin-left: 0.5rem;
  color: rgb(var(--color-brand-200));
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgb(var(--color-brand-100));
  max-width: 32rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
}

.hero-check-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: rgb(var(--color-brand-100));
}
.check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.check-dot {
  color: rgb(var(--color-brand-300));
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-visual {
    align-items: flex-end;
  }
}
/* ---------- Hero Stack (imagens empilhadas animadas) ---------- */
.hero-stack {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) {
  .hero-stack {
    max-width: 640px;
    height: 440px;
  }
}
@media (min-width: 1024px) {
  .hero-stack {
    max-width: none;
    height: 480px;
  }
}
.hero-stack-layer {
  position: absolute;
  width: 90%;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgb(var(--color-white) / 0.15);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  background: rgb(var(--color-neutral-900));
  will-change: transform, opacity;
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.8s ease;
}
.hero-stack-layer img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-stack.estado-1 .layer-front {
  z-index: 2;
  transform: translate(1rem, 1rem) scale(1);
  opacity: 1;
}
.hero-stack.estado-1 .layer-back {
  z-index: 1;
  transform: translate(-2.6rem, -2.4rem) scale(0.96);
  opacity: 0.96;
}
.hero-stack.estado-2 .layer-front {
  z-index: 1;
  transform: translate(-2.6rem, -2.4rem) scale(0.96);
  opacity: 0.96;
}
.hero-stack.estado-2 .layer-back {
  z-index: 2;
  transform: translate(1rem, 1rem) scale(1);
  opacity: 1;
}
@media (max-width: 640px) {
  .hero-stack-layer {
    width: 92%;
  }
  .hero-stack.estado-1 .layer-front,
  .hero-stack.estado-2 .layer-back {
    transform: translate(0.85rem, 0.85rem) scale(1);
  }
  .hero-stack.estado-1 .layer-back,
  .hero-stack.estado-2 .layer-front {
    transform: translate(-1.9rem, -1.6rem) scale(0.96);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-stack-layer {
    transition: none;
  }
}
.hero-stack-progress {
  width: 90%;
  max-width: 520px;
  height: 3px;
  margin-top: 1.25rem;
  background: rgb(var(--color-white) / 0.2);
  border-radius: 999px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .hero-stack-progress {
    max-width: 640px;
  }
}
@media (min-width: 1024px) {
  .hero-stack-progress {
    max-width: none;
  }
}
@media (max-width: 640px) {
  .hero-stack-progress {
    width: 92%;
  }
}
.hero-stack-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: rgb(var(--color-white));
  border-radius: inherit;
  will-change: width;
}
@media (prefers-reduced-motion: reduce) {
  .hero-stack-progress {
    display: none;
  }
}

/* ---------- Social Proof ---------- */
.social-proof {
  border-bottom: 1px solid rgb(var(--color-neutral-100));
  position: relative;
  overflow: hidden;
}
.social-proof::before {
  content: "";
  position: absolute;
  top: -6rem;
  left: 10%;
  width: 20rem;
  height: 20rem;
  background: rgb(var(--color-brand-100) / 0.25);
  border-radius: 50%;
  filter: blur(90px);
}
.social-proof .container {
  position: relative;
}
.social-proof .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.social-proof h2 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: rgb(var(--color-neutral-400));
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .social-proof h2 {
    font-size: 0.875rem;
  }
}
.social-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    rgb(0 0 0) 12%,
    rgb(0 0 0) 88%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    rgb(0 0 0) 12%,
    rgb(0 0 0) 88%,
    transparent
  );
}
.social-track {
  display: flex;
  width: max-content;
  animation: social-marquee 30s linear infinite;
}
.social-track:hover {
  animation-play-state: paused;
}
.social-track-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  opacity: 0.9;
}
@media (min-width: 640px) {
  .social-track-group {
    gap: 4rem;
    padding-right: 4rem;
  }
}
@keyframes social-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .social-track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .social-track-group {
    padding-right: 2rem;
  }
  .social-track-group + .social-track-group {
    display: none;
  }
}
.social-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(var(--color-neutral-400));
}
.social-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* ---------- Produtos (two cards) ---------- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.card {
  border-radius: 2rem;
  border: 1px solid rgb(var(--color-neutral-200));
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}
.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 20px 40px rgb(0 0 0 / 0.08),
    0 6px 12px rgb(0 0 0 / 0.05);
}
.card-light {
  background: rgb(var(--color-white));
  border-color: rgb(var(--color-neutral-200));
}
.card-dark {
  background: rgb(var(--color-neutral-900));
  color: rgb(var(--color-white));
  border-color: rgb(var(--color-neutral-800));
  position: relative;
  overflow: hidden;
}
.card-inner {
  position: relative;
  z-index: 1;
  padding: 2rem;
}
@media (min-width: 640px) {
  .card-inner {
    padding: 2.5rem;
  }
}
.card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgb(var(--color-brand-500));
  opacity: 0.22;
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(50%, -50%);
  pointer-events: none;
}
.card-dark::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  background: rgb(var(--color-brand-300));
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.14;
  pointer-events: none;
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  color: rgb(var(--color-brand-500));
  background: rgb(var(--color-brand-500) / 0.05);
}
.card-tag.light {
  color: rgb(var(--color-brand-300));
  background: rgb(var(--color-brand-300) / 0.1);
}

.icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--color-brand-500) / 0.1);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}
.group:hover .icon-box {
  transform: scale(1.1);
}
.icon-box.circle {
  border-radius: 999px;
  margin-left: auto;
  margin-right: auto;
}
.icon-box.center {
  margin-left: auto;
  margin-right: auto;
}
.icon-box.tint {
  background: rgb(var(--color-brand-500) / 0.1);
}
.card-dark .icon-box {
  background: rgb(var(--color-white) / 0.12);
}
.flag-img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  border-radius: 0.25rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.card-desc {
  color: rgb(var(--color-neutral-500));
  margin-bottom: 1.5rem;
}
.card-dark .card-desc {
  color: rgb(var(--color-neutral-400));
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.check-bullet {
  margin-top: 0.125rem;
  background: rgb(var(--color-brand-500) / 0.1);
  border-radius: 999px;
  padding: 0.25rem;
  color: rgb(var(--color-brand-500));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.card-dark .check-bullet {
  background: rgb(var(--color-brand-300) / 0.1);
  color: rgb(var(--color-brand-300));
}
.check-list span {
  font-size: 0.875rem;
  color: rgb(var(--color-neutral-600));
}
.card-dark .check-list span {
  color: rgb(var(--color-neutral-300));
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-arrow .icon {
  transition: transform 0.3s ease;
}
.btn-arrow:hover .icon {
  transform: translateX(4px);
}

.group {
  transition: transform 0.3s ease;
}
.card-dark .group:hover .icon-box {
  transform: scale(1.1);
}

/* ---------- Differentiators ---------- */
.diff-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .diff-track {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .diff-track {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mini-card {
  position: relative;
  background: rgb(var(--color-white));
  border-radius: 1rem;
  border: 1px solid rgb(var(--color-neutral-100));
  padding: 1.5rem;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 640px) {
  .mini-card {
    padding: 2rem;
  }
}
.mini-card h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.mini-card p {
  font-size: 0.875rem;
  color: rgb(var(--color-neutral-500));
  line-height: 1.6;
}
.mini-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgb(var(--color-amber-100));
  color: rgb(var(--color-amber-800));
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
}
.mini-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgb(var(--color-brand-500));
  background: rgb(var(--color-brand-500) / 0.05);
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

/* ---------- Qualifier ---------- */
.qualifier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .qualifier-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.qualifier-card {
  border-radius: 2rem;
  padding: 2rem;
}
@media (min-width: 640px) {
  .qualifier-card {
    padding: 2.5rem;
  }
}
.qualifier-green {
  background: linear-gradient(
    135deg,
    rgb(var(--color-brand-50)),
    rgb(var(--color-white))
  );
  border: 1px solid rgb(var(--color-brand-200) / 0.5);
}
.qualifier-green h3 {
  color: rgb(var(--color-brand-600));
}
.qualifier-dark {
  background: rgb(var(--color-neutral-900));
  color: rgb(var(--color-white));
  border: 1px solid rgb(var(--color-neutral-800));
  position: relative;
  overflow: hidden;
}
.qualifier-dark::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  background: rgb(var(--color-brand-300));
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.14;
  pointer-events: none;
}
.qualifier-dark h3 {
  color: rgb(var(--color-brand-300));
}
.qualifier-dark p {
  color: rgb(var(--color-neutral-300));
}
.qualifier-dark .card-desc {
  color: rgb(var(--color-neutral-300));
  margin-bottom: 2rem;
}
.icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgb(var(--color-brand-500) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.qualifier-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.qualifier-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.qualifier-check {
  margin-top: 0.125rem;
  background: rgb(var(--color-brand-500));
  color: rgb(var(--color-white));
  border-radius: 999px;
  padding: 0.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.qualifier-list span {
  color: rgb(var(--color-neutral-700));
}
.qualifier-body {
  position: relative;
  z-index: 1;
}

/* ---------- Plans ---------- */
.plan-card {
  position: relative;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 2.5rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgb(var(--color-brand-500)),
    rgb(var(--color-brand-700))
  );
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}
@media (min-width: 640px) {
  .plan-card {
    padding: 3rem;
  }
}
.plan-head {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgb(var(--color-white) / 0.15);
  color: rgb(var(--color-white));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.plan-glow-a {
  position: absolute;
  top: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background: rgb(var(--color-brand-400));
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  pointer-events: none;
}
.plan-glow-b {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  background: rgb(var(--color-brand-300));
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  pointer-events: none;
}
.plan-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .plan-card h3 {
    font-size: 1.875rem;
  }
}
.plan-desc {
  color: rgb(var(--color-brand-100));
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 36rem;
}
.plan-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .plan-features {
    grid-template-columns: 1fr 1fr;
  }
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
}
.plan-check {
  flex-shrink: 0;
  background: rgb(var(--color-white) / 0.2);
  color: rgb(var(--color-white));
  border-radius: 999px;
  padding: 0.08rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

/* ---------- CTA ---------- */
.cta-wrap {
  position: relative;
  border-radius: 2.5rem;
  padding: 2rem;
  background: rgb(var(--color-neutral-900));
  color: rgb(var(--color-white));
  text-align: center;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.35);
}
@media (min-width: 640px) {
  .cta-wrap {
    padding: 4rem;
  }
}
.cta-wrap h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-glow-a {
  position: absolute;
  top: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background: rgb(var(--color-brand-500));
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
}
.cta-glow-b {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  background: rgb(var(--color-brand-300));
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}
.cta-wrap {
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-wrap h2 {
    font-size: 3rem;
  }
}
.cta-desc {
  color: rgb(var(--color-neutral-400));
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}
.cta-ticks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: rgb(var(--color-neutral-300));
}
.cta-ticks span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.cta-ticks .icon {
  color: rgb(var(--color-brand-400));
}

/* ---------- Contato / Formulário ---------- */
.contact-form {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  background: rgb(var(--color-white));
  border-radius: 2rem;
  border: 1px solid rgb(var(--color-neutral-200));
  padding: 2rem;
}
@media (min-width: 640px) {
  .contact-form {
    padding: 2.5rem;
  }
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.form-grid .col-span-2 {
  grid-column: span 1 / span 1;
}
@media (min-width: 640px) {
  .form-grid .col-span-2 {
    grid-column: span 2 / span 2;
  }
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(var(--color-neutral-700));
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgb(var(--color-neutral-200));
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  background: rgb(var(--color-white));
}
.form-input:focus {
  border-color: rgb(var(--color-brand-500));
  box-shadow: 0 0 0 2px rgb(var(--color-brand-500) / 0.1);
}
textarea.form-input {
  resize: vertical;
  overflow: hidden;
  min-height: 6rem;
}
.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgb(var(--color-brand-500));
  color: rgb(var(--color-white));
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 999px;
  border: none;
  transition:
    background-color 0.2s ease,
    transform 0.3s ease,
    opacity 0.2s;
}
.form-submit:hover:not(:disabled) {
  background: rgb(var(--color-brand-600));
  transform: scale(1.05);
}
.form-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.form-hint {
  font-size: 0.75rem;
  color: rgb(var(--color-neutral-400));
  text-align: center;
  margin-top: 1rem;
}

/* ---------- Image Placeholder ---------- */
.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 1rem;
  background: rgb(var(--color-neutral-200));
  border: 1px solid rgb(var(--color-neutral-300));
  overflow: hidden;
  color: rgb(var(--color-neutral-400));
}
.img-frame {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.image-placeholder .icon {
  width: 2.5rem;
  height: 2.5rem;
}
.image-placeholder span {
  font-size: 0.875rem;
  color: rgb(var(--color-neutral-500));
  font-weight: 500;
  text-align: center;
  padding: 0 1rem;
}
.aspect-video {
  aspect-ratio: 16 / 9;
}
.aspect-16-9 {
  aspect-ratio: 16 / 9;
}

/* ---------- Stat cards (Visão 360º) ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.stat-card {
  background: rgb(var(--color-white));
  border: 1px solid rgb(var(--color-neutral-200));
  border-radius: 1.5rem;
  padding: 1.75rem;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.08);
}
.stat-card .icon-box {
  margin-bottom: 1.25rem;
}
.stat-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.stat-card p {
  font-size: 0.875rem;
  color: rgb(var(--color-neutral-500));
  line-height: 1.6;
}

/* ---------- Timeline de módulos (Retaguarda) ---------- */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.75rem;
  width: 2px;
  background: linear-gradient(
    rgb(var(--color-brand-300) / 0.6),
    rgb(var(--color-brand-500) / 0.2)
  );
  transform: translateX(-50%);
}
@media (min-width: 1024px) {
  .timeline::before {
    left: 50%;
  }
}
.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
  }
}
.timeline-dot {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--color-white));
  border: 2px solid rgb(var(--color-brand-500));
  box-shadow: 0 4px 14px rgb(var(--color-brand-500) / 0.25);
}
.timeline-dot .icon-3d {
  width: 1.75rem;
  height: 1.75rem;
}
@media (min-width: 1024px) {
  .timeline-dot {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.timeline-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 5rem;
}
@media (min-width: 1024px) {
  .timeline-body {
    padding-left: 0;
  }
}
.timeline-text {
  background: rgb(var(--color-white));
  border: 1px solid rgb(var(--color-neutral-200));
  border-radius: 1.5rem;
  padding: 2rem;
}
@media (min-width: 640px) {
  .timeline-text {
    padding: 2.5rem;
  }
}
.timeline-media {
  position: relative;
}
.timeline-item .timeline-media {
  padding-left: 5rem;
}
@media (min-width: 1024px) {
  .timeline-item .timeline-media {
    padding-left: 0;
  }
}
.timeline-media .img-frame {
  position: relative;
  z-index: 2;
}
.feature-blob {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  background: rgb(var(--color-neutral-400));
  border-radius: 1rem;
  opacity: 0.3;
  filter: blur(4px);
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .timeline-item.reverse .timeline-media {
    order: 1;
  }
  .timeline-item.reverse .timeline-body {
    order: 2;
  }
}
.timeline-text .card-tag {
  margin-bottom: 1rem;
}
.timeline-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.timeline-text > p {
  color: rgb(var(--color-neutral-500));
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Mobile (<1024px): imagem em largura total no topo, linha + ponto ao lado do texto */
@media (max-width: 1023.98px) {
  .timeline::before {
    display: none;
  }
  .timeline-item {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 1.25rem 0;
  }
  .timeline-media {
    grid-column: 1 / -1;
    grid-row: 1;
    padding-left: 0;
  }
  .timeline-media .feature-blob {
    right: 0;
  }
  .timeline-dot {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }
  .timeline-body {
    position: relative;
    grid-column: 2;
    grid-row: 2;
    padding-left: 0;
  }
  .timeline-body::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -3.25rem;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
      rgb(var(--color-brand-300) / 0.6),
      rgb(var(--color-brand-500) / 0.2)
    );
  }
}

/* ---------- Footer ---------- */
.footer {
  background: rgb(var(--color-black));
  color: rgb(var(--color-white));
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  border-bottom: 1px solid rgb(var(--color-neutral-800));
  padding-bottom: 3rem;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.footer-brand-col {
}
@media (min-width: 640px) {
  .footer-brand-col {
    grid-column: span 2 / span 2;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-brand-text {
  font-size: 1.125rem;
  font-weight: 700;
}
.footer-brand-text span {
  color: rgb(var(--color-brand-300));
}
.footer-desc {
  font-size: 0.875rem;
  color: rgb(var(--color-neutral-400));
  max-width: 20rem;
  line-height: 1.6;
}
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgb(var(--color-neutral-800));
  color: rgb(var(--color-neutral-400));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.social-link:hover {
  background: rgb(var(--color-brand-500));
}
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgb(var(--color-white));
  margin-bottom: 1.25rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgb(var(--color-neutral-400));
}
.footer-col a {
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: rgb(var(--color-brand-300));
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  color: rgb(var(--color-neutral-500));
  font-size: 0.75rem;
  gap: 1rem;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}
.footer-bottom .local {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgb(var(--color-brand-300));
}

/* ---------- Animações de revelação ---------- */
/* Sempre visível por padrão; o JS adiciona .js e então aplica estados ocultos */
.gsap .animate-fade-up,
.gsap .animate-fade-left,
.gsap .animate-fade-right,
.gsap .animate-scale {
  transition: none;
}
.js .animate-fade-up,
.js .animate-fade-left,
.js .animate-fade-right,
.js .animate-scale {
  opacity: 0;
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}
.js .animate-fade-up {
  transform: translateY(40px);
}
.js .animate-fade-left {
  transform: translateX(-40px);
}
.js .animate-fade-right {
  transform: translateX(40px);
}
.js .animate-scale {
  transform: scale(0.9);
}
.js .animate-fade-up.visible,
.js .animate-fade-left.visible,
.js .animate-fade-right.visible,
.js .animate-scale.visible {
  opacity: 1;
  transform: none;
}
.js .animate-fade-in {
  animation: dgs-fade-in 0.6s ease-out both;
}
@keyframes dgs-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}

/* Pulso de brilho no CTA */
.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgb(var(--color-brand-500) / 0.3);
  }
  50% {
    box-shadow: 0 0 0 20px rgb(var(--color-brand-500) / 0);
  }
}

/* ---------- Hero Retaguarda (centralizado) ---------- */
.hero-center {
  text-align: center;
}

.hero-center .hero-inner {
  padding-top: 4rem;
  padding-bottom: 5rem;
}
@media (min-width: 640px) {
  .hero-center .hero-inner {
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
}
.hero-center .hero-inner {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-center .hero-title {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-center .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.hero-center .hero-actions {
  align-items: center;
  justify-content: center;
}
.hero-center .hero-check-list {
  justify-content: center;
}
.hero-center .hero-carousel-wrap {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.hero-mockup {
  margin-top: 3.5rem;
}
@media (min-width: 640px) {
  .hero-mockup {
    margin-top: 4rem;
  }
}

/* ---------- Vision Tabs (Visão 360º) ---------- */
.vision-tabs {
  position: relative;
  max-width: 64rem;
  margin: 0 auto 3rem;
  background: rgb(var(--color-white));
  border: 1px solid rgb(var(--color-neutral-200));
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.06);
}
.vision-tabs .feature-blob {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  background: rgb(var(--color-neutral-400));
  border-radius: 1rem;
  opacity: 0.15;
  filter: blur(4px);
  z-index: 1;
  pointer-events: none;
}
.vision-tabs-nav {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgb(var(--color-neutral-50));
  border-bottom: 1px solid rgb(var(--color-neutral-100));
  justify-content: center;
}
@media (min-width: 640px) {
  .vision-tabs-nav {
    gap: 0.75rem;
    padding: 1rem;
  }
}
.vision-tab {
  flex: 1;
  max-width: 16rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: rgb(var(--color-neutral-600));
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.vision-tab:hover {
  background: rgb(var(--color-white));
  border-color: rgb(var(--color-neutral-200));
  color: rgb(var(--color-neutral-900));
}
.vision-tab.active {
  background: rgb(var(--color-brand-500));
  color: rgb(var(--color-white));
  border-color: rgb(var(--color-brand-500));
  box-shadow: 0 4px 12px rgb(var(--color-brand-500) / 0.25);
}
.vision-tab:focus-visible {
  outline: 2px solid rgb(var(--color-brand-500));
  outline-offset: 2px;
}
.vision-tabs-panels {
  position: relative;
  z-index: 2;
  padding: 1rem;
  background: rgb(var(--color-white));
}
@media (min-width: 640px) {
  .vision-tabs-panels {
    padding: 1.25rem;
  }
}
.vision-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.vision-panel.active {
  display: block;
  opacity: 1;
}
.vision-panel .img-frame {
  width: 100%;
  border-radius: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  .vision-panel {
    transition: none;
  }
}

/* ---------- Vision Features (blocos separados) ---------- */
.vision-features {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 3rem;
}
.vision-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .vision-feature {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}
.vision-feature-text .card-tag {
  margin-bottom: 1rem;
}
.vision-feature-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: rgb(var(--color-neutral-900));
}
@media (min-width: 640px) {
  .vision-feature-text h3 {
    font-size: 1.875rem;
  }
}
.vision-feature-text > p {
  color: rgb(var(--color-neutral-500));
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.vision-feature-media {
  position: relative;
}
.vision-feature-media .feature-blob {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 100%;
  height: 100%;
  background: rgb(var(--color-neutral-400));
  border-radius: 1rem;
  opacity: 0.12;
  filter: blur(6px);
  z-index: 1;
  pointer-events: none;
}
.vision-feature.reverse .vision-feature-media .feature-blob {
  right: auto;
  left: -0.75rem;
}
.vision-feature-media .img-frame {
  position: relative;
  z-index: 2;
  border-radius: 1rem;
  border: 1px solid rgb(var(--color-neutral-200));
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.12), 0 8px 16px rgb(0 0 0 / 0.06);
  background: rgb(var(--color-white));
}

/* ---------- Em construção ---------- */
.under-construction {
  padding-top: 3rem;
  padding-bottom: 1rem;
}
.under-card {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 2rem;
  border: 1px solid rgb(var(--color-neutral-200));
  background: rgb(var(--color-white));
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08);
}
@media (min-width: 640px) {
  .under-card {
    padding: 4rem 3rem;
  }
}
.uc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgb(var(--color-brand-50));
  color: rgb(var(--color-brand-500));
  margin-bottom: 1.5rem;
}
.uc-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgb(var(--color-brand-700));
  background: rgb(var(--color-brand-100));
  border-radius: 999px;
  padding: 0.25rem 0.875rem;
  margin-bottom: 1rem;
}
.uc-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(var(--color-neutral-900));
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .uc-title {
    font-size: 2.25rem;
  }
}
.uc-status {
  display: inline-block;
  font-weight: 700;
  color: rgb(var(--color-brand-600));
  font-size: 1rem;
  margin-bottom: 0.875rem;
}
.uc-desc {
  max-width: 34rem;
  margin: 0 auto 2rem;
  color: rgb(var(--color-neutral-500));
  font-size: 1.05rem;
}

/* ---------- Botão flutuante do WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #25d366;
  color: rgb(var(--color-white));
  box-shadow: 0 8px 20px -4px rgb(0 0 0 / 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 24px -4px rgb(0 0 0 / 0.4);
}
.wa-icon {
  width: 2rem;
  height: 2rem;
}

/* ---------- Botão voltar ao topo ---------- */
.to-top {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  border: 1px solid rgb(var(--color-neutral-700));
  background: rgb(var(--color-neutral-900));
  color: rgb(var(--color-white));
  box-shadow: 0 8px 20px -4px rgb(0 0 0 / 0.45);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top:hover {
  background: rgb(var(--color-neutral-800));
  border-color: rgb(var(--color-neutral-600));
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -4px rgb(0 0 0 / 0.55);
}
.to-top .icon {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 640px) {
  .wa-float {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 4rem;
    height: 4rem;
  }
  .wa-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
  .to-top {
    left: 1.5rem;
    bottom: 1.5rem;
    width: 4rem;
    height: 4rem;
  }
}

/* ---------- Lightbox ---------- */
.lightbox-trigger {
  cursor: zoom-in;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgb(0 0 0 / 0.85);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-img {
  max-width: min(90vw, 70rem);
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.5);
  transform: scale(0.96);
  transition: transform 0.25s ease;
}
.lightbox.open .lightbox-img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgb(var(--color-white) / 0.1);
  color: rgb(var(--color-white));
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-close:hover {
  background: rgb(var(--color-white) / 0.2);
}
.lightbox-close svg {
  width: 1.25rem;
  height: 1.25rem;
}
.no-scroll {
  overflow: hidden;
}
