@import url('https://fonts.googleapis.com/css?family=Nunito:400,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:400,600,700&display=swap');

html {
  box-sizing: border-box;
  font-size: 62.5%; /* Default value for pixels 10px = 1rem */
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
}

p {
  line-height: 1.4;
}

body {
  font-size: 1.4rem;
}

.container {
  width: 90%;
  max-width: 120rem;
  margin: 0 auto;
}

.white {
  color: #f2f8f9;
}

.heading-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  grid-area: heading-info;
}

.heading-info__text {
  font-size: 1.8rem;
  font-weight: 600;
  max-width: 50rem;
  text-align: center;
  margin-top: 0;
  line-height: 1.3;
}

/**
  * Estilos: Footer
  */
  .footer {
    padding: 1rem 0;
    background: #464241;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  
  .right-side {
    margin-left: 5rem;
  }
  
  .info__title {
    margin-bottom: 0;
  }
  
  .info__text {
    margin-top: 0.5rem;
  }
  
  .web-section__name {
    margin-bottom: 0.5rem;
  }
  
  .web-section__list {
    list-style-type: none;
    margin-top: 0;
    padding-left: 0.5rem;
    border-left: 0.3rem solid #707070;
    line-height: 1.5;
  }
  
  .web-section__link {
    text-decoration: none;
    color: #fff;
  }

  @media screen and (min-width: 320px) and (max-width: 1024px) {
    section {
      margin-top: 5rem;
    }
  
    .main-header {
      display: block;
      height: 100%;
    }
  
    .heading-widgets {
      flex-direction: column;
    }
  
    .heading-info__text {
      max-width: 35rem;
    }
  
    .features {
      display: flex;
      flex-direction: column;
    }
  
    .features-info:not(:last-child) {
      margin-bottom: 4rem;
    }
  
    .logos {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    .footer {
      flex-direction: column;
      padding-left: 2rem;
    }
  
    .right-side {
      margin-left: 0;
    }
  }