:root {
  --gray: #494949;
  --botones: #0A939E;
  --naranja: #FF7C43;
  --titulos: #0A6E9F;
  --sm: 14px;
  --md: 16px;
  --lg: 28px;
}

.pagina4 {
  background-image: url("https://d1ocs6og0s31n5.cloudfront.net/cieltechno/landing_mybatch/fondo-batch.jpg");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 100vh;
  padding: 5rem;
  box-sizing: border-box;
}

.contenido {
  max-width: 1000px;
  width: 100%;
}

.titulo4 {
  color: white;
  font-size: 2.5rem;
  font-family: 'PT Sans', sans-serif;
  margin-bottom: 2rem;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  justify-items: center;
}

.content {
  background-color: white;
  border-radius: 12px;
  box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.5);
  padding: 10px;
  width: 100%;
  max-width: 220px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content img {
  height: 90px;
  width: 90px;
  margin-bottom: 1rem;
}

.content p {
  font-size: 20px;
  font-family: 'PT Sans', sans-serif;
  color: var(--gray);
  font-weight: 400;
  margin: 0;
}

/* Responsive para tablets */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .pagina4 {
    justify-content: center;
    padding: 2rem 1rem;
  }
}

/* Responsive para móviles */
@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .titulo4 {
    font-size: 2rem;
  }
}
