/* SEÇÃO HERO */
.hero-section {
  min-height: 100vh;
  background-image: url(../img/Logo\ VMConecta\ sem\ fundo.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-size: contain;
  color: var(--dark-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* Espaço para o header */
}

.hero-background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 15% 85%,
      var(--primary-orange),
      transparent 25%
    ),
    radial-gradient(circle at 85% 20%, var(--secondary-green), transparent 25%);
  opacity: 0.2;
  filter: blur(100px);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-button {
  background-color: var(--primary-orange);
  color: var(--light-text);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}
