/* ==========================================================================
   EDITORIAL-BANNER — assets/css/sections/editorial.css
   SENV Theme · Banner do Programa Ritual
   ========================================================================== */

.senv-editorial-banner {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax suave */
  overflow: hidden;
}

/* Overlay escuro */
.senv-editorial-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 8, 7, 0.85) 0%,
    rgba(10, 8, 7, 0.55) 60%,
    rgba(10, 8, 7, 0.20) 100%
  );
}

/* Conteúdo */
.senv-editorial-banner__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.senv-editorial-banner__title {
  font-family: var(--senv-font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
  color: var(--senv-offwhite);
  margin: 12px 0 20px;
}

.senv-editorial-banner__text {
  font-family: var(--senv-font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--senv-nude);
  margin: 0 0 32px;
  opacity: 0.9;
}

.senv-editorial-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--senv-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--senv-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 146, 74, 0.4);
  padding-bottom: 4px;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.senv-editorial-banner__link:hover {
  border-color: var(--senv-gold);
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .senv-editorial-banner {
    padding: 80px 0;
    background-attachment: scroll; /* parallax desabilitado no mobile */
  }

  .senv-editorial-banner__content {
    max-width: 100%;
  }
}
