.disenada {
  width: 100%;
  padding: 112px 40px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background-color: #f2f2f2;
}

.disenada-content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 64px;
}

.disenada-textos {
  width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.disenada-modelo {
  width: 42%;
  min-width: 420px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #ded7d1;
}

.disenada-label {
  margin-bottom: 10px;
  color: #a50f0f;
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.disenada h2 {
  max-width: 720px;
  color: #171717;
  font-family: "PT Serif", Georgia, serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: 0;
}

.disenada-intro {
  max-width: 700px;
  margin-top: 22px;
  color: #171717;
  font-size: 22px;
  font-weight: 500;
  line-height: 27px;
}

.disenada-texto {
  max-width: 700px;
  margin-top: 14px;
  color: #6f6f6f;
  font-size: 18px;
  line-height: 24px;
}

.disenada-imagen {
  width: 100%;
  min-height: 280px;
  overflow: hidden;
  background-color: #171717;
}

.disenada-imagen img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.disenada:hover .disenada-imagen img {
  transform: scale(1.025);
}

.disenada-dato {
  padding: 20px 26px;
}

.disenada-dato p {
  color: #a50f0f;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.disenada-pilares {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.disenada-pilares::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 7px;
  width: 1px;
  background-color: #ded7d1;
}

.disenada-pilares span {
  position: relative;
  padding: 15px 0 5px 34px;
  color: #171717;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.disenada-pilares span::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #a50f0f;
}

@media (max-width: 1100px) {
  .disenada {
    padding: 96px 32px;
  }

  .disenada-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
  }

  .disenada-textos,
  .disenada-modelo {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .disenada {
    padding: 78px 20px;
  }

  .disenada h2 {
    font-size: 42px;
    line-height: 44px;
    letter-spacing: 0;
  }

  .disenada-label {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 2px;
  }

  .disenada-intro {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 480px) {
  .disenada {
    padding: 68px 18px;
  }

  .disenada h2 {
    font-size: 34px;
    line-height: 37px;
  }

  .disenada-intro {
    font-size: 18px;
    line-height: 25px;
  }

  .disenada-texto {
    font-size: 16px;
    line-height: 23px;
  }

  .disenada-imagen img {
    height: 280px;
  }

  .disenada-pilares span {
    font-size: 18px;
    line-height: 25px;
  }
}
