:root {
  --bg: #050505;
  --text: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.8);
  --gold: #998445;
  --gold-light: #c7b064;
  --border: rgba(255, 255, 255, 0.1);
  font-size: 16px;
}

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

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.pressel {
  position: relative;
  min-height: 100vh;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

/* ---------- BACKGROUND LIMPO (DESKTOP) --------- */
.pressel__backdrop {
  position: absolute;
  inset: 0;

  /* remove almost all dark overlay */
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25)),
    url("./images/desktop-bg.png");

  background-size: cover;
  background-position: center;
  filter: saturate(1.06);
  z-index: 0;
}

/* remove the heavy overlay */
.pressel__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.05) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* ---------- COPY CARD ---------- */
.pressel__copy {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  text-align: center;
  padding: 2.25rem 1.25rem 3.25rem;
  border-radius: 32px;
  backdrop-filter: blur(6px);
  background: rgba(5, 5, 5, 0.55);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.40);
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--muted);
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.2;
  font-weight: 600;
}

h1 span {
  color: var(--gold);
  display: block;
}

.headline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.headline__sub {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--muted);
}

.divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

.description {
  margin: 0 auto 1.6rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 420px;
}

/* ---------- CTA ---------- */
.cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #050505;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 25px 45px rgba(153, 132, 69, 0.25);
  text-decoration: none;
  animation: float 2.6s ease-in-out infinite;
}

.cta span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(5, 5, 5, 0.7);
}

.footer {
  border-top: 1px solid var(--border);
  background: #030303;
  padding: 2.5rem 0;
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- FLOAT ANIMATION ---------- */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 25px 45px rgba(153, 132, 69, 0.25);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 0 35px 60px rgba(153, 132, 69, 0.35);
  }
}

/* ---------- DESKTOP ADJUSTMENTS ---------- */
@media (min-width: 960px) {
  .pressel {
    align-items: center;
    justify-content: flex-start;
  }

  .pressel__copy {
    margin-left: clamp(0.5rem, 8vw, 6rem);
    text-align: left;
    padding: 2.75rem 3rem 3.25rem;
    background: rgba(5, 5, 5, 0.55);
  }

  .pressel__backdrop {
    background-position: 65% center;
  }

  .divider {
    margin-left: 0;
  }
}

/* ---------- MOBILE BACKGROUND ---------- */
@media (max-width: 640px) {
  .pressel {
    align-items: flex-end;
    text-align: center;
  }

  .pressel__copy {
    text-align: center;
    padding: 2rem 1rem 2.5rem;
  }

  /* troca fundo no mobile */
  .pressel__backdrop {
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25)),
      url("./images/mobile-bg.png");
    background-position: center;
  }

  .pressel__backdrop::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.25)
    );
  }
}
