/* Hero section styles */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../img/fundo.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}



.hero::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--color-white);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 100%);
}

.hero-content {
  max-width: 700px;
  animation: fadeIn 1.2s ease-out;
}

.hero h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 600px;
}

.hero .btn {
  font-size: 1.1rem;
  padding: 15px 35px;
  animation: pulse 2s infinite;
}