:root {
  --negro: #1d1d1d;
  --blanco: #ffffff;
  --gris: #666666;
  --azul: #480BB8;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 1.6rem;
  background: #f5f5f5;
  overflow-x: hidden;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.header {
  text-align: center;
}

@media (min-width: 769px) {
  .header {
    text-align: left;
  }
}

.section-hero {
  min-height: 100vh;
  text-align: center;
}

@media (min-width: 769px) {
  .section-hero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    margin-top: -5rem;
    text-align: left;
  }
}

.section-hero__img {
  width: 80vw;
  -webkit-animation-name: animRight;
  animation-name: animRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.section-hero__description {
  -webkit-animation-name: animLeft;
  animation-name: animLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@keyframes animRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes animLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}

@media (min-width: 769px) {
  .section-hero__img {
    order: 2;
    width: 90%;
    margin-top: -9rem;
  }

  .section-hero__description {
    order: 1;
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 769px) {
  .social-icons {
    justify-content: flex-start;
  }
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gris);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  font-size: 2.4rem;text-decoration: none;
  color: transparent;
  transition: all .5s ease;
}

.social-icon > i {
  color: var(--gris);
  position: absolute;
  transition: color .3s ease-in-out;
}

.social-icon:hover > i {
  color: var(--blanco);
}

.social-icon:hover {
  background-color: var(--azul);
  border: 1px solid var(--azul);
}

.title {
  margin: 3rem 0;
  font-size: 5.6rem;
  color: var(--negro);
}

.paragraph {
  font-size: 2.4rem;
  line-height: 28px;
  text-align: left;
  color: var(--gris);
  margin-bottom: 3rem;
}

.paragraph--decorate {
  color: var(--azul);
}

.button-download {
  color: var(--blanco);
  text-decoration: none;
  background-color: var(--negro);
  padding: 1rem 2rem;
  border-radius: .5rem;
  display: inline-flex;
  flex-direction: column;
  font-size: 2.4rem;
  align-items: center;
  transition: all .5s ease;
  margin: .5rem 0;
  min-width: 19rem;
}

.button-download:hover {
  transform: translateY(-.2rem);
  box-shadow: 1px 1px 3px 0 rgb(0 0 0 / 0.1), 1px 1px 2px -1px rgb(0 0 0 / 0.1);
}

.button-download__os {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.button-download--for {
  font-size: 1.2rem;
  text-align: left;
}

.button-download--icon {
  font-size: 2.6rem;
}

.section-cards {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
}

@media (min-width: 769px) {
  .section-cards {
    grid-template-columns: repeat(auto-fit,minmax(35rem,1fr));
    justify-content: space-around;
  }
}

.card {
  background: var(--blanco);
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 35rem;
  min-height: 30rem;
}

@media (min-width: 769px) {
  .card {
    width: 40rem;
    justify-content: flex-start;
  }
}

.card__icon {
  font-size: 8rem;
  color: var(--azul);
}

.card__title {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  margin: 1rem 0;
}

.card__description {
  text-align: center;
  color: var(--gris);
  font-size: 1.8rem;
}

/* Section Objetives*/
.section-objetives {
  margin-top: 2rem;
  min-height: 100vh;
}

@media (min-width: 768px) {
  .section-objetives {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    align-items: center;
  }
}

.section-objetives__img {
  width: 100%;
}

@media (min-width: 768px) {
  .section-objetives__content-img {
    order: 2;
    display: flex;
    justify-content: flex-end;
  }
  .section-objetives__img {
    width: 70%;
  }
}

.section-objetives__content {
  display: grid;
  place-content: center;
  gap: 5rem;
  margin: 2rem 0;
}

@media (min-width:768px) {
  .section-objetives__content {
    place-content: flex-start;
  }
}

.section-objetives-card {
  width: 100%;
  display: grid;
}

@media (min-width:768px) {
  .section-objetives-card {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.section-objetives-icon {
  width: 7rem;
  height: 7rem;
  border: 1px solid var(--azul);
  border-radius: 100%;
  display: flex!important;
  align-items: center!important;
  justify-content: center!important;
  font-size: 4rem;
  color: var(--azul);
  margin: 0 auto;
}

@media (min-width:768px) {

  .card_contenedor {
    max-width: 38rem;
  }

  .section-objetives-icon {
    padding: 1rem 1.4rem;
  }

  .card__title--objetives,
  .card__description--objetives {
    text-align: left;
  }
}

/*Aqui Podras*/
.aquiPodras {
  display: grid;
  margin: 5rem 0;
}

@media (min-width:768px) {
  .aquiPodras {
    grid-template-columns: repeat(2, 1fr);
    gap: 7rem;
    justify-content: space-between;
  }
}

.aquiPodras__img {
  width: 100%;
}

.aquiPodras__title {
  font-size: 4rem;
  text-align: center;
  color: var(--negro);
  margin: 2rem 0;
  position: relative;
}

.aquiPodras__title::after {
  content: '';
  background-image: url("../dot.webp");
  width: 200px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 6rem;
  right: 0;
  margin: 0 auto;
}

.aquiPodras__title--blue {
  color: var(--azul);
}

.aquiPodras__list {
  list-style-image: url("../list-style.webp");
  padding: 2rem;
}

.aquiPodras__item {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

@media (min-width: 768px) {
  .aquiPodras__content {
    display: grid;
    place-content: center;
  }
}

/*Social Media*/
.social-media__title {
  font-size: 4rem;
  font-weight: 700;
  margin: 7rem 0 4rem 0;
  text-align: center;
  color: var(--negro);
}

.social-media__title--blue {
  color: var(--azul);
}

.content-social-media {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer {
  width: 100%;
  height: 30rem;
  background-image: url('../footer-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #62618c;
  margin-top: 5rem;
}

#img1-anim,
#img2-anim {
  opacity: 0;
  transition: all 1s ease-in-out;
}

#img1-anim {
  transform: translateX(60px);
}

#img2-anim {
  transform: translateX(-60px);
}

#img1-anim.visible,
#img2-anim.visible {
  opacity: 1;
}

#img1-anim.visible,
#img2-anim.visible {
  transform: translateX(0px);
}
