/* =========================================================
   FRIALTO — HERO SLIDER (FADE PREMIUM)
   ========================================================= */

.fr-hero {
  position: relative;
  margin: 24px auto 40px;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
}

.fr-hero-track {
  position: relative;
  height: 320px;
}

.fr-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(.4,0,.2,1);
  display: flex;
  align-items: center;
}

.fr-hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.fr-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}

.fr-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  max-width: 520px;
  color: #fff;
}

.fr-hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.fr-hero-text {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 20px;
}

.fr-hero-btn {
  display: inline-block;
  background: var(--fr-red);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}

.fr-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(228,16,14,.35);
}

/* DOTS */
.fr-hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.fr-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
}

.fr-hero-dot.is-active {
  background: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .fr-hero-track {
    height: 240px;
  }

  .fr-hero-content {
    padding: 24px;
  }

  .fr-hero-title {
    font-size: 1.4rem;
  }
}
/* =========================================================
   FRIALTO — HERO PREMIUM (ACABAMENTO FINAL)
   ========================================================= */

.fr-hero {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.18);
  margin-bottom: 36px;
  position: relative;
}

/* Overlay elegante */
.fr-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.55),
    rgba(0,0,0,.15) 60%,
    transparent
  );
  pointer-events: none;
}

/* Conteúdo do banner */
.fr-hero-content {
  padding: 48px 56px;
}

/* Botão do hero */
.fr-hero-btn {
  margin-top: 18px;
  border-radius: 14px;
}