.productos {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 80%;
  margin: 100px auto;
}
.productos .title h2 {
  color: white;
  background-color: var(--red);
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
}
.productos .empresarial {
  display: flex;
  gap: 20px;
}
.productos .empresarial .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: white;
  background-color: var(--green);
  padding: 30px 40px;
  border-radius: 10px;
}
.productos .empresarial div {
  width: 100%;
}
.productos .empresarial div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.productos .empresarial .text h2, .productos .empresarial .text2 h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1;
  font-weight: bold;
}
.productos .empresarial img {
  border-radius: 10px;
}

.servicios {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 60%;
  margin: 100px auto;
}
.servicios .title h2 {
  color: white;
  background-color: var(--red);
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
}
.servicios .empresarial {
  display: flex;
  gap: 30px;
}
.servicios .empresarial .text {
  width: 80%;
  background-color: var(--green);
  border-radius: 10px;
  color: white;
  padding: 30px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.servicios .empresarial .text h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1;
  font-weight: bold;
}
.servicios .empresarial img {
  border-radius: 10px;
}

.online {
  padding: 60px 0px;
  background-color: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.online a {
  padding: 7px 25px;
  border: 2px solid white;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.online a:hover {
  cursor: pointer;
  background-color: white;
  color: var(--green);
}

.online h2 {
  color: white;
  font-weight: bold;
  font-size: var(--font-xlarge);
}

.catalogo {
  position: relative;
  padding: 30px 90px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 100px auto;
  color: gray;
  text-align: center;
  border-radius: 5px;
  border: 2px solid var(--green);
}
.catalogo a {
  position: absolute;
  content: "Contactar";
  width: auto;
  height: auto;
  bottom: -25;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--red);
  color: white;
  padding: 10px;
  font-weight: bold;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.catalogo a:hover {
  cursor: pointer;
  background-color: var(--green);
}

@media screen and (max-width: 768px) {
  .productos {
    width: 90%;
    margin: 100px auto;
  }
  .productos .title {
    align-self: flex-start;
  }
  .productos .empresarial {
    flex-direction: column;
    gap: 10px;
  }
  .productos .empresarial .text {
    width: 100%;
  }
  .productos .empresarial img {
    width: 100%;
    border-radius: 10px;
  }
  .servicios {
    width: 90%;
    margin: 100px auto;
  }
  .servicios .title {
    align-self: flex-start;
  }
  .servicios .empresarial {
    flex-direction: column;
    gap: 10px;
  }
  .servicios .empresarial .text {
    width: 100%;
  }
  .servicios .empresarial img {
    width: 100%;
    border-radius: 10px;
  }
  .online {
    padding: 60px 40px;
  }
  .catalogo {
    width: 90%;
    margin: 100px auto;
  }
  .catalogo::after {
    position: absolute;
    content: "Contactar";
    width: auto;
    height: auto;
    bottom: -25;
    left: 125px;
    background-color: var(--red);
    color: white;
    padding: 10px;
    font-weight: bold;
    border-radius: 10px;
  }
}/*# sourceMappingURL=Productos.css.map */