.terapiapage-section {
  padding: 60px 20px;
}

.terapias-grid-uno {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.card-terapia-uno {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-terapia-uno img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.titulo-card-terapia {
  font-weight: bold;
  margin-top: 10px;
}

.texto-card-terapia {
  font-size: 14px;
  text-align: justify;
}

.negritas-card-terapia {
  font-weight: bold;
}

/* TABLET */
@media (max-width: 1024px) {
  .terapias-grid-uno {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MÓVIL */
@media (max-width: 768px) {
  .terapias-grid-uno {
    grid-template-columns: 1fr;
  }
}


/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 100px 20px;
  background: #fff;
}

/* TITULO */
.about-title {
  text-align: center;
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 80px;
}

/* 🔥 FORZAR 2 COLUMNAS REAL */
.about-content {
  max-width: 1100px;
  margin: auto;

  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 80px;

  align-items: start;
}

/* texto */
.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .about-title {
    font-size: 34px;
  }
}


/*CURSOS*/
.hero-cursos .hero-bg {
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* overlay oscuro para que se lea el texto */
.hero-cursos .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.10);
}

.hero-title {
  position: relative;
  z-index: 2;

  color: #000;
  font-size: 60px;
  font-weight: 500;

  margin-bottom: 30px;
  text-align: center;
}

/* responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
    margin-bottom: 20px;
  }
}

/* responsive */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 34px;
  }
}

.about-section {
  padding: 100px 20px;
  background: #fff;
}

/* 2 columnas tipo editorial */
.about-content {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* columnas */
.about-column h2 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-column p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.about-column {
    text-align: justify;
}

/* responsive */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-column h2 {
    font-size: 26px;
  }
}
