* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
body {
  background: #000;
  color: #fff;
}

img {
  cursor: pointer;
}
a {
  text-decoration: none;
  color: #fff;
}
.header {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(images/fondo.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.form-input {
  display: flex;
  align-items: center;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 11%;
}
.logo {
  width: 150px;
  height: 60px;
  object-fit: cover;
}
.language-img {
  width: 18px;
  margin-right: 5px;
}
.arrow {
  width: 10px;
  margin-left: 10px;
}
nav div {
  display: flex;
  align-items: center;
}
nav div a {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  background: red;
  height: 35px;
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}
nav div a:first-child {
  background: #000;
  border: 1px solid #666;
}
.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding-top: 5%;
}




.simply-countdown {
  /* The countdown */
  margin-bottom: 2em;
}

.simply-countdown > .simply-section {
  /* coutndown blocks */
  display: inline-block;
  width: 70px;
  height: 70px;
  background: #00cbf7b8;
  margin: 0 4px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  animation: pulse 1s ease infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.simply-countdown > .simply-section > div {
  /* countdown block inner div */
  display: table-cell;
  vertical-align: middle;
  height: 70px;
  width: 70px;
}

.simply-countdown > .simply-section .simply-amount,
.simply-countdown > .simply-section .simply-word {
  display: block;
  color: white;
  /* amounts and words */
}

.simply-countdown > .simply-section .simply-amount {
  font-size: 15px;
  /* amounts */
}

.simply-countdown > .simply-section .simply-word {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-size: 10px;
  /* words */
}



.container h1 {
  font-size: 3.8rem;
  margin-bottom: 20px;
  letter-spacing: -3px;
}
.container h3 {
  font-weight: 500;
  margin-bottom: 30px;
}
.container p {
  font-size: 16px;
  line-height: 2vw;
  margin-bottom: 20px;
}
.container div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.start-input {
  width: 400px;
  height: 50px;
  padding: 10px;
  border: 1px solid #02ff02;
  border-radius: 4px;
  background-color: rgba(135, 206, 235, 0.3);
  outline: 0;
  color: #fff;
  padding-top: 20px;
  font-size: 16px;
}
.start-input::placeholder {
  color: #fff;
}
.start-btn {
  width: 200px;
  height: 50px;
  border: 0;
  background-color: red;
  color: #fff;
  font-size: 18px;
  border-radius: 4px;
  margin-left: 10px;
  cursor: pointer;
}
main {
  border-top: 5px solid #666;
  padding: 10px 11%;
}
.sub-title {
  margin-bottom: 20px;
  margin-top: 50px;
  font-size: 22px;
}
.tendencias a {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  background-color: #000;
  border: 1px solid #666;
  height: 35px;
  padding: 15px;
  font-size: 14px;
  margin-bottom: 30px;
}
.swiper-slide img {
  width: 100%;
  border-radius: 5px;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  color: #fff;
}
.beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  column-gap: 15px;
  row-gap: 15px;
  margin-bottom: 30px;
}
.beneficios div {
  width: 100%;
  border-radius: 10px;
  padding: 20px;
  background-image: linear-gradient(to bottom, #1c1a33, #381b41);
  height: 300px;
  position: relative;
}
.beneficios div h3 {
  margin-bottom: 10px;
}
.beneficios div p {
  font-size: 15px;
}
.beneficios div img {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/* ----------preguntas-frecuentes--------- */
.accordion {
  margin: 20px 0;
  width: 100%;
}
.accordion li {
  list-style: none;
  width: 100%;
  padding: 5px;
}
.accordion li label {
  display: flex;
  padding: 20px;
  height: 80px;
  font-size: 22px;
  font-weight: 500;
  background-color: #303030;
  margin-bottom: 2px;
  cursor: pointer;
  position: relative;
}
input[type="checkbox"] {
  display: none;
}
label::after {
  content: "+";
  font-size: 34px;
  position: absolute;
  right: 20px;
  transition: transform 0.5s;
}
.accordion .content {
  background: #303030;
  text-align: left;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  font-size: 20px;
  transition: max-height 0.3s, padding 0.3s;
}
.accordion input[type="checkbox"]:checked + label + .content {
  max-height: 600px;
  padding: 30px 20px;
}
.accordion input[type="checkbox"]:checked + label::after {
  transform: rotate(135deg);
}

/* ------empieza ahora!------ */
.start-now {
  margin: 60px 0;
  text-align: center;
}
.start-now p {
  margin-bottom: 20px;
}
.start-now div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.start-now .start-input {
  width: 550px;
}
.start-now .start-input::placeholder {
  color: #fff;
}

/* ----------footer----------- */
footer p {
  color: #999;
  font-size: 14px;
}
footer .enlaces {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}
footer .enlaces a {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  text-decoration: underline;
  color: #999;
}
footer .traductor {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  background-color: #000;
  border: 1px solid #666;
  height: 35px;
  padding: 15px;
  font-size: 14px;
}
footer p {
  margin: 50px 0;
}

/* --------para dispositivos moviles-------- */
@media (max-width: 700px) {
  nav {
    padding: 15px 6%;
  }
  .logo {
    width: 100px;
  }
  nav div a:first-child {
    display: none;
  }
  nav div a {
    margin-right: 0;
  }
  .container div {
    display: block;
  }
  .start-input {
    width: 320px;
    margin-bottom: 30px;
  }
  .container h1 {
    font-size: 2.5rem;
  }
  .container h3 {
    font-size: 15px;
  }
  .container p {
    line-height: 20px;
    font-size: 14px;
  }
  main {
    padding: 0 6%;
  }
  .sub-title {
    font-size: 18px;
  }
  .beneficios div {
    height: 200px;
    margin-bottom: 10px;
  }
  .beneficios div h3 {
    font-size: 17px;
  }
  .beneficios div p {
    font-size: 15px;
  }
  .beneficios div img {
    right: 5px;
    bottom: 5px;
  }
  .accordion li label {
    font-size: 14px;
    height: 60px;
  }
  .faq .content {
    font-size: 14px;
  }
  .start-now {
    text-align: left;
  }
  .start-now div {
    display: block;
  }
  .start-now .start-input {
    width: 100%;
    margin-bottom: 30px;
  }
  .start-now .start-btn {
    width: 150px;
  }
  footer .enlaces {
    display: block;
  }
}
