:root {
  --bg: #12091f;
  --bg-2: #1a0f2e;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-2: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: #b9aecb;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --cyan: #22d3ee;
  --green: #34d399;
  --dark: #090513;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, .35), transparent 34%),
    radial-gradient(circle at 80% 15%, rgba(236, 72, 153, .22), transparent 28%),
    linear-gradient(135deg, var(--bg), var(--bg-2) 55%, #07030f);
  color: var(--text);
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.orb {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: .42;
  pointer-events: none;
  z-index: -1;
}

.orb-one {
  top: 80px;
  left: -120px;
  background: var(--purple);
}

.orb-two {
  top: 420px;
  right: -140px;
  background: var(--pink);
}

.orb-three {
  display: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(12, 7, 25, .72);
  border-bottom: 1px solid var(--border);
}

.topbar-content {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 600;
  font-size: .94rem;
}

.desktop-nav a {
  transition: .25s var(--ease);
}

.desktop-nav a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.topbar-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  transition: .35s var(--ease);
}

.topbar-cta {
  padding: 12px 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid var(--border);
}

.topbar-cta:hover,
.btn:hover {
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.08);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 4px;
}

.mobile-menu {
  display: none;
  padding: 0 16px 18px;
}

.mobile-menu a {
  display: block;
  padding: 14px;
  margin-top: 8px;
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255,255,255,.06);
}

.mobile-menu.active {
  display: block;
}

.hero {
  width: 100%;
  padding: 96px 0 70px;
}

.hero-grid,
.showcase-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 52px;
  align-items: center;
}

.eyebrow,
.section-tag,
.product-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #f4eaff;
  font-size: .85rem;
  font-weight: 800;
  background: rgba(139, 92, 246, .18);
  border: 1px solid rgba(139, 92, 246, .35);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.hero-content p,
.split-header p,
.showcase-copy p,
.dev-copy p,
.contact-copy p {
  margin-top: 24px;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
}

.btn-primary,
.btn-secondary {
  border-radius: 8px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 18px 46px rgba(139, 92, 246, .35);
}

.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
}

.btn-full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--muted);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  font-size: .86rem;
  font-weight: 700;
}

.hero-showcase {
  position: relative;
  min-height: 520px;
}

.product-stack,
.category-card,
.preview-card,
.step-card,
.price-card,
.contact-card,
.dev-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.product-stack-main {
  min-height: 440px;
  padding: 34px;
  border-radius: var(--radius-xl);
  transform: rotate(1deg);
  overflow: hidden;
}

.product-stack-main h2 {
  max-width: 58%;
  font-size: 2.05rem;
  line-height: 1.05;
}

.product-stack-main p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.ticket-one {
  top: 58px;
  right: 24px;
  max-width: 185px;
  z-index: 3;
}

@media (max-width: 760px) {
  .product-stack-main h2 {
    max-width: 100%;
    font-size: 2rem;
  }

  .ticket-one {
    max-width: 100%;
  }
}

.stack-chart {
  height: 180px;
  display: flex;
  align-items: end;
  gap: 14px;
  margin-top: 54px;
}

.stack-chart span {
  width: 100%;
  height: var(--height);
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, var(--cyan), var(--purple));
  box-shadow: 0 18px 45px rgba(34, 211, 238, .22);
  transform-origin: bottom;
  animation: chartFloat 3.8s ease-in-out infinite;
}

.stack-chart span:nth-child(1) {
  animation-delay: 0s;
}

.stack-chart span:nth-child(2) {
  animation-delay: .4s;
}

.stack-chart span:nth-child(3) {
  animation-delay: .8s;
}

.stack-chart span:nth-child(4) {
  animation-delay: 1.2s;
}

.stack-chart span:nth-child(5) {
  animation-delay: 1.6s;
}

@keyframes chartFloat {
  0% {
    transform: scaleY(1);
  }

  25% {
    transform: scaleY(1.12);
  }

  50% {
    transform: scaleY(.88);
  }

  75% {
    transform: scaleY(1.08);
  }

  100% {
    transform: scaleY(1);
  }
}

.floating-ticket {
  position: absolute;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.1);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.floating-ticket strong,
.floating-ticket span {
  display: block;
}

.floating-ticket span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .88rem;
}


.ticket-two {
  left: -10px;
  bottom: 55px;
}

.ticker {
  width: 100%;
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--border);
  background: rgba(255,255,255,.05);
}

.ticker-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding-left: 100%;
  animation: tickerMove 28s linear infinite;
}

.ticker-track span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,.72);
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.section {
  padding: 96px 0;
}

.split-header {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.split-header h2,
.section-header h2,
.showcase-copy h2,
.dev-copy h2,
.contact-copy h2 {
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: .96;
}

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

.category-card,
.step-card,
.price-card {
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: .35s var(--ease);
}

.category-card:hover,
.step-card:hover,
.price-card:hover,
.preview-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.3);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,.1);
  font-size: 1.7rem;
}

.category-card h3,
.step-card h3,
.price-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.category-card p,
.step-card p,
.price-card p {
  color: var(--muted);
  line-height: 1.65;
}

.showcase-section {
  width: 100%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.04), transparent);
}

.showcase-section .container {
  width: min(1440px, calc(100% - 48px));
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: #f7d2ff;
  font-weight: 800;
}

.preview-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.preview-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: .35s var(--ease);
}

.preview-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.preview-card div {
  padding: 18px;
}

.preview-card span {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
}

.preview-card h3 {
  margin-top: 4px;
  font-size: 1.35rem;
}

.large-preview {
  grid-row: span 2;
}

.large-preview img {
  height: 390px;
}

.dev-panel {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 32px;
  align-items: center;
  padding: 42px;
  border-radius: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(236,72,153,.22), transparent 30%),
    rgba(255,255,255,.08);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.dev-list {
  display: grid;
  gap: 14px;
}

.dev-list div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
}

.dev-list strong {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.step-card span,
.price-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--cyan);
  font-weight: 900;
}

.price-card.featured {
  background:
    linear-gradient(135deg, rgba(139,92,246,.28), rgba(236,72,153,.18)),
    var(--panel);
  border-color: rgba(236, 72, 153, .36);
}

.price {
  margin: 18px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff !important;
}

.contact-card {
  padding: 30px;
  border-radius: var(--radius-xl);
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-points div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
}

.contact-points strong,
.contact-points span {
  display: block;
}

.contact-points span {
  color: var(--muted);
  margin-top: 4px;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  color: #eee7ff;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  color: #fff;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
  transition: .25s var(--ease);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(139,92,246,.7);
  box-shadow: 0 0 0 4px rgba(139,92,246,.16);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255,255,255,.45);
}

.form-row select option {
  color: #161027;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
}

.checkbox-group {
  display: flex;
  gap: 10px;
  margin: 12px 0 18px;
  color: var(--muted);
  line-height: 1.45;
  font-size: .92rem;
}

.checkbox-group input {
  margin-top: 4px;
  accent-color: var(--purple);
}

.checkbox-group a {
  color: #f0b4ff;
  font-weight: 800;
}

.form-feedback {
  min-height: 22px;
  margin-top: 14px;
  color: var(--green);
  font-weight: 800;
}

.form-feedback.error {
  color: #fb7185;
}

.dock-nav {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  max-width: calc(100vw - 24px);
  padding: 8px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #12091f;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: none;
  backdrop-filter: none;
  overflow: hidden;
}

.dock-item {
  min-width: 64px;
  display: grid;
  place-items: center;
  gap: 3px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  transition: .25s var(--ease);
}

.dock-item span {
  font-size: 1.1rem;
}

.dock-item small {
  font-size: .72rem;
  font-weight: 800;
}

.dock-item:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 100px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 20px 45px rgba(18, 140, 126, .3);
  transition: .3s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.04);
}

.footer {
  padding: 42px 0 110px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.18);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-up {
  transform: translateY(34px);
}

.reveal-left {
  transform: translateX(-38px);
}

.reveal-right {
  transform: translateX(38px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1024px) {
  .desktop-nav,
  .topbar-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .showcase-grid,
  .contact-grid,
  .split-header,
  .dev-panel {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 460px;
  }

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

  .dev-panel {
  width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .topbar-content {
    height: 70px;
  }

  .logo span {
    font-size: .95rem;
  }

  .logo-img {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding: 64px 0 46px;
  }

  h1 {
    font-size: clamp(2.7rem, 18vw, 4.3rem);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-showcase {
    min-height: auto;
  }

  .product-stack-main {
    min-height: auto;
    transform: none;
    padding: 26px;
  }

  .product-stack-main h2 {
    font-size: 2rem;
  }

  .stack-chart {
    height: 130px;
  }

  .floating-ticket {
    position: static;
    margin-top: 14px;
  }

  .section {
    padding: 70px 0;
  }

  .split-header h2,
  .section-header h2,
  .showcase-copy h2,
  .dev-copy h2,
  .contact-copy h2 {
    font-size: 2.35rem;
  }

  .product-grid,
  .steps-grid,
  .pricing-grid,
  .preview-board {
    grid-template-columns: 1fr;
  }

  .large-preview img,
  .preview-card img {
    height: 230px;
  }

  .dev-panel {
    padding: 24px;
  }

  .dock-nav {
    width: calc(100% - 20px);
    justify-content: space-between;
    bottom: 12px;
  }

  .dock-item {
    min-width: auto;
    flex: 1;
  }

.whatsapp-float {
  right: 10px;
  bottom: 92px;
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
}

  .footer {
    padding-bottom: 100px;
  }
}

/* NOVOS PRODUTOS + MAIS VENDIDOS */

.new-products-grid,
.best-sellers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 280px));
  justify-content: center;
  gap: 16px;
}

.new-product-card,
.best-seller-card {
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  transition: .35s var(--ease);
}

.new-product-card:hover,
.best-seller-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.28);
}

.product-image {
  overflow: hidden;
  height: 160px;
}

.product-image img,
.best-seller-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.product-content,
.best-content {
  padding: 16px;
}

.product-category,
.best-content span {
  color: var(--cyan);
  font-size: .82rem;
  font-weight: 800;
}

.product-content h3,
.best-content h3 {
  margin: 10px 0 14px;
  font-size: 1.15rem;
}

.product-content p {
  color: var(--muted);
  line-height: 1.55;
  font-size: .92rem;
}

.product-footer,
.best-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-footer {
  margin-top: 18px;
}

.product-footer strong {
  font-size: 1.08rem;
}

.product-footer a,
.best-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  font-weight: 800;
  transition: .3s var(--ease);
}

.best-product-link {
  width: 100%;
  margin-top: 18px;
}

.product-footer a:hover,
.best-product-link:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.14);
}

.best-seller-card {
  position: relative;
}

.best-rank {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  font-weight: 800;
}

.best-seller-card img {
  height: 190px;
}

.best-meta strong {
  color: #fff;
  font-size: .92rem;
}

.best-meta small {
  color: var(--muted);
  font-size: .9rem;
}

/* AVALIAÇÕES DOS CLIENTES */

.reviews-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(139, 92, 246, .18), transparent 24%),
    radial-gradient(circle at 85% 30%, rgba(236, 72, 153, .14), transparent 28%),
    linear-gradient(
      135deg,
      #140b22 0%,
      #1b102d 35%,
      #24113d 70%,
      #12091f 100%
    );
}

.reviews-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .18;
}

.reviews-container {
  position: relative;
  z-index: 2;
}

.reviews-header {
  max-width: 850px;
  margin-bottom: 42px;
}

.reviews-tag {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
}

.reviews-header h2 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: .95;
}

.reviews-header p {
  margin-top: 22px;
  max-width: 700px;
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.review-card {
  min-height: 280px;
  padding: 28px;
  border-radius: 8px;
  background: rgba(15, 23, 42, .62);
  border: 1px solid rgba(59,130,246,.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
  transition: .35s var(--ease);
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34,211,238,.55);
  box-shadow: 0 30px 90px rgba(34,211,238,.14);
}

.review-stars {
  margin-bottom: 24px;
  color: #facc15;
  font-size: 1.25rem;
  letter-spacing: 4px;
  text-shadow: 0 0 22px rgba(250,204,21,.35);
}

.review-card p {
  color: rgba(255,255,255,.86);
  font-size: 1rem;
  line-height: 1.75;
}

.review-author {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.review-author strong,
.review-author span {
  display: block;
}

.review-author strong {
  color: #fff;
  font-size: 1.05rem;
}

.review-author span {
  margin-top: 4px;
  color: #60a5fa;
  font-size: .92rem;
  font-weight: 700;
}

/* RESPONSIVO */

@media (max-width: 1024px) {
  .new-products-grid,
  .best-sellers-grid {
    grid-template-columns: repeat(2, minmax(0, 300px));
  }

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

@media (max-width: 760px) {
  .new-products-grid,
  .best-sellers-grid,
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
  }

  .new-product-card,
  .best-seller-card {
    min-width: 265px;
    max-width: 265px;
    flex: 0 0 265px;
    scroll-snap-align: start;
  }

  .review-card {
    min-width: 280px;
    max-width: 280px;
    flex: 0 0 280px;
    min-height: 300px;
    scroll-snap-align: start;
  }

  .product-image,
  .best-seller-card img {
    height: 160px;
  }

  .reviews-section {
    padding: 78px 0;
  }

  .new-products-grid::-webkit-scrollbar,
  .best-sellers-grid::-webkit-scrollbar,
  .reviews-grid::-webkit-scrollbar {
    height: 6px;
  }

  .new-products-grid::-webkit-scrollbar-thumb,
  .best-sellers-grid::-webkit-scrollbar-thumb,
  .reviews-grid::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.26);
    border-radius: 999px;
  }
}

/* SCROLL HORIZONTAL MOBILE - SEÇÕES PRINCIPAIS */

@media (max-width: 760px) {
  .product-grid,
  .preview-board,
  .steps-grid,
  .pricing-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
  }

  .category-card,
  .preview-card,
  .step-card,
  .price-card {
    min-width: 265px;
    max-width: 265px;
    flex: 0 0 265px;
    scroll-snap-align: start;
  }

  .large-preview {
    grid-row: auto;
  }

  .large-preview img,
  .preview-card img {
    height: 180px;
  }

  .product-grid::-webkit-scrollbar,
  .preview-board::-webkit-scrollbar,
  .steps-grid::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar {
    height: 6px;
  }

  .product-grid::-webkit-scrollbar-thumb,
  .preview-board::-webkit-scrollbar-thumb,
  .steps-grid::-webkit-scrollbar-thumb,
  .pricing-grid::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.26);
    border-radius: 999px;
  }
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main,
header,
footer {
  max-width: 100%;
  overflow-x: clip;
}

@media (max-width: 760px) {
  .product-grid,
  .preview-board,
  .steps-grid,
  .pricing-grid,
  .new-products-grid,
  .best-sellers-grid,
  .reviews-grid {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }
}

/* BOTÃO VOLTAR AO TOPO - MOBILE */

.scroll-top-btn {
  position: fixed;
  right: 12px;
  bottom: 152px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 16px 38px rgba(139,92,246,.28);
  transition: .3s var(--ease);
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
}

.scroll-top-btn.show {
  display: flex;
}

@media (min-width: 761px) {
  .scroll-top-btn {
    display: none !important;
  }
}

/* MASCOTE - BLOCO PRODUTOS */

.products-header {
  display: grid;
  grid-template-columns: 1.1fr 620px;
  gap: 10px;
  align-items: center;
}

.products-copy {
  max-width: 860px;
}

.products-copy h2 {
  margin-top: 18px;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  line-height: .96;
  max-width: 820px;
}

.products-description {
  max-width: 720px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.9;
}

.products-mascot-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.products-mascot {
  width: 620px;
  max-width: unset;
  object-fit: contain;
  filter:
    drop-shadow(0 36px 75px rgba(34, 211, 238, .32))
    drop-shadow(0 0 60px rgba(139, 92, 246, .24));
  transform: translateY(10px);
}

/* RESPONSIVO - MASCOTE PRODUTOS */

@media (max-width: 760px) {
  .products-header {
    grid-template-columns: 1fr;
    gap: 24px;
    overflow: hidden;
  }

  .products-copy h2 {
    font-size: clamp(2.3rem, 12vw, 3.2rem);
    line-height: 1;
    max-width: 100%;
  }

  .products-description {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.75;
  }

  .products-mascot-wrap {
    justify-content: center;
    overflow: hidden;
  }

  .products-mascot {
    width: 360px;
    max-width: 115%;
    transform: translateY(0);
  }
}

.gradient-text {
  background: linear-gradient(
    90deg,
    #ff4fd8 0%,
    #b961ff 38%,
    #7c7dff 68%,
    #39d6ff 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  display: inline-block;

  filter: drop-shadow(0 0 18px rgba(185, 97, 255, .18));
}

/* MASCOTE - COMO FUNCIONA */

.process-header {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 20px;
  align-items: center;
}

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

.process-copy h2 {
  margin-top: 18px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .96;
}

.process-description {
  max-width: 640px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.process-mascot-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-mascot {
  width: 520px;
  max-width: unset;
  object-fit: contain;

  filter:
    drop-shadow(0 36px 75px rgba(34, 211, 238, .24))
    drop-shadow(0 0 60px rgba(59, 130, 246, .18));

  transform: translateY(16px);
}

/* RESPONSIVO */

@media (max-width: 760px) {
  .process-header {
    grid-template-columns: 1fr;
    gap: 26px;
    overflow: hidden;
  }

  .process-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
    line-height: 1;
  }

  .process-description {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.7;
  }

  .process-mascot-wrap {
    justify-content: center;
    overflow: hidden;
  }

  .process-mascot {
    width: 360px;
    max-width: 115%;
    transform: translateY(0);
  }
}

.process-link {
  margin-top: 28px;
}

/* LASER BAR EM BLOCOS - COMO FUNCIONA */

.process-laser-bar {
  width: 100%;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}

.process-laser-bar span {
  height: 10px;
  border-radius: 0;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(34, 211, 238, .22);
  position: relative;
  overflow: hidden;
}

.process-laser-bar span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #22d3ee,
    #3b82f6,
    #8b5cf6
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

.process-laser-bar span.is-filled::before {
  transform: scaleX(1);
}

@keyframes fillLaserBlockStep {
  0% {
    opacity: 1;
    transform: scaleX(0);
  }

  5% {
    opacity: 1;
    transform: scaleX(1);
  }

  6.5% {
    opacity: 0;
    transform: scaleX(0);
  }

  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}

@media (max-width: 760px) {
  .process-laser-bar span:nth-child(n+7) {
    display: none;
  }

  .process-laser-bar span::before {
  animation-duration: 7.4s;
  }

  .process-laser-bar {
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
  }
}

/* =========================================================
   COOKIES CONSENT
========================================================= */

.cookies-consent {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: min(420px, calc(100% - 32px));
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s ease;
}

.cookies-consent.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookies-consent__content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cookies-consent__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    flex-shrink: 0;
}

.cookies-consent__text strong {
    display: block;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.cookies-consent__text p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
    line-height: 1.6;
}

.cookies-consent__text a {
    color: #c084fc;
    text-decoration: none;
}

.cookies-consent__text a:hover {
    color: #ffffff;
}

.cookies-consent__actions {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
}

.cookies-btn {
    border: none;
    border-radius: 14px;
    padding: 12px 18px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.cookies-btn--primary {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #ffffff;
}

.cookies-btn--primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

@media (max-width: 768px) {
    .cookies-consent {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        border-radius: 20px;
    }

    .cookies-consent__content {
        flex-direction: column;
    }

    .cookies-consent__icon {
        width: 48px;
        height: 48px;
    }

    .cookies-consent__actions {
        justify-content: stretch;
    }

    .cookies-btn {
        width: 100%;
    }
}