* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/*reset*/

body {
  font-family: 'Montserrat', Helvetica, sans-serif;
}

.box img,
.box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-video-amazon video {
  background: #10161D;
  object-fit: contain !important;
}

.box-imagem-pesquisa img {
  background: #fff;
  object-fit: contain !important;
}

.dnone {
  display: none !important;
}

.fadeout {
   animation: fadeout ease-out 0.5s; /* Padrão */
   display: none !important;
}

@keyframes fadeout {
  from { opacity: 1; }
  to { opacity: 0; } /* Padrão */
}


@media(max-width: 768px) {
	.box video {
	  object-fit: contain;
	}
}

h3 {
  color: #999;
}

h3::before {
  content: "";
    /* padding: 5px 3px; */
    margin: 0 10px 0 0;
    background: #999;
    /* display: flex; */
    width: 6px;
    height: 35px;}

/*topo*/

header {
  width: 100%;
  padding: 30px 0;
}

.logo {
    width: 350px
  }
  
@media(max-width: 768px) {
  .logo {
    width: 260px
  }
}

.content {
  padding: 5px;
}

.content .box {
  width: calc((100% / 2) - 10px);
  margin: 5px;
  /*background-color: rgba(0, 0, 0, 0.5);*/
  height: 550px;
  overflow: hidden;
  position: relative;
}

.content .box-full {
  width: 100%;
}

.content .box .texto {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.9);
  background: 0.2s ease, color 0.2s ease;
  z-index: 200;
  transition: 0.8s;
}

.content .box:hover .texto {
  display: flex !important;
}

.tags {
  margin-top: 20px;
}

.tags small {
  font-size: 12px;
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  margin: 0 5px 0 0;
  line-height: normal;
}

.tags small:nth-child(1) {
  background-color: orangered;
}

.tags small:nth-child(2) {
  background-color: palevioletred;
}

.tags small:nth-child(3) {
  background-color: royalblue;
}


.tags small:nth-child(4) {
  background-color: darkred;
}

@media (max-width: 1024px) {
  .content .box {
    height: 400px;
  }

  .content-auto .box {
    height: auto
  }
}

@media (max-width: 768px) {
  .content .box {
    height: 330px;
  }

  .content-auto .box {
    height: auto
  }
}

@media (max-width: 767px) {
  .content .box {
    width: 100%;
  }
}

footer {
  padding: 50px 0;
  text-align: center;
}

footer a {
  display: block;
  margin-bottom: 15px;
}

/*detalhes*/

.content .box-maior {
  width:100%;
  height: 350px;
}

.details-text {
  margin: 40px auto;
  padding: 0 40px;
  color: #484848;
}

.details-text .tags { 
  margin: 5px 0 30px;
}

.details-text .tags small {
  padding: 3px 8px;
}


.details-text p {
  margin-bottom: 1.3rem;
}

/*loader*/
.loader {
  width: 100%;
  height: 100vh;
  background-color: #000;
}

.dflex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-loader {
  object-fit: contain;
  animation: loader infinite 2s linear;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}