
/* ======== ESTILOS GERAIS ======== */
.masterclass-section {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #5b3cf6 0%, #7a57ff 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.masterclass-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  z-index: 0;
}

.masterclass-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

/* ======== BADGE SUPERIOR ======== */
.masterclass-badge {
  background: rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 25px;
}

/* ======== TITULO ======== */
.masterclass-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.masterclass-title .highlight {
  color: #ffeb3b;
}

/* ======== SUBTITULO ======== */
.masterclass-sub {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 35px;
}

/* ======== BENEFICIOS ======== */
.masterclass-benefits {
  text-align: left;
  background: rgba(255,255,255,0.08);
  padding: 25px 30px;
  border-radius: 16px;
  margin: 0 auto 35px;
  max-width: 550px;
}

.masterclass-benefits p {
  margin: 10px 0;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.masterclass-benefits p::before {
  content: '✓';
  margin-right: 10px;
  background: rgba(255,255,255,0.25);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ======== DATA ======== */
.masterclass-date {
  background: rgba(255,255,255,0.1);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* ======== BOTAO ======== */
.masterclass-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  color: #000;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(255, 204, 51, 0.3);
}

.masterclass-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 204, 51, 0.5);
}
