/* ==========================================================================
   HOME PAGE — Force Fair
   ========================================================================== */

/* ---------- Hero ---------- */
.ff-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Foto de fundo — escurecida e fosca (baixo contraste/saturação) */
.ff-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url(../img/bg-hero-home-2.jpg);
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.55) contrast(0.9) saturate(0.75);
}

/* Camada de tonalidade verde da marca, sobre a foto */
.ff-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(31, 38, 31, 0.82) 0%, rgba(31, 38, 31, 0.6) 45%, rgba(31, 38, 31, 0.85) 100%);
  mix-blend-mode: multiply;
}

.ff-hero.is-layout-flow > * {
  margin-block-start: 0!important;
}

.ff-hero .wp-block-buttons {
  justify-content: center;
}

.ff-hero .wp-block-button.is-style-outline .wp-block-button__link {
  border-color: var(--wp--preset--color--brand-secondary-text);
  color: var(--wp--preset--color--light-neutral);
}

.ff-hero .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--wp--preset--color--brand-secondary-text);
  color: var(--wp--preset--color--brand-primary-bg);
}

/* ---------- Product Cards ---------- */
.ff-card {
  background: var(--wp--preset--color--brand-primary-bg);
  border-radius: 8px;
  padding: 2rem;
}

.ff-card-number {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem !important;
}

.ff-card-products {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--wp--preset--color--brand-primary-text);
}

/* ---------- Social Proof Placeholder ---------- */
.ff-placeholder {
  background: var(--wp--preset--color--brand-primary-text);
  border-radius: 8px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 782px) {
  .ff-hero {
    min-height: 60vh;
  }
}
