
.fan-parallax {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fan-parallax-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.fan-parallax-image img {
  position: absolute;
  width: 100%;
  height: 120%;
  top: -10%;
  object-fit: cover;
  transform: translateY(0) scale(1.18);
  will-change: transform;
}

/* Overlay sutil para o texto legível */
.fan-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.fan-card {
  position: relative;
  z-index: 2;
  max-width: 580px;              /* bem menor */
  padding: 40px 36px;            /* mais compacto e delicado */
  border-radius: 20px;

  /* Mais transparente e sofisticado */
  background: rgba(236, 233, 227, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(236, 233, 227, 0.45);
  box-shadow:
    0 18px 40px -10px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(236, 233, 227, 0.08);

  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fan-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 26px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.fan-card h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

.fan-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin: 0 0 28px 0;
  max-width: 400px;
}

/* Botão mais elegante e proporcional */
.fan-card .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50px;
  background: #111;
  color: #fff;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.fan-card .btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* Responsivo */
@media (max-width: 992px) {
  .fan-card {
    padding: 36px 32px;
    max-width: 440px;
  }
}

@media (max-width: 768px) {
  .fan-parallax {
    height: 85vh;
    min-height: 520px;
  }

  .fan-card {
    padding: 32px 26px;
    margin: 0 16px;
    border-radius: 18px;
    max-width: 100%;
  }

  .fan-card h2 {
    font-size: 1.7rem;
  }

  .fan-card p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .fan-card .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
  }
}

@media (max-width: 480px) {
  .fan-card {
    padding: 28px 22px;
  }

  .fan-card h2 {
    font-size: 1.55rem;
  }
}