/* Correções de estrutura para as seções inferiores da landing. */
.why {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr) !important;
  align-items: start;
  column-gap: clamp(56px, 9vw, 150px);
}

.why > div {
  max-width: 490px !important;
}

.why ol {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.why li {
  display: flex !important;
  align-items: flex-start;
  gap: 18px;
  margin: 0 0 25px !important;
  padding: 0 0 25px !important;
  border-bottom: 1px solid #27303a !important;
}

.why li:last-child {
  margin-bottom: 0 !important;
}

.why li span {
  display: block;
  flex: 0 0 20px;
  min-width: 20px;
  line-height: 1.25;
}

.why li b {
  display: block;
  font-size: 17px;
}

.why li p {
  margin: 7px 0 0 !important;
}

.final {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center !important;
}

.final .eyebrow,
.final > p,
.final .cta {
  margin-left: auto !important;
  margin-right: auto !important;
}

.final > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.cta {
  background: #25d366 !important;
  color: #06120a !important;
  box-shadow: 0 13px 30px rgba(37, 211, 102, 0.24) !important;
}

/* Interações: o site responde ao hover, foco e clique sem prejudicar o toque. */
.cta,
.header-cta,
.text-cta,
.brand,
.interest-categories a,
.offer,
.benefits article,
.timing-grid article {
  transition: transform 220ms cubic-bezier(.2,.75,.25,1), box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #25d366 !important;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -42%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.78), transparent);
  transform: skewX(-23deg) translateX(-420%);
  animation: button-sheen 4.6s cubic-bezier(.2,.75,.35,1) infinite;
  pointer-events: none;
}

.cta:hover,
.header-cta:hover,
.text-cta:hover {
  transform: translateY(-3px);
}

.cta:hover {
  box-shadow: 0 18px 36px rgba(37, 211, 102, .34) !important;
}

.cta:active,
.header-cta:active,
.interest-categories a:active,
.text-cta:active {
  transform: translateY(1px) scale(.975);
}

.brand:hover {
  transform: translateX(3px);
}

.header-cta:hover {
  border-color: #25d366;
  background: #25d366 !important;
  color: #06120a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .2);
}

.offer:hover {
  transform: translateY(-5px);
  border-color: #25d366 !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.32);
}

.benefits article:hover,
.timing-grid article:hover {
  transform: translateY(-6px);
  border-color: #25d366 !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.community-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 17px 0 8px;
}

.community-avatars {
  display: flex;
  padding-left: 12px;
}

.community-avatars span {
  width: 34px;
  height: 34px;
  margin-left: -12px;
  display: grid;
  place-items: center;
  border: 2px solid #050505;
  border-radius: 50%;
  background-image: url('/community-avatars-v3.png');
  background-size: 200% 200%;
  background-position: left top;
  font-size: 14px;
}

.community-avatars span:nth-child(2) { background-position: right top; }
.community-avatars span:nth-child(3) { background-position: left bottom; }
.community-avatars span:nth-child(4) { background-position: right bottom; }
.community-note p { margin: 0; color: #d6dbe2; font-size: 12px; line-height: 1.25; }
.community-note b { color: #fff; }

.timing {
  padding: 105px max(28px, calc((100vw - 1080px) / 2));
  background: #111;
  text-align: center;
}

.timing h2 {
  margin: 20px 0 52px;
  font: 700 clamp(34px, 4.5vw, 61px)/1.03 Oswald, sans-serif;
  letter-spacing: .2px;
}

.timing h2 em { color: var(--yellow); font-style: normal; }
.timing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: left; }
.timing-grid article { padding: 31px; border-radius: 16px; background: #181818; border: 1px solid #2a2a2a; }
.timing-grid h3 { margin: 0 0 20px; font: 700 25px Oswald, sans-serif; }
.timing-grid ul { margin: 0; padding: 0; list-style: none; }
.timing-grid li { padding: 16px 0; border-top: 1px solid #303030; color: #ebebeb; line-height: 1.35; }
.timing-grid .late { border-bottom-color: #f05252; }
.timing-grid .late h3 { color: #ff5b5b; }
.timing-grid .early { border-bottom-color: var(--yellow); }
.timing-grid .early h3 { color: var(--yellow); }
.timing-cta { margin-top: 36px; }

@keyframes button-sheen {
  0%, 58% { transform: skewX(-23deg) translateX(-420%); opacity: 0; }
  62% { opacity: .8; }
  80% { transform: skewX(-23deg) translateX(760%); opacity: .8; }
  84%, 100% { transform: skewX(-23deg) translateX(760%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

.category-kicker {
  margin: 58px 0 14px;
  color: var(--yellow);
  font: 700 12px Oswald, sans-serif;
  letter-spacing: 1.2px;
}

.interest-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.interest-categories a {
  min-height: 144px;
  padding: 21px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(145deg, #111820, #0b0e12);
  border: 1px solid #26333f;
  border-radius: 4px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.interest-categories a:hover {
  border-color: #25d366;
  transform: translateY(-3px);
}

.interest-categories span {
  font-size: 25px;
  line-height: 1;
}

.interest-categories b {
  margin-top: 8px;
  font-size: 15px;
}

.interest-categories small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

/* Cabeçalho com presença proporcional ao hero. */
header {
  height: 94px !important;
}

.brand {
  gap: 13px;
}

.brand-mark {
  width: 54px;
  height: 54px;
}

.brand span {
  font-size: 18px;
}

.header-cta {
  padding: 14px 24px;
  font-size: 14px;
}

@media (max-width: 800px) {
  .why {
    grid-template-columns: 1fr !important;
    gap: 38px;
  }

  .why li {
    gap: 14px;
  }

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

  .interest-categories a {
    min-height: 132px;
    padding: 17px;
  }

  .timing { padding: 75px 24px; }
  .timing h2 { font-size: 43px; margin-bottom: 32px; }
  .timing-grid { grid-template-columns: 1fr; }
  .timing-grid article { padding: 24px; }

  header {
    height: 78px !important;
    padding: 0 25px !important;
  }

  .brand { gap: 9px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand span { font-size: 13px; }
  .header-cta { padding: 11px 16px; font-size: 12px; }

  .hero {
    min-height: 970px !important;
    background-size: auto 475px !important;
    background-repeat: no-repeat !important;
    background-position: 60% bottom !important;
  }

  .hero::after {
    background: linear-gradient(180deg, #050505 0%, #050505 49%, rgba(5,5,5,.08) 68%, #050505 100%) !important;
  }

  .hero-copy {
    padding-top: 128px !important;
    padding-bottom: 0 !important;
  }
}

/* No celular o hero usa uma arte vertical: o conteúdo fica no respiro escuro
   e a bicicleta inteira aparece abaixo, sem precisar recortar a imagem. */
header {
  display: none !important;
}

.hero-copy {
  padding-top: 112px !important;
}

@media (max-width: 800px) {
  .hero {
    min-height: 980px !important;
    background-image: none !important;
  }

  .hero::after {
    background: linear-gradient(180deg, #050505 0%, #050505 41%, rgba(5,5,5,.04) 61%, rgba(5,5,5,.12) 100%) !important;
    z-index: 0;
  }

  .hero-copy {
    padding-top: 58px !important;
    padding-bottom: 0 !important;
    z-index: 2;
  }

  .hero-mobile-bike {
    display: block !important;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.hero-mobile-bike {
  display: none;
}
