/* ===== Yeap Marketing — header, hero, stats, sobre, serviços ===== */

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .35s, padding .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(20, 20, 20, .94);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  border-bottom-color: var(--hairline-light);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo { position: relative; display: block; height: 30px; }
.header__logo-img { height: 30px; width: auto; transition: opacity .3s var(--ease); }
.header__logo-sym {
  position: absolute;
  left: 0; top: 0;
  height: 30px; width: auto;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.header.is-scrolled .header__logo-img { opacity: 0; }
.header.is-scrolled .header__logo-sym { opacity: 1; }
.header__nav { display: flex; align-items: center; gap: 34px; }
.header__nav a:not(.btn) {
  color: var(--white);
  text-decoration: none;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  position: relative;
}
.header__nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.header__nav a:not(.btn):hover::after { transform: scaleX(1); }
.header__nav .btn--ghost { border-color: rgba(245,244,242,.3); }
.header__burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.header__burger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); margin: 6px 0;
  transition: transform .3s, opacity .3s;
}

/* ---- Hero: composição tipográfica com foto integrada ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 0 clamp(56px, 9vh, 104px);
  overflow: hidden;
  background: var(--black);
}
.hero__photo {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: grayscale(1) contrast(1.04);
}
.hero__photo-scrim {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(20,20,20,.92) 0%, rgba(20,20,20,.72) 42%, rgba(20,20,20,.42) 100%),
              linear-gradient(0deg, var(--black) 4%, rgba(20,20,20,.5) 18%, rgba(20,20,20,0) 40%);
}
.hero__content { position: relative; z-index: 2; width: 100%; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  margin-bottom: clamp(20px, 3.5vh, 40px);
}
.hero__tag .icon-star { width: 11px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-hero);
  line-height: .93;
  text-transform: uppercase;
  color: var(--white);
  max-width: none;
}
.hero__title span { display: block; }
.hero__title-accent { color: var(--wine-light); }
.hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: clamp(28px, 5vh, 56px);
}
.hero__sub {
  max-width: 400px;
  color: rgba(206, 205, 203, .85);
  font-size: .98rem;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__actions .link-arrow { color: var(--white); }

/* ---- Barra de números (marquee) ---- */
.stats {
  background: var(--wine);
  padding: 30px 0;
  overflow: hidden;
}
.stats__track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.stats:hover .stats__track { animation-play-state: paused; }
.stats__group { display: flex; align-items: center; }
.stat { display: flex; align-items: baseline; gap: 12px; padding: 0 40px; white-space: nowrap; }
.stat strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--white);
  letter-spacing: .02em;
}
.stat span {
  color: rgba(245, 244, 242, .7);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.stat__sep { display: flex; align-items: center; }
.stat__sep img { width: 10px; opacity: .6; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sobre: foto única em full-bleed no fundo, texto por cima */
.about {
  position: relative;
  isolation: isolate; /* contém o blend do banho vinho */
  background: var(--gray);
  padding: clamp(90px, 12vw, 170px) 0 clamp(120px, 15vw, 200px);
  overflow: hidden;
}
.about__bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 32% 58%; /* figuras à esquerda, espaço livre à direita */
  filter: grayscale(1) contrast(1.06);
  z-index: 0;
}
/* banho vinho fixo na foto — duotone da identidade */
.about__tint {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background: var(--wine);
  mix-blend-mode: multiply;
  opacity: .62;
}
/* véu sólido semitransparente — sem degradê */
.about__scrim {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  background: rgba(206, 205, 203, .46);
}
.about > .container { position: relative; z-index: 3; }
.about__credit {
  position: absolute;
  left: var(--gutter);
  bottom: 26px;
  z-index: 3;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(20, 20, 20, .6);
}
.about .folio { color: var(--black); }
/* texto no lado direito — onde a foto tem o espaço vazio */
.about__comp {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.about__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6.2vw, 5.6rem);
  line-height: .94;
  text-transform: uppercase;
  margin-bottom: 36px;
}
/* duotone wine no hover — tratamento dos posts da marca */
.tinted::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--wine);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.tinted:hover::after { opacity: .8; }
.about__text { max-width: 470px; }
.about__text p { margin-bottom: 16px; margin-left: auto; color: #2c2c2c; }
.about__say {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.15;
  color: var(--black);
  margin-top: 30px;
}
.about__say em { font-style: normal; color: var(--wine); }

/* ---- Serviços: índice editorial ---- */
.services {
  background: var(--black);
  color: var(--white);
  padding: clamp(150px, 17vw, 250px) 0 clamp(90px, 10vw, 140px);
}
.services .folio { color: var(--gray); }
.services__intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  column-gap: clamp(24px, 4vw, 60px);
  margin-bottom: clamp(60px, 8vw, 110px);
}
.services__intro h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: .94;
  text-transform: uppercase;
  color: var(--white);
}
.services__intro-note {
  max-width: 380px;
  color: rgba(206, 205, 203, .75);
  margin-top: 26px;
  font-size: .96rem;
}

/* círculo 360 — desenho do briefing, tratamento fino */
.circle360 {
  position: relative;
  width: min(500px, 92%);
  aspect-ratio: 1;
  margin-left: auto;
}
.circle360__ring {
  position: absolute; top: 9%; left: 9%; right: 9%; bottom: 9%;
  border: 2px solid rgba(206, 205, 203, .5);
  border-radius: 50%;
  /* parte a 45° para os pontos nascerem alinhados aos rótulos das diagonais */
  transform: rotate(45deg);
  animation: spin 36s linear infinite;
}
@keyframes spin { from { transform: rotate(45deg); } to { transform: rotate(405deg); } }
.circle360__ring::before, .circle360__ring::after, .circle360__dot {
  content: '';
  position: absolute;
  width: 13px; height: 13px;
  background: var(--wine-light);
  border-radius: 50%;
}
.circle360__ring::before { top: -7px; left: 50%; transform: translateX(-50%); }
.circle360__ring::after { bottom: -7px; left: 50%; transform: translateX(-50%); }
.circle360__dot--l { left: -7px; top: 50%; transform: translateY(-50%); }
.circle360__dot--r { right: -7px; top: 50%; transform: translateY(-50%); }
.circle360__center {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
}
.circle360__center img { width: 128px; }
.circle360__label {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.06;
  text-transform: uppercase;
  color: var(--gray);
}
.circle360__label--tl { top: 4%; left: 0; text-align: right; }
.circle360__label--tr { top: 4%; right: 0; }
.circle360__label--bl { bottom: 4%; left: 0; text-align: right; }
.circle360__label--br { bottom: 4%; right: 0; color: var(--white); }

/* índice de serviços */
.svc { list-style: none; }
.svc__row {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr 1.15fr;
  column-gap: clamp(20px, 3vw, 48px);
  padding: clamp(30px, 4vw, 46px) 0;
  border-top: 1px solid var(--hairline-light);
  transition: background .3s;
}
/* número fantasma gigante no hover — numeração de editorial */
.svc__row::before {
  content: attr(data-num);
  position: absolute;
  left: 108px;
  top: 50%;
  transform: translate(-16px, -50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 8vw, 7.5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(206, 205, 203, .16);
  opacity: 0;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.svc__row:hover::before { opacity: 1; transform: translate(0, -50%); }
.svc__num, .svc__name, .svc__body { position: relative; z-index: 1; }
.svc__row:last-child { border-bottom: 1px solid var(--hairline-light); }
.svc__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .08em;
  color: rgba(206, 205, 203, .55);
  padding-top: .5em;
  transition: color .3s;
}
.svc__row:hover .svc__num { color: var(--wine-light); }
.svc__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  transition: transform .35s var(--ease);
}
.svc__row:hover .svc__name { transform: translateX(10px); }
.svc__body p { color: rgba(206, 205, 203, .72); font-size: .96rem; margin-bottom: 14px; }
.svc__body p strong { color: var(--gray); }
.svc__body .link-arrow { color: var(--wine-soft); margin-top: 4px; }
.svc__divider {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: clamp(40px, 5vw, 64px) 0 clamp(20px, 3vw, 34px);
  font-size: var(--fs-meta);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(206, 205, 203, .68);
}
.svc__divider::after { content: ''; flex: 1; height: 1px; background: var(--hairline-light); }
