/* CSS Document */
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: #000;
  text-align: center;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrapper {
  display: block;
  overflow: hidden;
  width: 1020px;
  height: 200px;
  background-color: #eaebeb;
}

.destacados {
  display: block;
  background: url("images/destacados.png") no-repeat 50% 50%;
  width: 44px;
  height: 200px;
  position: relative;
  float: left;
  padding-left: 1px;
  text-indent: -9999px;
  background-color: #ff3f89;
}

.caja {
  background: #000;
  width: 234px;
  height: 200px;
  float: left;
  display: block;
  overflow: hidden;
  margin-right: 13px;
}

.caja:last-of-type {
  margin-right: 0;
}

.caja img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
}

.caja:hover img {
  opacity: .7;
}

.caja .recuadro {
  position: absolute;
  float: left;
  display: block;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 37px;
  bottom: 0;
  text-align: center;
}

.caja .etiqueta {
  color: #fff;
  font-size: 16px;
  padding: 7px 0 0;
  display: block;
  text-transform: uppercase;
}

.caja .nombre_escena {
  font-size: 13px;
  padding: 0;
  display: block;
  text-align: center;
  position: relative;
}

.nomargin {
  margin: 0;
}

/* --------------------------------------- */
