body {
  background-color: #e5e5e5;
}

.description {
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 90%;
  margin: auto;
  padding: 3rem;
}

.resumeMachine {
  width: 100%;
  height: 55vh;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cabeceraResumen > h1 {
  color: #1e49d4;
}

.fotoYDetalles {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fotoMaquina {
  width: 45%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-radius: 16px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
  overflow: hidden;
}

.slider {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease;
  height: 100%;
  width: 100%;
}

.slide {
  flex: 0 0 100%;
  text-align: center;
}

.slide > img {
  width: 90%;
  height: 60%;
  border-radius: 16px;
}

.slider > button {
  position: absolute;
  top: 50%;
  width: 40px;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.detalles {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.detalles > h3 {
  font-size: 30px;
}

.detalles > ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detalles > p {
  font-size: 20px;
}

.cardDescrip {
  width: 100%;
  margin: auto;
  height: 30vh;
  padding-bottom: 3rem;
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 40px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.cardImagen {
  width: 30%;
  height: 100%;
}

.cardImagen > a {
  width: 100%;
  height: 100%;
}

.cardImagen > a > img {
  width: 100%;
  height: 100%;
}

.explicacion {
  width: 70%;
}

.explicacion > p {
  font-size: 20px;
  font-family: "Montserrat";
}

.explicacion > p > span {
  font-weight: bold;
}

td[rowspan] {
  height: 20px;
  border-bottom: 1px solid #000;
}

td {
  padding: 0.35rem 0.75rem;
}

@media screen and (max-width: 1600px) {
  .cardImagen {
    width: 40% !important;
  }

  .explicacion {
    width: 60% !important;
  }
}

@media screen and (max-width: 1200px) {
  p {
    font-size: 15px !important;
  }
}

@media screen and (max-width: 800px) {
  table {
    display: none;
  }

  .description {
    padding: 0rem !important;
  }

  .fotoYDetalles {
    flex-direction: column;
    gap: 50px;
  }

  .fotoMaquina {
    width: 100% !important;
  }

  .detalles {
    width: 100% !important;
  }

  .cardDescrip {
    flex-direction: column;
    height: auto;
    gap: 50px;
  }

  .cardImagen {
    width: 90% !important;
  }

  .explicacion {
    width: 90% !important;
  }
}
