/* ==========================
   INSTRUCTORES
========================== */

.instructoresSection {
  padding: 120px 0;
  background: #fff;
}

.instructoresContainer {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.instructoresText{
  flex: 1 1 450px;
}

.instructoresSubtitle{
  text-transform: uppercase;
  font-size: .9rem;
  font-weight: 600;
  color: #4c6ef5;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.instructoresTitle{
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.instructoresDescripcion{
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

.instructoresBtn{
  display: inline-block;
  padding: 14px 32px;
  background: #d63384;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.instructoresBtn:hover{
  background: #b82a6f;
}

.instructoresGrid{
  flex: 1 1 500px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.instructorCard{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  height: 260px;
}

.instructorCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(75%);
  transition: filter .3s ease;
}

.instructorCard:hover img {
  filter: brightness(55%);
}

.InstructorInfo{
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
}

.InstructorInfo h3{
  font-size: 1.2rem;
  font-weight: 700;
}

.InstructorInfo p{
  font-size: .9rem;
  opacity: 0.9;
}