.index-servicio-card, .index-header-contenedor-inferior {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.index-footer-flex-container, .index-servicios-container-flex {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/* header *****************/
* {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #000000;
}

.hero-tituloSitio, h1, .logo {
  font-family: "Italianno", cursive;
  font-weight: 400;
  font-size: 4rem;
}

.index-header {
  /* modifico la ruta para que funcione en css */
  background-image: url("../img/headerBackground.jpg");
  background-size: cover;
  background-position-x: 70%;
  background-position-y: 12%;
  height: 95vh;
}

.index-header-contenedor-inferior {
  justify-content: center;
  height: 100%;
  padding: 3rem 1rem 3rem 1rem;
  gap: 3rem;
}

.index-header-btn-contactar {
  width: 80%;
  max-width: 25rem;
  border: 1px solid rgb(168, 17, 42);
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: rgba(245, 231, 233, 0.993);
  transition: transform 0.4s;
}
.index-header-btn-contactar:hover {
  transform: scale(1.05);
}

/* main *****************/
.secciones-titulo {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  text-decoration-thickness: 0.01rem;
}

.index-servicios-container-flex {
  gap: 1rem;
  flex-wrap: wrap;
  align-items: stretch;
}

/* footer *****************/
.index-footer {
  background-color: #ccc;
  height: 10rem;
}
.index-footer img {
  width: 3rem;
}

.index-footer-flex-container {
  gap: 1rem;
}

/* componenente servicios *****************/
.index-servicios-container-flex {
  gap: 1rem;
  flex-wrap: wrap;
  align-items: stretch;
}

.index-servicio-card {
  justify-content: flex-start; /* distinto a otros */
  max-width: 20rem;
  background-color: #ccc;
  padding: 0.5rem;
  transition: transform 0.5s;
}
.index-servicio-card:hover {
  transform: scale(1.03);
  cursor: pointer;
}
.index-servicio-card img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}
.index-servicio-card .precio {
  color: rgb(168, 17, 42);
  font-size: 1rem;
  font-weight: 600;
}
.index-servicio-card button {
  margin-top: auto;
  width: 100%;
  border: 1px solid rgb(168, 17, 42);
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: rgba(245, 231, 233, 0.993);
}

/*# sourceMappingURL=styles.css.map */
