/* ===== 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: center;
  justify-content: center;
  text-align: 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;
  }
}

/* ============================================================
   LINK "ENTRAR" — flutuante no canto superior direito da landing
   ============================================================ */
.top-login {
  position: fixed;
  top: 22px;
  right: 28px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(15, 12, 8, 0.55);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(245, 234, 210, 0.22);
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  letter-spacing: 0.06em;
  font-size: 13px;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.top-login:hover {
  background: rgba(15, 12, 8, 0.85);
  border-color: rgba(245, 234, 210, 0.45);
  transform: translateY(-2px);
}

.top-login__label {
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.top-login__cta {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.top-login__icon {
  width: 16px;
  height: 16px;
  color: #c9a86a;
  transition: transform 0.2s ease;
}

.top-login:hover .top-login__icon { transform: translateX(3px); }

@media (max-width: 720px) {
  .top-login {
    top: 14px;
    right: 14px;
    padding: 8px 14px;
  }
  .top-login__label { display: none; }
  .top-login__cta { font-size: 12px; }
}

/* ============================================================
   PAGE-LOGIN — tela de auth com a nova identidade
   ============================================================ */
.page-login {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(88, 59, 20, 0.55), transparent 60%),
    linear-gradient(180deg, #1a120a 0%, #0a0805 100%);
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow-x: hidden;
}

.page-login::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, transparent 0, transparent 14px, rgba(255, 255, 255, 0.018) 14px, rgba(255, 255, 255, 0.018) 15px);
  pointer-events: none;
  z-index: 0;
}

.auth-page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.auth-back {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.auth-back:hover {
  color: #c9a86a;
  transform: translateX(-3px);
}

.auth-back svg { width: 16px; height: 16px; }

/* === Card principal === */
.auth-card {
  background:
    linear-gradient(180deg, rgba(40, 28, 16, 0.92) 0%, rgba(20, 14, 8, 0.96) 100%);
  border: 1px solid rgba(245, 234, 210, 0.12);
  border-radius: 22px;
  padding: 44px 36px 32px;
  box-shadow:
    0 60px 100px -30px rgba(0, 0, 0, 0.7),
    0 0 80px -20px rgba(201, 168, 106, 0.3),
    inset 0 1px 0 rgba(255, 235, 200, 0.08);
}

.auth-card__brand { text-align: center; margin-bottom: 36px; }

.auth-card__kicker {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a86a;
  margin-bottom: 18px;
  padding: 6px 14px;
  background: rgba(201, 168, 106, 0.08);
  border: 1px solid rgba(201, 168, 106, 0.25);
  border-radius: 999px;
}

.auth-card__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1;
  color: #f5ead2;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 14px;
}

.auth-card__title-accent { color: #c9a86a; }

.auth-card__lead {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(245, 234, 210, 0.6);
  margin: 0;
}

/* === Form === */
.auth-form { display: flex; flex-direction: column; gap: 18px; }

.auth-field { display: flex; flex-direction: column; gap: 8px; }

.auth-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a86a;
}

.auth-field__hint {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.auth-field__hint:hover { color: #f5ead2; }

.auth-field input {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #f5ead2;
  background: rgba(10, 8, 5, 0.55);
  border: 1px solid rgba(245, 234, 210, 0.14);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.auth-field input::placeholder { color: rgba(245, 234, 210, 0.28); }

.auth-field input:focus {
  border-color: rgba(201, 168, 106, 0.55);
  background: rgba(10, 8, 5, 0.75);
  box-shadow: 0 0 0 4px rgba(201, 168, 106, 0.12);
}

.auth-field__wrap { position: relative; }

.auth-field__toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: rgba(245, 234, 210, 0.45);
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.auth-field__toggle:hover { color: #c9a86a; background: rgba(201, 168, 106, 0.08); }
.auth-field__toggle svg { width: 18px; height: 18px; }

/* === Mensagem de erro === */
.auth-error {
  background: rgba(180, 50, 50, 0.12);
  border: 1px solid rgba(180, 50, 50, 0.4);
  color: #ff9b9b;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
}

/* === Botão de submit (mesmo CTA verde do landing) === */
.auth-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-top: 6px;
  padding: 18px 28px;
  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: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0;
  border-radius: 60px;
  cursor: pointer;
  overflow: hidden;
  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;
}

.auth-submit:hover { transform: translateY(-2px); }
.auth-submit:active { transform: translateY(0); }
.auth-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.auth-submit__arrow {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

/* === Divisor "ou" === */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0 20px;
  color: rgba(245, 234, 210, 0.35);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 234, 210, 0.18), transparent);
}

/* === CTA pra quem ainda não comprou === */
.auth-buy {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(201, 168, 106, 0.06);
  border: 1px dashed rgba(201, 168, 106, 0.35);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.auth-buy:hover {
  background: rgba(201, 168, 106, 0.12);
  border-color: rgba(201, 168, 106, 0.55);
  transform: translateY(-2px);
}

.auth-buy strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #f5ead2;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.auth-buy span {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(245, 234, 210, 0.55);
}

.auth-buy em {
  color: #c9a86a;
  font-style: normal;
  font-weight: 700;
}

.auth-buy svg {
  margin-left: auto;
  width: 18px;
  height: 18px;
  color: #c9a86a;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.auth-buy:hover svg { transform: translateX(4px); }

.auth-foot {
  margin-top: 24px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: rgba(245, 234, 210, 0.3);
  letter-spacing: 0.06em;
}

@media (max-width: 480px) {
  .auth-card { padding: 32px 22px 24px; border-radius: 18px; }
  .auth-card__title { font-size: 30px; }
  .auth-submit { font-size: 13px; padding: 16px 22px; }
}

/* ============================================================
   PAGE-ADMIN — painel administrativo
   ============================================================ */
.page-admin {
  background: linear-gradient(180deg, #1a120a 0%, #0a0805 100%);
  min-height: 100vh;
  color: #f5ead2;
  font-family: 'Poppins', sans-serif;
}

/* ===== Nav superior ===== */
.admin-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 14, 8, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(245, 234, 210, 0.08);
}

.admin-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f5ead2;
}

.admin-brand__name {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-brand__dot {
  color: #c9a86a;
  font-style: italic;
}

.admin-brand__badge {
  display: inline-block;
  padding: 3px 9px;
  background: #c9a86a;
  color: #1a120a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  border-radius: 3px;
}

.admin-nav__links {
  display: flex;
  gap: 4px;
  margin-left: 16px;
}

.admin-nav__links a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(245, 234, 210, 0.6);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}

.admin-nav__links a:hover { color: #f5ead2; background: rgba(245, 234, 210, 0.05); }
.admin-nav__links a.is-active { color: #c9a86a; background: rgba(201, 168, 106, 0.10); }

.admin-nav__user {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(245, 234, 210, 0.65);
}

.admin-logout {
  padding: 7px 14px;
  background: transparent;
  border: 1px solid rgba(245, 234, 210, 0.2);
  border-radius: 999px;
  color: rgba(245, 234, 210, 0.75);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s ease;
}

.admin-logout:hover { background: rgba(245, 234, 210, 0.08); color: #f5ead2; }

/* ===== Main ===== */
.admin {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 24px 80px;
}

.admin__hello {
  margin-bottom: 32px;
}

.admin__hello--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.admin__kicker {
  display: inline-block;
  font-style: italic;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a86a;
  margin-bottom: 8px;
}

.admin__hello h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 42px);
  margin: 0;
  color: #f5ead2;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.admin__hello h1 span { color: #c9a86a; }

.admin__hello p {
  margin: 8px 0 0;
  color: rgba(245, 234, 210, 0.55);
  font-size: 14px;
}

.admin__search input,
.admin__search select {
  background: rgba(10, 8, 5, 0.6);
  border: 1px solid rgba(245, 234, 210, 0.14);
  border-radius: 10px;
  padding: 10px 14px;
  color: #f5ead2;
  font-family: inherit;
  font-size: 13px;
  min-width: 260px;
  outline: none;
  transition: border-color 0.15s ease;
}

.admin__search input:focus,
.admin__search select:focus {
  border-color: rgba(201, 168, 106, 0.5);
}

/* ===== Stats cards ===== */
.admin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.admin-card {
  padding: 22px 22px 20px;
  background:
    linear-gradient(160deg, rgba(201, 168, 106, 0.06), transparent 70%),
    rgba(20, 14, 8, 0.85);
  border: 1px solid rgba(245, 234, 210, 0.10);
  border-radius: 14px;
}

.admin-card--loading {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(245, 234, 210, 0.45);
  padding: 40px;
}

.admin-card__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a86a;
  margin-bottom: 12px;
}

.admin-card__value {
  display: block;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  color: #f5ead2;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.admin-card small {
  display: block;
  font-size: 12px;
  color: rgba(245, 234, 210, 0.5);
}

/* ===== Blocos (dashboard + tabelas) ===== */
.admin-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 980px) {
  .admin-row { grid-template-columns: 1fr 1fr; }
}

.admin-block {
  background:
    linear-gradient(180deg, rgba(40, 28, 16, 0.55), rgba(20, 14, 8, 0.85));
  border: 1px solid rgba(245, 234, 210, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.admin-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(245, 234, 210, 0.06);
}

.admin-block__head h2 {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f5ead2;
}

.admin-block__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #c9a86a;
  text-decoration: none;
  transition: color 0.15s ease;
}

.admin-block__link:hover { color: #f5ead2; }

/* ===== Tabela ===== */
.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table thead th {
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 168, 106, 0.85);
  padding: 14px 18px;
  background: rgba(10, 8, 5, 0.4);
  border-bottom: 1px solid rgba(245, 234, 210, 0.08);
  white-space: nowrap;
}

.admin-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(245, 234, 210, 0.05);
  color: #f5ead2;
  vertical-align: middle;
}

.admin-table tbody tr:last-child td { border-bottom: none; }

.admin-table tbody tr:hover { background: rgba(245, 234, 210, 0.03); }

.admin-table .dim   { color: rgba(245, 234, 210, 0.5); font-size: 12px; }
.admin-table .mono  { font-family: 'JetBrains Mono', 'Courier New', monospace; font-size: 11px; color: rgba(245, 234, 210, 0.65); }
.admin-table .t-right { text-align: right; }
.admin-table .t-actions { display: flex; gap: 6px; justify-content: flex-end; white-space: nowrap; }

.admin-empty {
  padding: 36px 18px !important;
  text-align: center !important;
  color: rgba(245, 234, 210, 0.4) !important;
  font-style: italic;
}

/* ===== Pill (status) ===== */
.admin-pill {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}

.admin-pill--ok   { background: rgba(20, 114, 59, 0.20); color: #6cd897; border: 1px solid rgba(108, 216, 151, 0.25); }
.admin-pill--warn { background: rgba(201, 168, 106, 0.15); color: #c9a86a; border: 1px solid rgba(201, 168, 106, 0.3); }
.admin-pill--err  { background: rgba(180, 50, 50, 0.18); color: #ff9b9b; border: 1px solid rgba(255, 155, 155, 0.25); }
.admin-pill--neutral { background: rgba(245, 234, 210, 0.06); color: rgba(245, 234, 210, 0.6); border: 1px solid rgba(245, 234, 210, 0.12); }

/* ===== Botões pequenos ===== */
.admin-btn {
  padding: 6px 12px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  white-space: nowrap;
}

.admin-btn--ghost {
  background: rgba(245, 234, 210, 0.05);
  border-color: rgba(245, 234, 210, 0.12);
  color: rgba(245, 234, 210, 0.85);
}

.admin-btn--ghost:hover {
  background: rgba(201, 168, 106, 0.12);
  border-color: rgba(201, 168, 106, 0.35);
  color: #c9a86a;
}

.admin-btn--danger {
  background: rgba(180, 50, 50, 0.10);
  border-color: rgba(180, 50, 50, 0.25);
  color: #ff9b9b;
}

.admin-btn--danger:hover {
  background: rgba(180, 50, 50, 0.18);
  border-color: rgba(180, 50, 50, 0.5);
}

.admin-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== Paginação ===== */
.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  border-top: 1px solid rgba(245, 234, 210, 0.06);
}

.admin-pagination__info {
  font-size: 12px;
  color: rgba(245, 234, 210, 0.45);
}

/* ===== Toast ===== */
.admin-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(20, 14, 8, 0.96);
  border: 1px solid rgba(245, 234, 210, 0.18);
  color: #f5ead2;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.8), 0 0 30px -10px rgba(201, 168, 106, 0.4);
  backdrop-filter: blur(10px);
}

.admin-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.admin-toast[data-type="error"] {
  border-color: rgba(180, 50, 50, 0.5);
  color: #ff9b9b;
}

/* ===== Responsivo ===== */
@media (max-width: 760px) {
  .admin-nav__inner { flex-wrap: wrap; gap: 14px; padding: 12px 16px; }
  .admin-nav__links { margin-left: 0; order: 3; flex-basis: 100%; overflow-x: auto; }
  .admin-nav__user { margin-left: auto; }
  .admin { padding: 24px 16px 60px; }
  .admin__hello--row { flex-direction: column; align-items: flex-start; }
  .admin__search input,
  .admin__search select { width: 100%; min-width: 0; }
  .admin-table thead th,
  .admin-table tbody td { padding: 10px 12px; font-size: 12px; }
  .admin-table .t-actions { flex-direction: column; align-items: stretch; }
  .admin-card__value { font-size: 28px; }
}
