.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  /* background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%); */
  overflow: hidden;
  width: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, var(--background) 100%);
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-align: center;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  margin: 0 auto;
  max-width: 800px;
  letter-spacing: -0.02em;
}

.hero h1 span:not(.emoji) {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.emoji {
  font-style: normal;
  -webkit-text-fill-color: initial;
}

/* .typed-cursor {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--primary);
  opacity: 0.8;
  margin-left: 2px;
} */

.hero .description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-button {
  padding: clamp(0.875rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:not(.secondary) {
  background: var(--gradient);
  color: var(--background);
  border: none;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.cta-button:not(.secondary):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

/* Tablet */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1rem;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero .description {
    margin-bottom: 2rem;
  }
}

/* Mobile Large */
@media (max-width: 576px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero-content {
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile Small */
@media (max-width: 360px) {
  .hero {
    padding: 2rem 0.5rem;
  }

  .hero h1 {
    min-height: 3em;
  }

  .hero .description {
    margin-bottom: 1.5rem;
  }
}

/* Ajuste para telas muito grandes */
@media (min-width: 1440px) {
  .hero-content {
    max-width: 1000px;
  }

  .hero .description {
    max-width: 800px;
  }
}