/*
azul    #00add9
laranja #eeb413
*/

.img-book {
  box-shadow: var(--defaultShadow);
  border-radius: 5px;
  width: 100%;
  margin-bottom: 15px;
}

.novo {
  position: relative;
  top: 25px;
  left: -30px;
  height: 50px;
  z-index: 1000;
}

/*BOOKS*/
.book-card {
  border-radius: 10px;
  box-shadow: var(--defaultShadow);
  margin-bottom: 20px;
  overflow: hidden;
  background: white;
  padding: 10px;
}

.book-card:hover {
  cursor: pointer;
  transform: scale(1.02);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.price {
  font-weight: bold;
  color: #28a745;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.old-price {
  text-decoration: line-through;
  color: #6c757d;
  font-size: 0.9em;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.btn-compra {
  background-color: #28a745;
  color: white;
  border-radius: 20px;
  padding: 5px 10px;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

.section-title {
  margin: 30px 0 20px;
  font-weight: bold;
}

.author-phd {
  font-size: 0.8em;
  color: #6c757d;
}

.div-app {
  border-radius: 10px;
}

.img-app {
  border-radius: 10px;
  width: 100%;
  box-shadow: var(--defaultShadow);
}

.img-material {
  border-radius: 10px;
  box-shadow: var(--defaultShadow);
  height: 100%;
}

.div-text {
  color: black;
  font-size: 1.25rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-align: justify;
}

.img-autor {
  border-radius: 10px;
  max-height: 360px;
}

.img-tirinhas {
  width: 100%;
  border-radius: 10px;
}

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

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

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

/*BOOKS*/

.session-lote {
  background: var(--bgColor4);
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 100px;
}

.color-white {
  color: white;
}

.app-session {
  background-image: url('/libs/images/app/background.jpg');
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 50px;
}

.img-screen {
  max-height: 500px;
}

.bg-green {
  background: #92c02a;
  padding-bottom: 50px;
  margin-bottom: 100px;
}

.video-material {
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

.book-description {
  color: gray;
  text-align: center;
  font-size: 0.9em;
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 10px;
}

.frete-gratis {
  background: black;
  color: wheat;
  position: absolute;
  top: 5px;
  right: 14px;
  width: 100px;
  font-size: 16px;
  border-radius: 5px;
  z-index: 1;
}

/* MOBILE */
@media only screen and (max-width: 800px) {
  .video-material {
    position: relative;
    height: 500px;
  }

  .novo {
    left: -10px !important;
  }

  .col {
    margin-bottom: 30px !important;
  }

  .em-breve {
    top: -22px !important;
  }

  .img-loja {
    margin-top: 50px;
  }

  .img-autor {
    width: auto;
    height: 250px;
  }

  .div-text {
    margin-top: 15px;
    text-align: center;
  }

  .sm-hide {
    display: none;
  }

  .align-left, .align-right {
    text-align: center;
  }

  .col-6 {
    padding-right: 10px;
    padding-left: 10px;
  }
}

/* WEB */
@media only screen and (min-width: 801px) {}