/* ========================================
   TUTORIAL PAGE - Hero Section
   ======================================== */

.hero-section-tutorial {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 61, 130, 0.85) 0%, rgba(0, 40, 86, 0.75) 100%),
    url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?q=80&w=2000') center/cover no-repeat;
  background-attachment: fixed;
  overflow: visible;
  padding: 100px 20px 80px;
}

.hero-section-tutorial .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section-tutorial .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.hero-section-tutorial .hero-title {
  font-size: 56px;
  font-weight: 800;
  color: white;
  margin: 0 0 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-section-tutorial .hero-subtitle {
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-section-tutorial {
    min-height: 50vh;
    padding: 80px 20px 60px;
  }

  .hero-section-tutorial .hero-title {
    font-size: 42px;
  }

  .hero-section-tutorial .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero-section-tutorial {
    min-height: 45vh;
    padding: 70px 16px 50px;
  }

  .hero-section-tutorial .hero-title {
    font-size: 36px;
  }

  .hero-section-tutorial .hero-subtitle {
    font-size: 16px;
  }
}
