/*Estilos para las fotos*/
.bloques {
  list-style: none;
  width: 100%;
  /*margin: auto;*/
  margin-bottom: 20px;
  text-align: center;
}

.cara {
  width: 250px;
  height: 250px;
  /*margin: 30px;*/
  margin-bottom: 50px;
  display: inline-block;
  vertical-align: top;
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  -ms-perspective: 1000px;
  perspective: 1000px;
  /*opacity: .75;*/
}

.cara:hover {
  opacity: 1;
}

.box {
  width: 250px;
  height: 250px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(-100px);
  -moz-transform: translateZ(-100px);
  -ms-transform: translateZ(-100px);
  transform: translateZ(-100px);
  -webkit-transition: -webkit-transform 500ms;
  -moz-transition: -moz-transform 500ms;
  -ms-transition: -moz-transform 500ms;
  transition: transform 500ms;
}

.box:hover {
  -webkit-transform: rotateY(-78deg) translateZ(20px);
  -moz-transform: rotateY(-78deg) translateZ(20px);
  -ms-transform: rotateY(-78deg) translateZ(20px);
  transform: rotateY(-78deg) translateZ(20px);
}

.box .poster,
.box .info {
  position: absolute;
  width: 250px;
  height: 250px;
  background-color: #fff;
  text-align: left;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

.box .info {
  height: 300px;
  font-family: "Roboto";
}
.box .info p {
  font-family: "Roboto";
}
.box .info a {
  font-size: 12px;
}
.box .info i {
  font-size: 12px;
  margin-right: 2%;
}
.box .info i:hover {
  color: gray;
}

.box .poster {
  -webkit-transform: translateZ(125px);
  -moz-transform: translateZ(125px);
  -ms-transform: translateZ(125px);
  transform: translateZ(125px);
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 .1em 1em black;
  -webkit-box-shadow: inset 0 .1em 1em black;
  -moz-box-shadow: inset 0 .1em 1em black;
  -o-box-shadow: inset 0 .1em 1em black;
}

.box .info {
  -webkit-transform: rotateY(90deg) translateZ(125px);
  -moz-transform: rotateY(90deg) translateZ(125px);
  -ms-transform: rotateY(90deg) translateZ(125px);
  transform: rotateY(90deg) translateZ(125px);
  background: rgba(0, 0, 0, 1);
/*  background: #a6db17;*/
  font-size: 0.75em;
}

.box .nombre {
  position: absolute;
  top: 250px;
  width: 100%;
  height: 50px;
  background: #327A92;
  color: white;
  font-family: "Roboto";
}
.box .nombre h3 {
  color: white;
  text-align: center;
  font-size: 1.7rem;
}
.box .nombre p {
  color: white;
  text-align: center;
  margin-top: -10px;
  font-size: 14px;
}

/*************************************
Texto en cara adyacente
**************************************/
.info header {
  color: #fff;
  padding: 3px 6px;
  font-weight: bold;
  height: 235px;
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: 1%;
}

.info header h1 {
  margin: 0 0 2px;
  font-size: 2em;
  color: #fff;
}

.info .subtitulo {
  font-style: italic;
  font-size: 14px;
}

.info p {
  padding: 1.2em 0;
  margin: 2px 0 0;
  font-weight: normal;
  font-family: arial;
  font-size: 14px;
}

/*************************************
Imagenes en cara principal
**************************************/
.personaUno {
  background-image: url(../images/nosotros_somos.png);
}

.personaDos {
  background-image: url(../images/nosotros_mision.png);
}

.personaTres {
  background-image: url(../images/nosotros_vision.png);
}
/*Fin fotos*/