/* BASE */


/* HERO */

.theme-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #c7c9c6, #c7c9c6);
  color: white;
}

.theme-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* TEXTO */
.theme-hero-text h1 {
  font-size: 3rem;          /* título grande e impactante */
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #000000;

}

.theme-hero-text p {
  font-size: 1.2rem;        /* texto maior e confortável */
  line-height: 1.7;
  max-width: 600px;
  color: #000000;
  margin-bottom: 32px;
}

/* IMAGEM */
.theme-hero-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 30px 70px #c7c9c6;
}

/* CURSOS */
.theme-courses {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.theme-courses h2 {
  font-size: 1.8rem;
  margin-bottom: 32px;
}

/* GRID */


.theme-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD */
.theme-course-card {
  background: #3f3c3c;
  border-radius: 22px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.511);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
   display: flex;
  flex-direction: column;
}

.theme-course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.theme-course-card h3 {
  margin-bottom: 8px;
  color: #fdffff;

}

.theme-course-card p {
  font-size: 0.95rem;
  color: #fdffff;
}

/* META */
.theme-course-meta {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  font-size: 0.85rem;
  color: #ffffff;
  border-top: none;
  padding-top: 0;
}


/* META */


/* NÍVEL */
.course-level {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.beginner { color: #d2e928; }
.intermediate { color: #f59e0b; }
.advanced { color: #ef4444; }

/* RESPONSIVO */
@media (max-width: 900px) {
  .theme-hero-inner {
    grid-template-columns: 1fr;
  }

  .theme-hero-text h1 {
    font-size: 2.4rem;
  }
}


/* FIX – ISOLAR CARDS DO DASHBOARD */

.page-logica-intro .theme-hero {
  background: #c7c9c6;
  margin-top: -90px;
  padding-top: 140px;
}