.info-section {
  background: #000;
  color: #fff;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}
.info-section .top {
  text-align: center; /* solo el bloque superior centrado */
}

.info-section .top p {
  text-align: justify; /* el texto vuelve a justificarse */
}

.info-section .box h3 {
  text-align: center; /* títulos centrados */
}

.info-section .box p {
  text-align: justify; /* párrafos justificados */
  line-height: 1.6;
}
/* TOP */
.top {
  text-align: center;
  margin-bottom: 50px;
}

.top h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.top p {
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
  color: #ccc;
}

/* CONTENT */
.content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}

/* BOXES */
.box h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.box p {
  line-height: 1.6;
  color: #ccc;
}

/* IMAGE */
.center img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .center {
    order: -1;
  }
}