/* Public styles for Trek CTA Buttons */
.trek-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trek-cta-btn {
  --cta-bg: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 12px 16px;
  background: var(--cta-bg);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 0 rgba(0,0,0,.15);
  transition: transform .05s ease, filter .15s ease, box-shadow .15s ease;
  font-weight: 600;
  line-height: 1.2;
}

.trek-cta-btn:hover { 
  filter: brightness(0.92);            /* mais escuro no hover */
  box-shadow: 0 4px 0 rgba(0,0,0,.25); /* sombra levemente maior */
}
.trek-cta-btn:active { transform: translateY(1px); }

.trek-cta-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.trek-cta-emoji {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  border-radius: 4px;
  background: rgba(255,255,255,.12);
  padding: 2px 4px;
}

.trek-cta-text { color: #fff; }

.trek-cta-arrow {
  font-size: 18px;
  color: #fff;   /* seta branca */
  opacity: 1;
}
