/* ============================================
   SEÇÃO HERO - IMAGEM PRINCIPAL
   Design elegante e responsivo
   ============================================ */

.hero-section {
  width: 100%;
  position: relative;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(45, 45, 45, 0.8) 100%),
              url('../img/hero-motors.jpg') center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  color: white;
  padding-right: 40px;
  z-index: 2;
  position: relative;
  max-width: 600px;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  margin: 0 0 20px 0;
  color: #f7941d;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  margin: 0 0 30px 0;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #f7941d, #e67e22);
  color: white;
  border: 2px solid #f7941d;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 148, 29, 0.5);
  background: linear-gradient(135deg, #e67e22, #d35400);
}

.hero-btn-secondary {
  background: transparent;
  color: #f7941d;
  border: 2px solid #f7941d;
}

.hero-btn-secondary:hover {
  background: #f7941d;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 148, 29, 0.4);
}

/* Remove a div da imagem pois agora é background */
.hero-image {
  display: none;
}

/* ============ RESPONSIVO ============ */

/* Tablets */
@media (max-width: 1024px) {
  .hero-section {
    min-height: 500px;
    background-attachment: scroll; /* Remove fixed attachment em tablets para melhor performance */
  }

  .hero-container {
    padding: 30px 20px;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
    max-width: 100%;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-section {
    min-height: 450px;
    background-attachment: scroll;
  }

  .hero-container {
    padding: 20px 15px;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero-buttons {
    gap: 10px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-section {
    min-height: 400px;
  }

  .hero-container {
    padding: 15px 10px;
  }

  .hero-title {
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Animações de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-image {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}