/* FVDF - Hero customizado da Home (ver assets/fvdf-hero.js) */

.fvdf-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #21266E 0%, #14173F 100%);
  border-radius: 20px;
  padding: 56px 32px;
  margin: 20px 0 32px;
  text-align: center;
  color: #ffffff;
  font-family: 'Manrope', Roboto, sans-serif;
}

.fvdf-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}

.fvdf-hero__glow--yellow {
  width: 260px;
  height: 260px;
  background: #E7D303;
  top: -80px;
  right: -60px;
}

.fvdf-hero__glow--green {
  width: 220px;
  height: 220px;
  background: #2A9540;
  bottom: -70px;
  left: -50px;
}

.fvdf-hero__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.fvdf-hero__logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 24px;
  margin: 0 0 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.fvdf-hero__logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 220px;
}

.fvdf-hero__title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 16px;
  color: #ffffff;
}

.fvdf-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 28px;
}

.fvdf-hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.fvdf-hero__btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.fvdf-hero__btn--primary {
  background: #E7D303;
  color: #21266E;
}

.fvdf-hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(231, 211, 3, 0.35);
  color: #21266E;
}

.fvdf-hero__btn--outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.fvdf-hero__btn--outline:hover {
  transform: translateY(-2px);
  border-color: #ffffff;
  color: #ffffff;
}

@media (max-width: 640px) {
  .fvdf-hero {
    padding: 40px 20px;
    border-radius: 16px;
  }
  .fvdf-hero__title {
    font-size: 1.5rem;
  }
  .fvdf-hero__actions {
    flex-direction: column;
  }
  .fvdf-hero__btn {
    width: 100%;
    text-align: center;
  }
}
