/* ====== SECCION ====== */
.webinars-section {
  padding: 80px 20px;
  background: 
    linear-gradient(
      rgba(0,0,0,0.15),
      rgba(0,0,0,0.15)
    ),
    url("/img/bg_equipo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* ====== TITULO ====== */
.webinars-title {
  text-align: center;
  font-size: 46px;
  margin-bottom: 45px;
  color: white;
  font-weight: 700;
}

/* ====== GRID ====== */
.webinars-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

/* ====== CARD ====== */
.webinar-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.webinar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ====== TEXTOS ====== */
.webinar-title {
  font-size: 34px;
  margin-bottom: 18px;
  color: #111827;
  font-weight: 600;
}

.webinar-speaker,
.webinar-date {
  font-size: 26.5px;
  color: #4b5563;
  margin-bottom: 14px;
  line-height: 1.6;
}

/* ====== BOTON ====== */
.webinar-btn {
  margin-top: 26px;
  text-align: center;
  background: #2563eb;
  color: #ffffff;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 26px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.webinar-btn:hover {
  background: #1d4ed8;
  transform: scale(1.04);
  box-shadow: 0 10px 22px rgba(37,99,235,0.35);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 600px) {
  .webinars-title {
    font-size: 30px;
  }

  .webinar-title {
    font-size: 18px;
  }

  .webinar-speaker,
  .webinar-date {
    font-size: 16px;
  }
}