*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0D0D0D;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   TICKER — barra branca topo com marcas
══════════════════════════════════════════ */
.ticker {
  background: #FFFFFF;
  overflow: hidden;
  height: 48px;
  display: flex;
  align-items: center;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 22s linear infinite;
}

.ticker__logo {
  height: 22px;
  width: auto;
  display: block;
  margin: 0 2.5rem;
}

.ticker__sep {
  color: #ccc;
  font-size: 0.75rem;
  padding: 0 0.25rem;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  background: #0D0D0D;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.nav__links a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #FFFFFF;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.nav__links a:hover {
  opacity: 0.6;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  width: 100%;
  background: #0D0D0D;
  overflow: hidden;
  line-height: 0;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  background: linear-gradient(to bottom, transparent, #0D0D0D);
  pointer-events: none;
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ══════════════════════════════════════════
   QUEM SOMOS
══════════════════════════════════════════ */
.quem-somos {
  background: #0D0D0D;
  display: flex;
  justify-content: center;
  line-height: 0;
}

.quem-somos__wrap {
  position: relative;
  width: 100%;
  max-width: 1080px;
  line-height: 0;
}

.quem-somos__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ══════════════════════════════════════════
   FOOTER (mantido do passo anterior)
══════════════════════════════════════════ */
.footer {
  background: #BDFF38;
  padding: 14px 60px;
}

.footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy,
.footer__brand,
.footer__year {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
}

/* ══════════════════════════════════════════
   BTN SEND
══════════════════════════════════════════ */
.btn-send {
  width: 52px;
  height: 52px;
  background: #BDFF38;
  color: #0D0D0D;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: filter .2s;
}
.btn-send:hover { filter: brightness(1.1); }
.btn-send svg { width: 26px; height: 26px; }
/* ícone do botão do form — ligeiramente maior e rotacionado como no Figma */
.btn-send--form svg { width: 28px; height: 28px; transform: rotate(-35deg); }
.btn-send--historia { align-self: flex-end; margin-top: .4rem; }

/* ══════════════════════════════════════════
   SERVIÇOS — O QUÊ FAZEMOS
══════════════════════════════════════════ */
.servicos {
  position: relative;
  padding: 6rem 0;
  background: #0D0D0D;
  overflow: hidden;
}
/* background figure */
.servicos::before {
  content: '';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 46%;
  height: 95%;
  background: url('../img/mountain-sports.png') center / contain no-repeat;
  opacity: .22;
  pointer-events: none;
  z-index: 0;
}

.servicos__carousel {
  position: relative;
  width: 100%;
  z-index: 1;
}

.servicos__track-wrap {
  overflow: hidden;   /* clipa as bordas dos cards adjacentes */
  width: 100%;
}

.servicos__track {
  display: flex;
  gap: 1.25rem;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.servico-card {
  background: rgba(20,20,20,.90);
  border-radius: 32px;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  flex: 0 0 68%;   /* peek: ~16% dos adjacentes espia de cada lado */
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,.08);
}
.servico-card:hover { background: rgba(28,28,28,.95); }

.servico-card--geo { background: #111111; }
.servico-card__geo-bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.04) 0px,
    rgba(255,255,255,.04) 1px,
    transparent 1px,
    transparent 60px
  );
  pointer-events: none;
}
.servico-card--geo::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 200px; height: 200px;
  background: repeating-conic-gradient(
    rgba(255,255,255,.06) 0deg,
    rgba(255,255,255,.06) 45deg,
    transparent 45deg,
    transparent 90deg
  );
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.servico-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  letter-spacing: .02em;
  position: relative;
  z-index: 1;
}

.servico-card__desc {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.servico-card__arrow-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #FFFFFF;
  z-index: 2;
  pointer-events: none;
}

.servicos__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: none;
  color: #FFFFFF;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.servicos__arrow--prev { left: 2rem; }
.servicos__arrow--next { right: 2rem; }
.servicos__arrow:hover { background: rgba(255,255,255,.2); }
.servicos__arrow:disabled { opacity: .3; cursor: not-allowed; }

.servicos__deco {
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  opacity: .18;
  pointer-events: none;
  z-index: 0;
}
.deco-arrows { display: flex; flex-direction: column; gap: 2px; }
.deco-arrow {
  width: 0; height: 0;
  border-top: 80px solid transparent;
  border-bottom: 80px solid transparent;
  border-left: 100px solid #FFFFFF;
}

/* ══════════════════════════════════════════
   NOSSAS MARCAS
══════════════════════════════════════════ */
.marcas {
  background: #0D0D0D;
  padding: 3rem;
  position: relative;
}

/* faixa opaca full-width atrás do pill — sem abas escuras ao lado do pill */
.marcas::before {
  content: '';
  position: absolute;
  top: calc(3rem - 2.2rem);
  left: 0;
  right: 0;
  height: 3.2rem;
  background: #0D0D0D;
  z-index: 9;
}

/* ── nav flutua centralizado na borda superior do banner card ── */
.marcas__nav {
  background: rgba(22, 22, 22, 0.84);
  border-radius: 999px;
  width: clamp(520px, 60%, 820px);
  position: absolute;
  top: calc(3rem - 2.2rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  overflow: hidden;
  padding: 0;
}

.marcas__nav-img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  /* screen: fundo escuro do PNG vira transparente, logos brancas ficam */
  mix-blend-mode: screen;
  filter: brightness(1.3) contrast(1.1);
  /* mask: zona sólida transparente nos primeiros 2.5rem (esconde donut/fruta),
     depois fade suave até black onde começam as logos */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    transparent 2.5rem,
    black 4rem,
    black calc(100% - 4rem),
    transparent calc(100% - 2.5rem),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    transparent 2.5rem,
    black 4rem,
    black calc(100% - 4rem),
    transparent calc(100% - 2.5rem),
    transparent 100%
  );
}

.marcas__btn {
  position: absolute;
  top: 0;
  height: 100%;
  width: 25%;
  background: none;
  border: none;
  outline: none;             /* remove focus ring do browser */
  cursor: pointer;
  border-radius: 0;          /* sem pill interno — o nav já faz o clip */
  transition: background .25s;
  z-index: 3;
}
/* HOVER DESATIVADO TEMPORARIAMENTE
.marcas__btn:hover,
.marcas__btn.is-active {
  background: rgba(255,255,255,.10);
} */
/* posições calculadas a partir da densidade de pixels das logos no PNG */
.marcas__btn[data-marca="dough"]  { left: 0;      width: 28.3%; }
.marcas__btn[data-marca="poppys"] { left: 28.3%;  width: 29%;   }
.marcas__btn[data-marca="merilu"] { left: 57.3%;  width: 18.5%; }
.marcas__btn[data-marca="kofi"]   { left: 75.8%;  width: 24.2%; }

/* ── área do banner ── */
.marcas__banner-wrap {
  position: relative;
  width: 100%;
  /* padding-top hack = altura/largura da imagem (1340/2160 = 62%)
     funciona em todos os browsers sem depender de aspect-ratio */
  padding-top: 62%;
  overflow: hidden;
  border-radius: 16px;
}

.marcas__banner {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marcas__banner.is-active {
  opacity: 1;
}

.marcas__banner--poppys  { background: #0d0d0d; }
.marcas__banner--merilu  { background: #4a2040; }
.marcas__banner--dough   { background: #1a1a1a; }
.marcas__banner--kofi    { background: #1c1208; }

.marcas__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* placeholder enquanto banners não chegam */
.marcas__banner-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: .35;
}
.marcas__banner-nome {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  color: #FFFFFF;
  letter-spacing: .05em;
  line-height: 1;
}
.marcas__banner-hint {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .12em;
  border: 1px solid rgba(255,255,255,.3);
  padding: .4rem 1.2rem;
  border-radius: 999px;
}

/* ══════════════════════════════════════════
   PLANOS — SUAS TRILHAS
══════════════════════════════════════════ */
.planos {
  display: block;
  width: 100%;
  line-height: 0;
  position: relative;
}
.planos__img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── CTAs clicáveis sobre imagens ─────────────────────────── */
.cta-img-btn {
  position: absolute;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;                  /* invisível — cobre exatamente o CTA da imagem */
  background: transparent;
}
.cta-img-btn:hover {
  cursor: pointer;
}

/* starburst — quem somos — coordenadas detectadas via canvas */
.cta-img-btn--starburst {
  left:   12.9%;
  top:    70.9%;
  width:  21.3%;
  height: 28.6%;
  border-radius: 0;
}

/* círculo — planos / suas trilhas — coordenadas detectadas via canvas */
.cta-img-btn--circle {
  left:   38%;
  top:    43.1%;
  width:  17.9%;
  height: 10.4%;
}

/* ══════════════════════════════════════════
   CONTATO — COMO FAZER PARTE
══════════════════════════════════════════ */
.contato {
  padding: 5rem 60px;
  background: #181818;
}

.contato__inner {
  max-width: 860px;
  margin: 0 auto;
}

.form-field {
  display: flex;
  align-items: center;
  margin-bottom: .4rem;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
}

.form-field__label {
  display: flex;
  align-items: center;
  background: #BDFF38;
  color: #0D0D0D;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .1em;
  padding: 0 1rem;
  height: 52px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 130px;
}

.form-field__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  padding: 0 1rem;
  height: 52px;
  color: #333333;
}

.form-field--radio {
  background: transparent;
  padding: 0;
  height: auto;
  overflow: visible;
}
.form-field--radio .form-field__label {
  height: 52px;
  border-radius: 6px;
}

/* ── Campos step 1 preenchidos e bloqueados ── */
.form-field.is-filled {
  background: #f4f4f4;
  transition: background .3s;
}
.form-field.is-filled .form-field__label {
  background: #9fd42e; /* verde levemente apagado */
}
.form-field.is-filled .form-field__input {
  color: #777777;
  cursor: not-allowed;
}

/* ── Radio row bloqueada (aguardando step 1) ── */
.form-field--radio.is-locked {
  opacity: 0.38;
  pointer-events: none;
  transition: opacity .4s ease;
}
.form-field--radio.is-locked .form-field__label {
  background: #a0c020;
}

/* ── Radio row desbloqueada ── */
.form-field--radio.is-unlocked {
  opacity: 1;
  pointer-events: auto;
  transition: opacity .4s ease;
}

/* ── Mensagem de sucesso ── */
.form-success {
  padding: 3rem 2rem;
  text-align: center;
  color: #FFFFFF;
}
.form-success__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.form-success__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: .1em;
  color: #BDFF38;
  margin-bottom: .5rem;
}
.form-success__text {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}

.radio-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 1.5rem;
  height: 52px;
}

.radio-opt {
  display: flex;
  align-items: center;
  gap: .6rem;
  cursor: pointer;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  color: #FFFFFF;
}
.radio-opt input[type="radio"] { display: none; }
.radio-opt__circle {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}
.radio-opt input[type="radio"]:checked + .radio-opt__circle {
  background: #BDFF38;
  border-color: #BDFF38;
}
.radio-opt input[type="radio"]:checked + .radio-opt__circle::after {
  content: '';
  width: 7px; height: 7px;
  background: #0D0D0D;
  border-radius: 50%;
}

.form-questions {
  margin-top: 16px;
  background: #D9D9D9;
  border-radius: 20px;
  overflow: visible;
  animation: slideDown .35s ease;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-question {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
}

.form-question__label {
  background: #181818;
  color: #FFFFFF;
  font-weight: 700;
  font-size: .67rem;
  letter-spacing: .07em;
  padding: .75rem 1.1rem;
  flex-shrink: 1;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  line-height: 1.35;
  border-radius: 8px;
  white-space: nowrap;
  min-height: 52px;
}

.form-question__input {
  flex: 1;
  background: #ffffff;
  border: none;
  outline: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  padding: 0 1.1rem;
  height: 60px;
  color: #333333;
  min-width: 0;
}

.form-question__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

/* botão circular no canto inferior-direito do card */
.btn-send--form {
  position: absolute;
  bottom: -31px;
  right: -31px;
  width: 62px;
  height: 62px;
  z-index: 5;
}

/* ── Textarea (FORMATAÇÃO) ── */
.form-textarea-wrap {
  margin-top: 16px;
  position: relative;
  overflow: visible;
  animation: slideDown .35s ease;
  width: 100%;
}

.form-textarea__label {
  background: #181818;
  color: #FFFFFF;
  font-weight: 700;
  font-size: .67rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .95rem 1.2rem;
  border-radius: 12px 12px 0 0;
  line-height: 1.4;
}

.form-textarea__field {
  display: block;
  width: 100%;
  min-height: 160px;
  background: #f8f8f8;
  border: none;
  outline: none;
  border-radius: 0 0 12px 12px;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: #333333;
  padding: 1rem 1.2rem;
  resize: vertical;
  line-height: 1.6;
}
.form-textarea__field::placeholder {
  color: #bbbbbb;
}

.contato__historia-col { display: flex; flex-direction: column; gap: .4rem; }

.historia-box {
  background: #FBFBFB;
  border-radius: 4px;
  padding: 1.5rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.historia-box__title {
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 1rem;
}

.historia-box__textarea {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: #333333;
  resize: none;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   FOOTER BAR
══════════════════════════════════════════ */
.footer-bar {
  background: #0D0D0D;
  padding: 1.5rem 60px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-bar__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bar__copy {
  font-size: .68rem;
  letter-spacing: .15em;
  color: #888888;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.footer-bar__brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: .3em;
  color: #FFFFFF;
}

.footer-bar__top {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #BDFF38;
  border: 1px solid #BDFF38;
  padding: .4rem 1rem;
  transition: background .2s;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.footer-bar__top:hover {
  background: #BDFF38;
  color: #0D0D0D;
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
