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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
}

@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== HERO ===== */
.hero {
  height: 95vh;
  min-height: 720px;
  background: url('Imagens/fundo.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 40px 5%;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}

.hero__inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

/* ---- LEFT CONTENT ---- */
.hero__content {
  flex: 0 0 55%;
  max-width: 55%;
}

/* Badge "A REVELAÇÃO" */
.badge {
  display: inline-block;
  background: #111;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  padding: 8px 20px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Headline principal */
.hero__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: 0em;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__title .highlight {
  color: #583B14;
}

/* Subheadline */
.hero__sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 40px;
}

/* Botão CTA */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(270deg, #0D522A, #1a8a47, #0E301C, #14723b);
  background-size: 300% 300%;
  animation: gradient-shift 4s ease infinite;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 50px;
  transition: transform 0.15s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-2px);
}

.btn-cta__arrow {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes float-hero {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}

/* ---- RIGHT BOOK ---- */
.hero__book {
  flex: 0 0 auto;
  width: clamp(320px, 38%, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -40px;
  margin-left: -80px;
  margin-bottom: -80px;
  margin-top: -120px;
  overflow: visible;
  position: relative;
  z-index: 10;
  animation: float-hero 4s ease-in-out infinite;
}

.hero__book img {
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: rotate(8deg);
  transform-origin: center center;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.5));
}

/* ===== TICKER / MARQUEE ===== */
.ticker-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  height: 85px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(88, 59, 20, 0.2), rgba(88, 59, 20, 0.2)),
    rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  overflow: hidden;
  width: 100%;
  border: 0;
}

.ticker {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}

.ticker__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ticker__item {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  padding: 0 36px;
}

.ticker__item strong {
  color: #000;
  font-weight: 700;
}

.ticker__dot {
  color: #000;
  font-size: 2.5rem;
  flex-shrink: 0;
}

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

/* ===== SEÇÃO HONESTO + NADA MUDOU ===== */
.honesto {
  background: #e8d5b8;
  padding: 100px 5% 120px;
  position: relative;
  overflow: hidden;
}

.honesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Imagens/textura.png') center center / cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.honesto__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.honesto__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 100px;
}

.honesto__paper {
  flex: 0 0 auto;
  width: clamp(280px, 38%, 460px);
  transform: rotate(5deg);
}

.honesto__paper img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.25));
}

.honesto__text {
  flex: 1 1 auto;
  max-width: 760px;
  padding-top: 20px;
}

.honesto__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(44px, 4.8vw, 70px);
  line-height: 1.03;
  letter-spacing: 0.005em;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.honesto__title-accent {
  color: #583B14;
}

.honesto__title-line {
  white-space: nowrap;
}

.honesto__p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 26px;
}

.honesto__p--bold {
  font-weight: 700;
}

/* ---- bloco NADA MUDOU (dentro da mesma section) ---- */
.honesto__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(88, 59, 20, 0.18);
}

.honesto__nada-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(44px, 4.8vw, 68px);
  letter-spacing: 0.005em;
  color: #1a1a1a;
  text-transform: uppercase;
  line-height: 1;
}

.honesto__nada-paper {
  width: clamp(360px, 50%, 640px);
  transform: rotate(-2deg);
}

.honesto__nada-paper img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.25));
}

/* ===== SEÇÃO ACASO ===== */
.acaso {
  background: #c9a972 url('Imagens/fundoaconteceu.png') center center / cover no-repeat;
  padding: 100px 5%;
  position: relative;
}

.acaso__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.acaso__left {
  flex: 1 1 55%;
  max-width: 680px;
}

.acaso__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.05;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.acaso__title-accent {
  color: #583B14;
}

.acaso__p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 36px;
}

.acaso__card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  max-width: 560px;
  transform: rotate(2deg);
  transform-origin: center center;
}

.acaso__card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.05vw, 15px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.acaso__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  padding: 0;
}

.acaso__list li {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.05vw, 15px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  position: relative;
  padding-left: 18px;
}

.acaso__list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  top: 0;
  color: #1a1a1a;
  font-size: 1.2em;
  line-height: 1;
}

.acaso__right {
  flex: 0 0 auto;
  width: clamp(340px, 42%, 560px);
  display: flex;
  justify-content: center;
}

.acaso__right img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}

/* ===== SEÇÃO CICLO ===== */
.ciclo {
  background: #e8d5b8;
  padding: 110px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ciclo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Imagens/textura.png') center center / cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.ciclo__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ciclo__intro {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(16px, 1.3vw, 20px);
  font-style: italic;
  color: #583B14;
  margin-bottom: 26px;
  letter-spacing: 0.01em;
}

.ciclo__tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 36px;
}

.ciclo__tag {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.ciclo__tag-dot {
  color: #583B14;
  font-size: 0.55rem;
  line-height: 1;
}

.ciclo__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 4.8vw, 70px);
  line-height: 1.05;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

.ciclo__title-accent {
  color: #583B14;
}

/* ===== SEÇÃO CRUEL ===== */
.cruel {
  background-color: #0a0a0a;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 14px,
    rgba(255, 255, 255, 0.025) 14px,
    rgba(255, 255, 255, 0.025) 15px
  );
  padding: 120px 5%;
  text-align: center;
}

.cruel__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cruel__label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c9a86a;
  margin-bottom: 28px;
}

.cruel__title {
  font-family: 'Anton', sans-serif;
  font-style: normal;
  font-size: clamp(40px, 4.8vw, 70px);
  line-height: 1.05;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: 28px;
}

.cruel__sub {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: rgba(245, 234, 210, 0.7);
  max-width: 720px;
  margin: 0 auto 40px;
}

.cruel__badges {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
}

.cruel__badge {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 17px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  white-space: nowrap;
}

.cruel__badge--filled {
  background: #8a6a3a;
  color: #f5ead2;
}

.cruel__badge--outline {
  background: transparent;
  color: #f5ead2;
  border: 1px solid rgba(245, 234, 210, 0.35);
}

.cruel__foot {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a86a;
}

/* ===== SEÇÃO OFERTA ===== */
.oferta {
  background: url('Imagens/fundo 02.png') center center / cover no-repeat;
  padding: 100px 5% 120px;
  text-align: center;
}

.oferta__inner {
  max-width: 1300px;
  margin: 0 auto;
}

.oferta__wrap {
  position: relative;
  padding: 0 200px;
}

@keyframes float-book {
  0%, 100% { transform: rotate(-12deg) translateY(0px); }
  50%       { transform: rotate(-12deg) translateY(-18px); }
}

@keyframes float-book-right {
  0%, 100% { transform: rotate(12deg) translateY(0px); }
  50%       { transform: rotate(12deg) translateY(-18px); }
}

.oferta__ebook {
  width: clamp(180px, 17vw, 260px);
  height: auto;
  object-fit: contain;
  position: absolute;
  bottom: -20px;
  filter: drop-shadow(0 24px 44px rgba(0,0,0,0.4));
  z-index: 2;
}

.oferta__ebook--left {
  left: -20px;
  bottom: 60px;
  animation: float-book 3.6s ease-in-out infinite;
}

.oferta__ebook--right {
  right: -20px;
  animation: float-book-right 3.6s ease-in-out infinite;
  animation-delay: 0.4s;
}

.oferta__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 3.6vw, 52px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.oferta__card {
  background: #fffaf2;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  padding: 56px 56px;
  display: flex;
  gap: 60px;
  align-items: stretch;
  text-align: left;
  position: relative;
}

.oferta__col {
  flex: 1 1 0;
}

.oferta__col--left {
  border-right: 1px solid rgba(0,0,0,0.08);
  padding-right: 40px;
}

.oferta__col--right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 20px;
  position: relative;
}

.oferta__label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, 0.85vw, 13px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 22px;
}

.oferta__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.oferta__list li {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.4;
  color: #1a1a1a;
  position: relative;
  padding-left: 22px;
}

.oferta__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid #1a1a1a;
}

.oferta__price-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

.oferta__seal {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #fff;
  border: 1px dashed rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  transform: rotate(-8deg);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.oferta__seal em {
  font-style: italic;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #6b6b6b;
}

.oferta__seal strong {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #0D522A;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.oferta__price {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 6vw, 84px);
  line-height: 1;
  color: #1a1a1a;
  letter-spacing: 0.01em;
  margin: 8px 0 36px;
}

.oferta__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(270deg, #0a3a1d, #1a8a47, #0D522A, #14723b);
  background-size: 300% 300%;
  animation: gradient-shift 4s ease infinite;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.2vw, 18px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 28px 20px 36px;
  border-radius: 80px;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -2px 0 rgba(0, 0, 0, 0.25),
    0 14px 28px rgba(13, 82, 42, 0.35),
    0 4px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.oferta__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 30%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.oferta__btn:hover {
  background: linear-gradient(135deg, #1a8a47 0%, #0f6334 45%, #0a3a1d 100%);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3),
    0 20px 38px rgba(13, 82, 42, 0.45),
    0 6px 12px rgba(0, 0, 0, 0.16);
}

.oferta__btn:hover::before {
  left: 130%;
}

.oferta__btn:active {
  transform: translateY(-1px);
}

.oferta__btn-text {
  position: relative;
  z-index: 1;
}

.oferta__btn-arrow {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.oferta__btn:hover .oferta__btn-arrow {
  transform: translateX(4px);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {

  /* -- HERO -- */
  .hero {
    height: auto;
    min-height: 0;
    padding: 40px 5% 140px;
    overflow: hidden;
  }

  .hero__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .hero__title {
    font-size: clamp(48px, 12vw, 64px);
    word-break: break-word;
  }

  .hero__sub {
    font-size: 1rem;
  }

  .btn-cta {
    font-size: 0.85rem;
    padding: 15px 22px;
    white-space: normal;
    text-align: center;
  }

  .hero__book {
    width: clamp(220px, 65vw, 340px);
    margin: 20px auto 0;
    margin-right: 0;
    margin-left: 0;
  }

  .hero__book img {
    transform: none;
  }

  /* -- TICKER -- */
  .ticker-wrap {
    height: 56px;
  }

  .ticker {
    animation-duration: 55s;
  }

  .ticker__item {
    font-size: 0.78rem;
    padding: 0 22px;
  }

  .ticker__dot {
    font-size: 1.6rem;
  }

  /* -- HONESTO -- */
  .honesto {
    padding: 60px 5% 80px;
  }

  .honesto__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    margin-bottom: 60px;
  }

  .honesto__title {
    font-size: clamp(48px, 12vw, 64px);
    white-space: normal;
  }

  .honesto__title-line {
    white-space: normal;
  }

  .honesto__paper {
    width: clamp(220px, 70%, 340px);
  }

  .honesto__text {
    padding-top: 0;
  }

  .honesto__nada-paper {
    width: clamp(260px, 80%, 440px);
  }

  /* -- ACASO -- */
  .acaso {
    padding: 40px 5%;
    background: #c9a972;
  }

  .acaso::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('Imagens/textura2.png') center center / cover no-repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
  }

  .acaso__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .acaso__title {
    font-size: clamp(48px, 12vw, 64px);
    white-space: normal;
  }

  .acaso__left {
    max-width: 100%;
  }

  .acaso__card {
    margin: 0 auto;
  }

  .acaso__list {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .acaso__right {
    width: clamp(240px, 75%, 420px);
  }

  /* -- CICLO -- */
  .ciclo__title {
    font-size: clamp(48px, 12vw, 64px);
    white-space: normal;
  }

  /* -- CRUEL -- */
  .cruel__title {
    font-size: clamp(48px, 12vw, 64px);
    white-space: normal;
  }

  .honesto__nada-title {
    font-size: clamp(48px, 12vw, 64px);
  }

  /* -- OFERTA -- */
  .oferta__ebook {
    display: none;
  }

  .oferta__wrap {
    padding: 0;
  }

  .oferta__card {
    flex-direction: column;
    padding: 36px 28px;
    gap: 36px;
  }

  .oferta__col--left {
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-right: 0;
    padding-bottom: 30px;
  }

  .oferta__col--right {
    align-items: center;
    text-align: center;
    padding-left: 0;
  }

  .oferta__seal {
    top: -55px;
    right: 0;
  }

  .oferta__btn {
    gap: 10px;
    padding: 14px 18px 14px 22px;
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .oferta__btn-arrow {
    width: 26px;
    height: 26px;
  }
}

/* ===== RODAPÉ ===== */
.footer {
  background: #0a0a0a;
  padding: 24px 5%;
  text-align: center;
}

.footer__text {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

/* ===== ANIMAÇÕES DE ENTRADA ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--left {
  transform: translateX(-32px);
}

.reveal--right {
  transform: translateX(32px);
}

.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }
.reveal--delay-4 { transition-delay: 0.48s; }

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
