:root {
  --ink: #0b2a3c;
  --soft-ink: #2d2a25;
  --muted: #6f675e;
  --paper: #fffaf2;
  --cream: #f4ead8;
  --tile-blue: #7fa4b9;
  --tile-yellow: #e7bb58;
  --tile-red: #b75b45;
  --gold: #c69d55;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
  --product-scroll-duration: 42s;
  --product-scroll-distance: -50%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

a:hover,
a:focus-visible {
  color: var(--gold);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(198, 157, 85, 0.35);
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.95);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.hero-actions,
.site-footer,
.header-cta,
.language-switch {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand img {
  width: 180px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.brand:hover,
.brand:focus-visible {
  opacity: 0.86;
  transform: translateY(-1px);
}

.nav-links {
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--tile-yellow);
}

.language-switch {
  gap: 4px;
  padding: 4px;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.language-switch a {
  display: inline-flex;
  min-width: 38px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 900;
}

.language-switch a:hover,
.language-switch a:focus-visible,
.language-switch a.is-active {
  color: var(--ink);
  background: var(--tile-yellow);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78svh);
  height: max(100svh, 56.25vw);
  background: url("assets/images/vetrina.jpg") center / cover no-repeat;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0.92;
}

.hero-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.93) 0%, rgba(17, 17, 17, 0.68) 47%, rgba(17, 17, 17, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.6), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 124px clamp(18px, 4vw, 44px) 52px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 870px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.26rem);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 22px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--ink);
  background: var(--tile-yellow);
  box-shadow: 0 16px 34px rgba(231, 187, 88, 0.26);
}

.button.primary:hover,
.button.primary:focus-visible {
  color: var(--ink);
  background: #f1c96a;
  box-shadow: 0 20px 42px rgba(231, 187, 88, 0.34);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.18);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--ink);
  border-color: var(--gold);
  background: #fff4d8;
}

.full {
  width: 100%;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.market-proof {
  display: grid;
  max-width: 1200px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 44px auto 0;
}

.market-proof div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.07);
}

.market-proof dt {
  color: var(--ink);
  font-size: clamp(1.32rem, 2.4vw, 1.8rem);
  font-weight: 950;
}

.market-proof dd {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.35;
}

section:not(.hero) {
  padding: 96px clamp(18px, 5vw, 72px);
}

.band {
  background: var(--cream);
}

.section-grid,
.support,
.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.section-grid,
.support,
.split-layout {
  max-width: 1200px;
  margin: 0 auto;
}

.design,
.investment,
.lead-section {
  width: 100%;
  max-width: none;
  margin: 0;
}

.split-layout-start {
  align-items: start;
}

.stacked-copy p:not(.eyebrow),
.experience-copy p:not(.eyebrow),
.investment-copy p:not(.eyebrow),
.lead-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.30rem;
  line-height: 1.75;
}

.section-heading {
  max-width: 1200px;
  margin: 0 auto 34px;
}

.section-heading.narrow {
  max-width: 820px;
  text-align: center;
}

.benefit-grid {
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  min-height: 292px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.07);
}

.icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-weight: 950;
}

.benefit-card:nth-child(2) .icon {
  background: var(--tile-blue);
}

.benefit-card:nth-child(3) .icon {
  background: var(--tile-red);
}

.benefit-card p,
.timeline p,
.support-list p,
.price-grid p,
.trust-list {
  color: var(--muted);
  line-height: 1.65;
}

.visual-pair {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
  align-items: end;
}

.visual-pair img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-pair img:first-child {
  align-self: start;
}

.visual-pair img:last-child {
  margin-top: 52px;
}

.design {
  position: relative;
  background: url("assets/images/format.jpg") center / cover no-repeat; 
}

.design .split-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.design-visual {
  margin: 0;
}

.design-visual img {
  width: 100%;
  min-height: 500px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.design .experience-copy {
  width: 100%;
  max-width: 640px;
  justify-self: end;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  overflow-wrap: break-word;
}

.design .experience-copy h2,
.design .experience-copy p {
  max-width: 100%;
}

.product-showcase {
  background: var(--paper);
}

.product-slider {
  position: relative;
  max-width: 1200px;
  margin: 36px auto 0;
  overflow: hidden;
}

.product-slider::before,
.product-slider::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
}

.product-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(255, 250, 242, 0));
}

.product-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(255, 250, 242, 0));
}

.product-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: product-scroll var(--product-scroll-duration) linear infinite;
  animation-play-state: paused;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.product-track.is-ready {
  animation-play-state: running;
}

.product-slider:hover .product-track.is-ready {
  animation-play-state: paused;
}

.product-card {
  flex: 0 0 clamp(210px, 22vw, 280px);
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.07);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  background: var(--white);
}

.product-card h3 {
  margin: 18px 0 0;
  text-align: center;
}

@keyframes product-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--product-scroll-distance), 0, 0);
  }
}

.revenue {
  position: relative;
  background:
    linear-gradient(rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.9)),
    url("assets/images/hero-desktop.png") center / cover no-repeat;
}

.timeline {
  display: grid;
  max-width: 1200px;
  margin: 36px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.timeline article {
  min-height: 245px;
  padding: 26px;
  background: var(--white);
}

.timeline span,
.price-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.investment {
  align-items: start;
}

.fine-print {
  font-size: 0.9rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.price-grid div {
  min-height: 210px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.07);
}

.price-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
}

.support {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.support > div {
  display: grid;
  gap: 34px;
}

.support h2 {
  max-width: 820px;
  margin-inline: auto;
}

.support-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}

.support-list article {
  min-height: 220px;
  padding: 26px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--cream);
}

.support-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.62);
}

.support-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding-left: 19px;
}

.lead-section {
  position: relative;
  overflow: hidden;
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.lead-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/pattern.png") center / cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.lead-section > * {
  position: relative;
  z-index: 1;
}

.lead-copy p:not(.eyebrow),
.lead-section .trust-list {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.30rem;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(198, 157, 85, 0.25);
  border-color: var(--gold);
}

.consent-group {
  display: grid;
  gap: 12px;
}

.consent-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.consent-label input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.consent-label a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-label a:hover,
.consent-label a:focus-visible {
  color: var(--gold);
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer p {
  margin: 0;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--ink);
  border-color: var(--tile-yellow);
  background: var(--tile-yellow);
}

.social-links i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.social-links .fa-linkedin::before {
  content: "in";
  font-size: 1.05rem;
}

.social-links .fa-instagram::before {
  content: "◎";
  font-size: 1.35rem;
}

.thank-you-page {
  background: var(--cream);
}

.thank-you {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 150px clamp(18px, 5vw, 72px) 88px;
  background:
    linear-gradient(rgba(244, 234, 216, 0.86), rgba(244, 234, 216, 0.94)),
    url("assets/images/pattern.png") center / 520px repeat;
}

.thank-you-card {
  width: min(100%, 820px);
  padding: clamp(32px, 6vw, 68px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card h1 {
  max-width: none;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.thank-you-card p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.7;
}

.thank-you-card .hero-actions {
  justify-content: center;
}

@media (max-width: 960px) {
  :root {
    --product-scroll-duration: 26s;
  }

  .site-header {
    color: var(--ink);
    background: rgba(255, 250, 242, 0.95);
  }

  .nav-links {
    display: none;
  }

  .language-switch a {
    min-width: 34px;
    min-height: 30px;
  }

  .hero-content {
    justify-content: end;
  }

  h1 {
    font-size: clamp(2.72rem, 14vw, 4.8rem);
  }

  .market-proof,
  .benefit-grid,
  .section-grid,
  .design,
  .investment,
  .support,
  .lead-section,
  .split-layout,
  .timeline,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .visual-pair {
    grid-template-columns: 1fr 1fr;
  }

  .support-list {
    grid-template-columns: 1fr;
  }

  .product-card {
    flex-basis: 240px;
  }

  .design .split-layout {
    grid-template-columns: 1fr;
  }

  .design .experience-copy {
    max-width: none;
    justify-self: stretch;
  }

  .design-visual img {
    min-height: 360px;
  }

  section:not(.hero) {
    padding-block: 70px;
  }
}

@media (max-width: 600px) {
  :root {
    --product-scroll-duration: 20s;
  }

  .brand span {
    display: none;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .market-proof div,
  .benefit-card,
  .lead-form,
  .price-grid div,
  .timeline article {
    padding: 22px;
  }

  .visual-pair {
    grid-template-columns: 1fr;
  }

  .visual-pair img:last-child {
    margin-top: 0;
  }

  .design-visual img {
    min-height: 280px;
  }

  .product-card {
    flex-basis: 210px;
  }

}
