.productos-container {
  position: relative;
  background-image: url(../assets/img/productos/bg-productos.webp);
  background-position: center 85%;
  background-size: 100%;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  padding-bottom: 100px;
}

.background-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.background-shapes img{
  position: absolute;
}

.productos .elementos { top: 50%; left: 50%; max-width: 650px;transform: translate(-50%, -50%);width: 100%;}

.contenedor-productos {
  max-width: 1000px;
  text-align: center;
}

.productos--titulo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.productos--titulo span {
  display: block;
  font-family: 'zar';
}

.productos--titulo .title {
  font-size: 3.3rem;
  font-weight: bold;
  font-style: italic;
  color: #4A5E59;
}

.productos--titulo .highlight {
  color: #ba4c25;
  font-size: 2.3rem;
  font-weight: bold;
  position: relative;
}

.illustration {
  width: 100%;
  max-width: 750px;
  margin-top: 0px;
}

/* Listado */
.listado {
  padding: 0;
  position: relative;
}

.listado .shape1 {
  position: absolute;
  width: 100%;
  bottom: 0px;
  max-width: 250px;
  left: 0;
}

.listado-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  justify-content: center;
  gap: 25px;
  width: 100%;
  padding: 40px 0 118px;
  max-width: 1130px;
  margin: 0 auto;
}

.listado-row a{
  display: flex;
}

.producto {
  padding: 80px 50px 50px 50px;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  cursor: pointer;
  position: relative;
}

.contenedor-producto__info {
  font-family: 'zar';
  position: relative;
  z-index: 2;
  color: #211D34;
}

.contenedor-producto {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.producto-1 {
  background-image: url(../assets/img/productos/bg-producto-1.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.producto-2 {
  background-image: url(../assets/img/productos/bg-producto-2.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.producto-3 {
  background-image: url(../assets/img/productos/bg-producto-3.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.producto-3 img {
  max-height: 270px;
}

.producto-4 {
  background-image: url(../assets/img/productos/bg-producto-4.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.producto-5 {
  background-image: url(../assets/img/productos/bg-producto-4.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.producto img {
  max-width: 200px;
  border-radius: 10px;
}

.producto-2 img {
  max-width: 250px;
  border-radius: 10px;
}

.producto h2 {
  font-size: 20px;
  margin-bottom: 0;
  transition: all 1.3s ease-in-out;
}

.producto h2 span:first-of-type{
  font-size: 20px;
  margin-bottom: 0;
  transition: all 1.3s ease-in-out;
}

.producto span {
  font-weight: bold;
  display: block;
  font-size: 36px;
}

.producto p {
  font-size: 14px;
  font-family: 'athelas';
  transition: all 1.3s ease-in-out;
}

.producto-elementos {
  position: absolute;
  transition: all 1.3s ease-in-out;
  z-index: 2;
  opacity: 0;
}

.producto .producto-elemento__1 {
  right: 50px;
  top: 15%;
  width: 100%;
  max-width: 35px;
}

.producto .producto-elemento__2 {
  left: 55px;
  top: 65%;
  width: 100%;
  max-width: 35px;
}

.producto-2 .producto-elemento__1 {
  right: 20px;
}

.producto .producto-elemento__3 {
  left: 15px;
  top: 40%;
  width: 100%;
  max-width: 50px;
}

.producto .producto-elemento__4 {
  left: 10px;
  top: 10px;
  width: 100%;
  max-width: 90%;
}

.overlay {
  background-color: #2B2135;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 1.3s ease-in-out;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 10px;
}

.overlay-1 {
  background-image: url(../assets/img/productos/listado/bg-overlay-1.webp);
}

.overlay-2 {
  background-image: url(../assets/img/productos/listado/bg-overlay-2.webp);
}

.overlay-3 {
  background-image: url(../assets/img/productos/listado/bg-overlay-3.webp);
}

.overlay-4 {
  background-image: url(../assets/img/productos/listado/bg-overlay-4.webp);
}

.overlay-5 {
  background-image: url(../assets/img/productos/listado/bg-overlay-4.webp);
}

.producto:hover .contenedor-producto__info {
  color: #fff;
}

.producto:hover .overlay {
  opacity: 1;
}

.producto:hover .producto-elementos {
  opacity: 1;
}

.producto:hover .producto-elemento__1 {
  transform: translate(0, 100%);
}

.producto:hover .producto-elemento__2 {
  transform: translate(0, 50%);
}

.producto:hover .producto-elemento__3 {
  transform: translate(0, -50%);
}

.producto:hover .producto-elemento__4 {
  transform: translate(10px, 10px);
}

/* Puntos */
.body-productos .puntos {
  padding: 0;
}