* { box-sizing: border-box; 
  font-family: 'Segoe UI', 'Arial';
  color: #3E3E3E;
}
body {
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

header {
  background-color: #e20101;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
}

header .box-logo img {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

header .playstore-logo {height: 35px;}

.header-box {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.box-logo {
  width: 100%;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
}


/* CONTEUDO */
main { width: 100%; margin-top: 50px;}
h3 {
  font: Bold 26px/35px Segoe UI;
  margin: 0;
}

p {
  font: Semibold 16px/21px Segoe UI;
}

span {
  color:#EA1D2C;
}

.app-container{
  width: 100%;
}
.app-container-odd {
  background-color: #F5F3F4;
}

.app-presentation, .app-explication{
  max-width: 600px;
  padding: 25px 15px;
  margin: 0 auto;
}

.app-presentation .logo {
  width: 150px;
  height: 150px;
}

.app-presentation .image-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.example-img {
  height: 130px;
  object-fit: none;
}

.app-table {
  display: flex;
  align-items: flex-end;
  margin-top: 50px;
}
  .app-table p { margin-bottom: 0;}

.app-table-secondary{
  display: flex;
  align-items: flex-end;
}

.app-col {
  width: 50%;
}

.images-list { margin: 50px 0; }
.images-list-second { margin: 50px 0 0;}

.images-list, .images-list-second {
  display: flex;
  justify-content: space-between;
}


  .image-item img {
    height: 100px;
    width: 100px;
    object-fit: contain;
  }
    .image-item p { margin: 0}

  .double-image {
    height: 100px !important;
    width: 150px !important;
  }

.playstore-link {
  color:#EA1D2C;
}

/* inline */
.line-through{
  text-decoration: line-through;
}


@media only screen and (max-width: 500px) {
  .example-img {
    height: 66px;
    object-fit: contain;
  }

  .image-item img {
    width: 60px;
    height: 60px;
  }

  .double-image {
    height: 120px !important;
    width: 90px !important;
  }
}