@charset "UTF-8";
body {
  min-height: 100vh;
  max-width: 100%;
  background: url("../images/bg-top.svg") top -30px right -195px no-repeat;
  background-color: hsl(240, 78%, 98%);
}
@media (min-width: 1000px) {
  body {
    background: url("../images/bg-top.svg") top 0px right 0px no-repeat, url("../images/bg-bottom.svg") bottom -30px left 0px no-repeat;
    background-color: hsl(240, 78%, 98%);
  }
}

.root {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 0px 20px;
}
.root h1 {
  color: hsl(233, 13%, 49%);
  margin-bottom: 40px;
}

.option-slider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  color: hsl(234, 14%, 74%);
}

.card {
  width: 97%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: "";
}
@media (min-width: 1000px) {
  .card {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    justify-content: center;
    max-width: 1200px; /* Establece el ancho máximo del grid */
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

.option-price-slider input {
  -webkit-appearance: none;
  visibility: hidden;
  display: none;
}
.option-price-slider input:checked ~ .check {
  background: linear-gradient(to right, hsl(236, 72%, 79%), hsl(237, 63%, 64%));
  opacity: 0.6;
}
.option-price-slider input:checked ~ .check::before {
  transform: translateX(25px);
}
.option-price-slider .check {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(to right, hsl(236, 72%, 79%), hsl(237, 63%, 64%));
  height: 30px;
  width: 55px;
  transition: ease-in 0.2s;
  display: block;
  cursor: pointer;
  overflow: hidden;
}
.option-price-slider .check::before {
  content: " ";
  position: absolute;
  border-radius: 50%;
  background: white;
  height: 23px;
  width: 23px;
  transition: 0.5s;
  top: 3.5px;
  left: 3.8px;
}
.option-price-slider:hover {
  cursor: pointer;
}

.child-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: hsl(0, 0%, 100%);
  color: hsl(233, 13%, 49%);
  border-radius: 10px;
  margin-bottom: 35px;
  padding: 30px;
}

.title-child-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  margin-bottom: 20px;
}

.paragraph-child-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: hsl(232, 13%, 33%);
}
.paragraph-child-card span {
  font-size: 40px;
}
.paragraph-child-card strong {
  font-size: 70px;
}

.description {
  width: 100%;
  text-align: center;
  margin: 30px 0px;
  border-bottom: 1px solid hsla(234, 14%, 74%, 0.4);
}
.description li {
  padding: 20px;
  border-top: 1px solid hsla(234, 14%, 74%, 0.4);
}

.btn-child-card {
  width: 100%;
  height: 45px;
  border-radius: 5px;
  border: none;
  background: linear-gradient(to right, hsl(236, 72%, 79%), hsl(237, 63%, 64%));
  color: hsl(0, 0%, 100%);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.btn-child-card:hover {
  background: transparent;
  cursor: pointer;
  border: 1px solid hsl(236, 42%, 68%);
  color: hsl(236, 42%, 68%);
}
.btn-child-card:active {
  transform: translate(1px, 1px);
}

@media (min-width: 1000px) {
  .price-card-container-child-1 {
    margin: 20px 0px;
    border-radius: 10px 0px 0px 10px;
  }
}

@media (min-width: 1000px) {
  .price-card-container-child-2 {
    margin: 0px 0px;
  }
}

@media (min-width: 1000px) {
  .price-card-container-child-3 {
    margin: 20px 0px;
    border-radius: 0px 10px 10px 0px;
  }
}

.price-card-container-child-2 {
  background: linear-gradient(to right, hsl(236, 72%, 79%), hsl(237, 63%, 64%));
  color: hsl(0, 0%, 100%);
}

.price-card-container-child-2-header-price {
  color: hsl(0, 0%, 100%);
}

.price-card-container-child-2-btn {
  width: 100%;
  height: 45px;
  border-radius: 5px;
  border: none;
  background: hsl(0, 0%, 100%);
  color: hsl(236, 42%, 68%);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.price-card-container-child-2-btn:hover {
  background: transparent;
  cursor: pointer;
  border: 1px solid hsl(0, 0%, 100%);
  color: hsl(0, 0%, 100%);
}
.price-card-container-child-2-btn:active {
  transform: translate(1px, 1px);
}

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