/* COBEE 2026 — embed styles */
html, body {
  margin: 0;
  padding: 0;
  background: #fbfbf7;
  color: #141946;
  font-family: Inter, system-ui, sans-serif;
}

h1, h2, h3, h4 {
  font-family: "Barlow Condensed", Inter, sans-serif;
  letter-spacing: -0.01em;
}

/* Marquee (loop horizontal) */
@keyframes mq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mq-track {
  animation: mq 35s linear infinite;
  width: max-content;
}
.mq-mask {
  -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);
}

/* Hero fade */
@keyframes hf {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-slide {
  animation: hf 0.7s ease-out both;
}

/* Barra listrada lime no rodapé do hero */
.bars {
  background-image: repeating-linear-gradient(
    to right,
    #c6ea3f 0 6px,
    transparent 6px 14px
  );
}
