:root {
  --bg: #050505;
  --gray-100: #0a0a0b;
  --gray-200: #131315;
  --gray-300: #1d1e20;
  --gray-400: #2a2c30;
  --gray-500: #a0a2a7;
  --gray-700: #6c6e74;
  --gray-900: #efeff0;
  --green: #a0ed07;
  --green-soft: rgba(160, 237, 7, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--gray-900);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--wide { max-width: 1840px; }

/* CTA */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--green);
  color: var(--gray-100);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  border-radius: 999px;
  border: 0;
  transition: transform .15s ease, filter .15s ease;
}
.cta:hover { filter: brightness(1.05); transform: translateY(-1px); }
.cta--block { width: 100%; justify-content: center; padding: 16px 24px; }

.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.04em;
  text-align: center;
  margin: 0 0 40px;
}

.accent { color: var(--green); }

/* HERO */
.hero { padding: 64px 0 0; }
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.hero > .container > .cta { margin: 16px 0 0; }
.logo img { height: 32px; width: auto; }
.pill {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid var(--gray-500);
  border-radius: 999px;
  font-size: 14px;
  color: var(--gray-500);
  letter-spacing: -0.01em;
}
.hero__title {
  font-size: clamp(36px, 5.6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 0;
  max-width: 900px;
}
.hero__sub {
  font-size: 20px;
  color: var(--gray-500);
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 720px;
}
.hero__video {
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 720;
  background: radial-gradient(ellipse at center, #141416 0%, var(--gray-100) 70%);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero__unmute {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--green);
  color: var(--gray-100);
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  transition: transform .15s ease, filter .15s ease, opacity .25s ease;
}
.hero__unmute:hover { filter: brightness(1.05); transform: translateX(-50%) translateY(-1px); }
.hero__unmute.is-hidden { display: none; }

/* PHONES — drag carousel */
.phones {
  padding: 116px 0 96px;
  overflow: hidden;
}
.phones__track {
  display: flex;
  gap: 24px;
  align-items: center;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  padding-inline: calc(50% - 103.5px);
  padding-block: 80px;
  margin-block: -80px;
  scroll-behavior: smooth;
}
.phones__track::-webkit-scrollbar { display: none; }
.phones__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.phone {
  flex: 0 0 auto;
  width: 207px;
  height: 424px;
  object-fit: cover;
  border-radius: 32px;
  scroll-snap-align: center;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1),
              filter 0.45s ease,
              opacity 0.45s ease;
  filter: brightness(.55) saturate(.85);
  opacity: .85;
  user-select: none;
  -webkit-user-drag: none;
  cursor: inherit;
}
.phone.is-active {
  transform: scale(1.32);
  filter: brightness(1) saturate(1);
  opacity: 1;
  z-index: 2;
}

/* BRANDS */
.brands { padding: 72px 0 56px; }
.brands__marquee {
  --brands-gap: 56px;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.brands__track {
  display: flex;
  width: max-content;
  animation: brands-scroll 40s linear infinite;
}
.brands__marquee:hover .brands__track { animation-play-state: paused; }
.brands__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.brands__group li {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  height: 58px;
  padding-inline: 8px;
  margin-right: var(--brands-gap);
}
.brands__group img {
  height: 36px;
  width: auto;
  opacity: .85;
  filter: brightness(0) invert(1);
  transition: opacity .15s ease;
}
.brands__group img:hover { opacity: 1; }
@keyframes brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brands__track { animation: none; }
}

/* DIFERENCIAIS */
.diferenciais { padding: 48px 0 0; }
.diferenciais__grid {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 0;
}
.diferenciais > .container > .cta { margin: 120px 0 64px; }
.card {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card--tall {
  grid-row: span 2;
}
.card--split {
  flex-direction: row;
  align-items: stretch;
}
.card--split-reverse {
  flex-direction: row-reverse;
}
.card__media {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.card__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.card--tall .card__media {
  padding: 32px 32px 0;
}
.card__body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.card--split .card__body {
  flex: 1 1 50%;
  justify-content: center;
  padding: 32px;
}
.card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--gray-900);
  line-height: 1.3;
}
.card__text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--gray-500);
  line-height: 1.5;
}
.card__list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* SPLIT */
.split { padding: 56px 0; }
.split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split__copy h2 {
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  max-width: 480px;
}
.split__copy p { color: var(--gray-500); margin: 0; }

.check-list { display: grid; gap: 12px; }
.check-list li {
  --progress: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--green);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-100);
  letter-spacing: -0.01em;
  opacity: var(--progress);
  transform:
    translateY(calc((1 - var(--progress)) * 32px))
    scale(calc(0.8 + var(--progress) * 0.2));
}
@media (prefers-reduced-motion: reduce) {
  .check-list li { --progress: 1; }
}
.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path d='M4 10l4 4 8-8' stroke='%230a0a0b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* RECURSOS */
.recursos { padding: 64px 0 0; }
.recursos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 0;
}
.recursos > .container > .cta { margin: 120px 0 56px; }
.feature {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 240px;
  text-align: left;
}
.feature__icon {
  width: 32px;
  height: 32px;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.feature__icon svg { width: 32px; height: 32px; }
.feature h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}
.feature p { color: var(--gray-500); font-size: 13px; margin: 0; line-height: 1.5; }

.recursos > .container,
.diferenciais > .container,
.lojistas > .container { text-align: center; }

/* LOJISTAS */
.lojistas { padding: 64px 0 0; }
.lojistas__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 0;
  text-align: left;
}
.lojistas > .container > .cta { margin: 120px 0 56px; }
.testimonial {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.testimonial__media {
  position: relative;
  aspect-ratio: 442 / 249;
  background: #111;
  overflow: hidden;
  padding: 0;
  border: 0;
  width: 100%;
  cursor: pointer;
  display: block;
}
.testimonial__media:hover > img { filter: brightness(.9); }
.testimonial__media:hover .testimonial__play { transform: translate(-50%, -50%) scale(1.08); }
.testimonial__play { transition: transform .15s ease; }
.testimonial__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.75);
  transition: filter .15s ease;
}
.testimonial__play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  pointer-events: none;
}
.testimonial__body {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.testimonial__brand {
  height: 20px;
  width: auto;
  align-self: flex-start;
}
.testimonial p {
  margin: 0;
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  flex: 1;
}
.testimonial footer { display: flex; flex-direction: column; gap: 8px; }
.testimonial footer strong { font-size: 13px; font-weight: 600; color: var(--gray-900); }
.testimonial footer span { font-size: 12px; color: var(--gray-500); }

/* FAQ */
.faq { padding: 64px 0; }
.faq__list { display: grid; gap: 16px; }
.faq-item {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--gray-900);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.faq-item__icon::before {
  left: 50%; top: 50%;
  width: 14px; height: 2px;
  transform: translate(-50%, -50%);
}
.faq-item__icon::after {
  left: 50%; top: 50%;
  width: 2px; height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-item__icon::after { opacity: 0; }
.faq-item__body {
  padding: 0 32px 28px;
  color: var(--gray-500);
  font-size: 15px;
}

/* CTA FORM */
.contato { padding: 64px 0; }
.contato__grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 520px);
  gap: 80px;
  align-items: center;
}
.contato__copy h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 24px;
  max-width: 460px;
}
.contato__copy p { color: var(--gray-500); margin: 0; max-width: 480px; }
.contato__form {
  display: grid;
  gap: 16px;
  width: 100%;
  justify-self: end;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 40px;
}
.field { display: grid; gap: 8px; font-size: 13px; color: var(--gray-500); }
.field input {
  width: 100%;
  padding: 14px 16px;
  background: var(--gray-200);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  color: var(--gray-900);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: border-color .15s ease;
}
.field input::placeholder { color: var(--gray-700); }
.field input:focus { border-color: var(--green); }
.field__input-wrap { position: relative; display: block; }
.field__input-wrap input { padding-left: 48px; }
.field__prefix {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.field__prefix svg { display: block; border-radius: 2px; }

.cta--submit {
  width: 100%;
  justify-content: center;
  border-radius: 14px;
  padding: 16px 24px;
  margin-top: 8px;
}

/* FOOTER */
.footer { padding: 32px 0 48px; border-top: 1px solid var(--gray-300); margin-top: 32px; }
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { color: var(--gray-500); font-size: 13px; }
.footer__links a:hover { color: var(--gray-900); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--gray-300);
  color: var(--gray-500);
  transition: color .15s ease, border-color .15s ease;
}
.footer__social a:hover { color: var(--green); border-color: var(--green); }

/* VIDEO MODAL */
.video-modal {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(90vw, 1200px);
  width: 90vw;
  color: var(--gray-900);
  overflow: visible;
}
.video-modal::backdrop {
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(4px);
}
.video-modal__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
  transition: background .15s ease;
}
.video-modal__close:hover { background: rgba(255, 255, 255, .12); }
.video-modal[open] { animation: video-modal-in .2s ease-out; }
@keyframes video-modal-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .phones__track { overflow-x: auto; justify-content: flex-start; scrollbar-width: none; }
  .phones__track::-webkit-scrollbar { display: none; }
}
@media (max-width: 960px) {
  .diferenciais__grid { grid-template-columns: 1fr; }
  .card--tall { grid-row: auto; }
  .card--split,
  .card--split-reverse { flex-direction: column; }
  .brands__marquee { --brands-gap: 40px; }
  .brands__track { animation-duration: 30s; }
  .split__grid { grid-template-columns: 1fr; gap: 32px; }
  .recursos__grid { grid-template-columns: repeat(2, 1fr); }
  .lojistas__grid { grid-template-columns: 1fr; }
  .contato__grid { grid-template-columns: 1fr; gap: 32px; }
  .contato__form { justify-self: stretch; max-width: none; }
}
@media (max-width: 560px) {
  .hero { padding-top: 32px; }
  .hero__title { font-size: 34px; }
  .hero {
    min-height: 100svh;
    display: flex;
  }
  .hero .container { gap: 16px; flex: 1; }
  .hero > .container > .cta { margin: auto 0; }
  .recursos__grid { grid-template-columns: 1fr; }
  .brands__marquee { --brands-gap: 32px; }
  .brands__track { animation-duration: 25s; }
  .faq-item summary { padding: 20px 24px; font-size: 16px; }
  .faq-item__body { padding: 0 24px 20px; }
}
