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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 100%;
  font-family: Montserrat, sans-serif;
}

ul li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.flex {
  --gap: 4rem;
  display: flex;
}
.flex .left {
  padding-right: calc(var(--gap) / 2);
}
.flex .right {
  padding-left: calc(var(--gap) / 2);
}
@media (max-width: 960px) {
  .flex {
    flex-flow: row wrap;
  }
  .flex .left,
.flex .right {
    padding-left: 0;
    padding-right: 0;
  }
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-between {
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

.col-1-2 {
  width: 50%;
}

.col-1-3 {
  width: 33.3333333333%;
}

.col-2-3 {
  width: 66.6666666667%;
}

.col-40 {
  width: 40%;
}

.col-60 {
  width: 60%;
}

@media (max-width: 960px) {
  .col-1-2,
.col-1-3,
.col-2-3,
.col-40,
.col-60 {
    width: 100%;
  }
}
h1 {
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  line-height: 1.25;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.25rem, 3vw, 2.5rem);
  line-height: 1.25;
  font-weight: 700;
}

.container {
  width: 90%;
  max-width: 1440px;
  margin: auto;
}

.textos {
  display: grid;
  align-content: start;
  gap: 1rem;
}
.textos h1,
.textos h2 {
  padding-bottom: 1rem;
}
.textos p,
.textos li,
.textos dd {
  font-size: 1.125rem;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  color: white;
  background: rgba(0, 0, 0, 0.95);
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  padding: 1rem 1.5rem;
  text-align: center;
  text-transform: uppercase;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.25s;
}
.btn:hover {
  background: rgba(0, 0, 0, 0.75);
}

.header {
  padding: 2rem 0;
  text-align: center;
}
.header a {
  display: block;
  height: 4rem;
}
.header a img {
  height: 100%;
  width: auto;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.kit-logo {
  text-align: center;
  margin: 2rem auto;
  height: 10rem;
}
.kit-logo img {
  height: 100%;
  margin: auto;
}

.intro {
  --gap: 6rem;
  padding: 4rem 0;
}
.intro ul {
  flex-flow: column;
}
.intro ul li {
  display: grid;
  align-items: center;
  grid-template-columns: 6rem auto;
  gap: 2rem;
  padding: 1.5rem 0;
  font-size: 1.25rem;
}
.intro ul li .icono {
  height: 6rem;
}

.logos {
  padding: 2rem 0;
}
.logos img {
  height: 8rem;
}

.info {
  padding: 4rem 0;
}
.info .big-text {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.25;
}
.info__top {
  padding-bottom: 4rem;
}
.info dl {
  display: grid;
  gap: 1rem;
  padding-right: 2rem;
}
.info dl dt {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
.info dl dd {
  padding-left: 1.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 960px) {
  .info dl {
    padding-right: 0;
  }
}
.info ul {
  padding-left: 1.5rem;
}
.info ul li {
  list-style: initial;
  padding-bottom: 1rem;
}

.servicios {
  padding: 4rem 0;
}
.servicios__items {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 30%;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 960px) {
  .servicios__items {
    grid-auto-flow: unset;
    grid-auto-columns: unset;
  }
}
.servicios__item {
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
  padding: 2rem;
  box-shadow: 0.5rem 0.5rem rgba(0, 0, 0, 0.25);
  border: 0.25rem solid rgba(0, 0, 0, 0.75);
}
.servicios__item h3 {
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.servicios__item .precio {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 0, 0, 0.75);
}
.servicios__item .precio small {
  font-size: 0.5em;
  letter-spacing: -0.05em;
}
.servicios__item .precio::before {
  content: "Desde";
  display: block;
  text-transform: uppercase;
  font-size: 0.4em;
  font-weight: 700;
}
.servicios__item ul li {
  display: flex;
  line-height: 2;
}
.servicios__item ul li::before {
  content: "";
  height: 2em;
  width: 1em;
  margin-right: 1ch;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 18 18'%3E%3Cpath fill='%23000' d='m7 12.172 9.192-9.193 1.415 1.414L7 15 .636 8.636 2.05 7.222 7 12.172Z'/%3E%3C/svg%3E");
          mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 18 18'%3E%3Cpath fill='%23000' d='m7 12.172 9.192-9.193 1.415 1.414L7 15 .636 8.636 2.05 7.222 7 12.172Z'/%3E%3C/svg%3E");
}
.servicios__item .btn {
  justify-self: center;
  margin-top: auto;
}

.contacto {
  padding: 4rem 0;
}

.form {
  display: grid;
  gap: 1rem;
}
.form .input {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0.025);
  padding: 0.75rem 1rem;
  resize: none;
}
.form .input::-moz-placeholder {
  opacity: 1;
  color: currentColor;
}
.form .input:-ms-input-placeholder {
  opacity: 1;
  color: currentColor;
}
.form .input::placeholder {
  opacity: 1;
  color: currentColor;
}
.form .btn {
  padding: 1rem 2.5rem;
  justify-self: center;
}
.form__feedback {
  text-align: center;
}

.footer {
  padding: 1rem 0;
  font-size: 0.875rem;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.75);
}/*# sourceMappingURL=style.css.map */