/** ESTILOS CORRESPONDIENTES AL FICHERO index.html **/
.hero img {
  width: 28rem;
}

/* Servicios */
.services__title {
  margin-bottom: 1rem;
}

.card {
  width: 20rem;
  min-height: 24rem;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 9rem;
  object-fit: contain;
  padding: 0.5rem;
}

.card-title {
  color: #1D0029;
}

.card__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 6rem;
}

.card__body-link {
  text-decoration: none;
}

/* Sobre Nosotros */
.about__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 60rem;
  margin: 1rem auto;
}

.about__text {
  flex: 1;
  max-width: 30rem;
  text-wrap: pretty;
  padding: 1rem;
}

.about__description {
  font-size: 1rem;
  line-height: 1.5rem;
}

.about__image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about__image {
  max-width: 22rem;
  border-radius: 1rem;
}

@media (max-width: 1200px) {
  .about__content {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero img {
    padding: 3.5rem 0;
  }
}




