/* =========================================================
   Botões
   ========================================================= */
.eshet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.eshet-btn--outline-light {
  color: var(--c-white);
  border-color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(2px);
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.eshet-btn--outline-light:hover {
  background: var(--c-white);
  color: var(--c-black);
  border-color: var(--c-white);
  text-shadow: none;
}

/* =========================================================
   Hero
   ========================================================= */
.eshet-hero { position: relative; padding-top: 0; }

.eshet-hero__carousel {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  cursor: grab;
  cursor: -webkit-grab;
}
.eshet-hero__carousel.is-grabbing {
  cursor: grabbing;
  cursor: -webkit-grabbing;
  user-select: none;
}
.eshet-hero__carousel img { -webkit-user-drag: none; }
.eshet-hero__track {
  display: flex;
  transition: transform .6s ease;
  will-change: transform;
}
.eshet-hero__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 788px;
  background-color: var(--c-beige);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
/* Gradiente duplo: diagonal (cobre o canto do texto) + base escura,
   garantindo contraste AA do texto branco sobre fotos claras. */
.eshet-hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,0) 72%),
    linear-gradient(0deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.12) 30%, rgba(0,0,0,0) 55%);
  pointer-events: none;
}
.eshet-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 0 96px 56px;
  max-width: 620px;
  color: var(--c-white);
  /* Sombra de segurança: mantém legibilidade mesmo em trechos claros da foto. */
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.eshet-hero__title {
  font-size: var(--fs-hero);
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.05;
  margin-bottom: 18px;
}
.eshet-hero__subtitle {
  font-family: var(--font-serif);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 28px;
  max-width: 480px;
}
.eshet-hero__dots {
  position: absolute;
  left: 56px;
  bottom: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eshet-hero__dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
}
.eshet-hero__dot.is-active { background: var(--c-white); width: 30px; }

/* =========================================================
   Category grid (3x2)
   ========================================================= */
.eshet-cats { padding-top: 24px; overflow: hidden; }
.eshet-cats .eshet-container { overflow: hidden; }
.eshet-cats__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  cursor: grab;
  cursor: -webkit-grab;
}
.eshet-cats__track::-webkit-scrollbar { display: none; }
.eshet-cats__track.is-centered { justify-content: center; }
.eshet-cats__track.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
  cursor: -webkit-grabbing;
  user-select: none;
}
.eshet-cats__track img { -webkit-user-drag: none; user-select: none; }
.eshet-cats__item {
  scroll-snap-align: start;
  flex: 0 0 426px;
  max-width: 85vw;
  min-width: 0;
  position: relative;
  display: block;
  aspect-ratio: 426 / 300;
  overflow: hidden;
  border-radius: 8px;
}
.eshet-cats__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.eshet-cats__item:hover .eshet-cats__img { transform: scale(1.04); }
.eshet-cats__label {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: var(--c-white);
  font-size: var(--fs-lg);
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
}
.eshet-cats__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.eshet-cats__dots .eshet-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--c-gray-light);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.eshet-cats__dots .eshet-dot.is-active {
  width: 30px;
  background: var(--c-black);
}

/* =========================================================
   Product showcase
   ========================================================= */
.eshet-showcase { padding-top: 64px; overflow: hidden; }
.eshet-showcase .eshet-container { overflow: hidden; }
.eshet-showcase__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.eshet-showcase__title {
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: 2px;
}
.eshet-showcase__more {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--c-gold);
}
.eshet-showcase__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  /* Esconde a barra de rolagem (mantendo o scroll funcional). */
  scrollbar-width: none;         /* Firefox */
  -ms-overflow-style: none;      /* IE/Edge legado */
  scroll-behavior: smooth;
  cursor: grab;
  cursor: -webkit-grab;
}
.eshet-showcase__track::-webkit-scrollbar {
  display: none;                 /* Chrome/Safari/Edge */
}
/* Enquanto o usuário arrasta com o mouse, o snap e o smooth atrapalham — desligados via classe. */
.eshet-showcase__track.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
  cursor: -webkit-grabbing;
  user-select: none;
}
/* Impede o "fantasma" de arraste das imagens dos cards (sem bloquear o clique). */
.eshet-showcase__track img { -webkit-user-drag: none; user-select: none; }
.eshet-showcase__track a { -webkit-user-drag: none; }
.eshet-showcase__track > * {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}
@media (max-width: 900px) {
  .eshet-showcase__track > * { flex: 0 0 300px; }
  .eshet-video-card { flex: 0 0 300px; }
}
@media (max-width: 560px) {
  .eshet-showcase__track > * { flex: 0 0 78%; }
  .eshet-video-card { flex: 0 0 72%; }
}

/* =========================================================
   Vídeos "SIGA O MOVIMENTO" (reels verticais)
   ========================================================= */
.eshet-videos { padding-top: 64px; overflow: hidden; }
.eshet-videos .eshet-container { overflow: hidden; }
.eshet-videos__head { margin-bottom: 28px; }
.eshet-videos__title {
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: 2px;
}
.eshet-videos__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  cursor: grab;
  cursor: -webkit-grab;
}
.eshet-videos__track::-webkit-scrollbar { display: none; }
/* Poucos vídeos (sem overflow): centraliza no lugar de encostar à esquerda. */
.eshet-videos__track.is-centered { justify-content: center; }
.eshet-videos__track.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
  cursor: -webkit-grabbing;
  user-select: none;
}
.eshet-videos__track img { -webkit-user-drag: none; user-select: none; }

.eshet-video-card {
  scroll-snap-align: start;
  flex: 0 0 260px;
  max-width: 80vw;
  min-width: 0;
}
.eshet-video-card__inner {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 428 / 760;
  border: none;
  padding: 0;
  margin: 0;
  background: var(--c-offwhite);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.eshet-video-card__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
/* Amplia verticalmente para haver "sobra" ao mover no parallax. */
.eshet-video-card__poster[data-parallax] {
  height: 130%;
  top: -15%;
  will-change: background-position;
}
.eshet-video-card__poster--empty { background: var(--c-beige); }
.eshet-video-card__inner:hover .eshet-video-card__poster { transform: scale(1.04); }
.eshet-video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  border: 2px solid rgba(255,255,255,.9);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  transition: background .2s ease, transform .2s ease;
}
.eshet-video-card__play svg { margin-left: 3px; }
.eshet-video-card__inner:hover .eshet-video-card__play {
  background: rgba(0,0,0,.55);
  transform: translate(-50%, -50%) scale(1.08);
}

/* Dots (indicadores de posição) */
.eshet-videos__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.eshet-videos__dots .eshet-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--c-gray-light);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.eshet-videos__dots .eshet-dot.is-active {
  width: 30px;
  background: var(--c-black);
}

/* Modal de vídeo */
.eshet-video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eshet-video-modal[hidden] { display: none; }
.eshet-video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.85);
}
.eshet-video-modal__box {
  position: relative;
  z-index: 1;
  width: min(90vw, 428px);
  max-height: 90vh;
}
.eshet-video-modal__player {
  width: 100%;
  max-height: 90vh;
  aspect-ratio: 428 / 760;
  background: #000;
  border-radius: 6px;
  display: block;
}
.eshet-video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255,255,255,.15);
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}
.eshet-video-modal__close:hover { background: rgba(255,255,255,.3); }

/* =========================================================
   About the brand
   ========================================================= */
.eshet-about { padding-top: 80px; }
.eshet-about__heading {
  text-align: center;
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 32px;
}
.eshet-about__banner {
  position: relative;
  min-height: 480px;
  background-color: var(--c-beige);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Parallax: amplia verticalmente o fundo para haver "sobra" ao mover. */
.eshet-about__banner[data-parallax] {
  background-size: cover;
  background-position: center 0;
  will-change: background-position;
}
.eshet-about__banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.1) 60%, rgba(0,0,0,0) 100%);
}
.eshet-about__content {
  position: relative;
  z-index: 1;
  color: var(--c-white);
  padding: 0 56px;
  max-width: 620px;
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.eshet-about__title {
  font-family: var(--font-serif);
  font-size: var(--fs-h1);
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.eshet-about__text {
  font-family: var(--font-serif);
  font-size: var(--fs-body);
  line-height: 1.5;
  margin-bottom: 22px;
}
.eshet-about__cta {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--c-white);
}

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 900px) {
  .eshet-hero__slide { min-height: 520px; }
  .eshet-hero__content { padding: 0 0 56px 24px; }
  .eshet-cats__item { flex: 0 0 260px; }
}
@media (max-width: 560px) {
  .eshet-cats__item { flex: 0 0 72%; }
  .eshet-cats__label { font-size: var(--fs-base); left: 12px; bottom: 12px; }
  .eshet-hero__content, .eshet-about__content { padding-left: 20px; padding-right: 20px; }
  .eshet-about__banner { min-height: 360px; }
  .eshet-showcase__track > * { flex-basis: 78%; }
  .eshet-showcase__title { font-size: var(--fs-lg); }
  .eshet-about__heading { font-size: var(--fs-lg); }
}

/* =========================================================
   Efeitos de scroll (parallax + reveal)
   ========================================================= */
.eshet-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.eshet-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Pequeno atraso escalonado para grids/carrosséis. */
.eshet-reveal[data-reveal-delay="1"] { transition-delay: .08s; }
.eshet-reveal[data-reveal-delay="2"] { transition-delay: .16s; }
.eshet-reveal[data-reveal-delay="3"] { transition-delay: .24s; }

/* Respeita usuários que preferem menos movimento. */
@media (prefers-reduced-motion: reduce) {
  .eshet-reveal { opacity: 1; transform: none; transition: none; }
  .eshet-about__banner[data-parallax] { background-position: center !important; }
}

/* =========================================================
   Home — Barra de benefícios / vantagens
   ========================================================= */
.eshet-benefits {
  padding: 48px 0 24px;
}
.eshet-benefits__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
}
.eshet-benefits__item {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 0 0 auto;
  min-width: 0;
}
.eshet-benefits__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-black);
}
.eshet-benefits__icon svg { display: block; width: 46px; height: 46px; }
.eshet-benefits__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.eshet-benefits__title {
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-black);
  line-height: 1.2;
}
.eshet-benefits__text {
  font-size: var(--fs-base);
  color: #6b6b6b;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .eshet-benefits__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 56px;
  }
}
@media (max-width: 560px) {
  .eshet-benefits { padding: 28px 0; }
  .eshet-benefits__list { flex-direction: column; align-items: flex-start; gap: 18px; }
  .eshet-benefits__item { width: 100%; }
}
