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

.hero-section-tutorial {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(120deg, rgba(8, 56, 108, 0.9) 0%, rgba(11, 79, 153, 0.74) 50%, rgba(44, 134, 209, 0.54) 100%),
    url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?q=80&w=2000') center/cover no-repeat;
  overflow: visible;
  padding: 150px 20px 72px;
}

.hero-section-tutorial .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 255, 255, 0.12) 0%, transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(241, 204, 45, 0.18) 0%, transparent 18%);
  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: 2rem 2.2rem;
  background: linear-gradient(180deg, rgba(7, 42, 83, 0.36) 0%, rgba(7, 42, 83, 0.22) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}

.hero-section-tutorial .hero-title {
  font-size: 52px;
  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: 42vh;
    padding: 132px 20px 54px;
  }

  .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: 38vh;
    padding: 124px 16px 44px;
  }

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

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