﻿#MenusMiniInicioSelena {
    clear: both;
    position: relative;
    width: 100%;
    /* margin-bottom: 10px; */
    padding-bottom: 30px;
    box-sizing: border-box;
}

.ArticuloMenuMiniInicioSelena {
    position: relative;
    width: 85%;
    max-width: 960px;
}

.grid {
	position: relative;
	overflow: auto;
	clear: both;
	margin: 0 auto;
	max-width: 1000px;
	list-style: none;
	text-align: center;
}

.CapaOscurecidaSelena
{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(248,44,91,0.1);
    z-index: 1;
}

/* Common style */
.grid figure {
	position: relative;
    float: left;
    overflow: hidden;
    margin: 10px 1%;
    font-family: Montserrat;
    font-weight: 700;
    /* min-width: 320px; */
    /* max-width: 480px; */
    /* max-height: 360px; */
    width: 23%;
    height: auto;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}

.grid figure img {
	position: relative;
	display: block;
	/*min-height: 100%;*/
	max-width: 100%;
	opacity: 0.8;
}

.grid figure figcaption {
	padding: 2em 10px;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    z-index: 2;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
}

.grid figure h2 span {
	font-weight: 800;
}

.grid figure h2,
.grid figure p {
	margin: 0;
	font-size: 20px;
}

.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
	text-align: center;
}

/* Individual effects */

/*-----------------*/
/***** Selena *****/
/*-----------------*/

figure.effect-selena {
	background: #fff;
}

figure.effect-selena img {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

figure.effect-selena:hover img {
	-webkit-transform: scale3d(0.95,0.95,1);
	transform: scale3d(0.95,0.95,1);
}

figure.effect-selena:hover .CapaOscurecidaSelena {
	background: rgba(255,255,255,0.3);
}

figure.effect-selena h2 {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

figure.effect-selena p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: perspective(1000px) rotate3d(1,0,0,90deg);
	transform: perspective(1000px) rotate3d(1,0,0,90deg);
	-webkit-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
}

figure.effect-selena:hover h2 {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	color: #333;
}

figure.effect-selena:hover p {
	opacity: 1;
	-webkit-transform: perspective(1000px) rotate3d(1,0,0,0);
	transform: perspective(1000px) rotate3d(1,0,0,0);
}

/* Media queries */
@media screen and (max-width: 50em) {
	.content {
		padding: 0 10px;
		text-align: center;
	}
	.grid figure {
		display: inline-block;
		float: none;
		margin: 10px auto;
		width: 100%;
	}
}

/* Waypoints */

#MenuSelenaItem1, #MenuSelenaItem2, #MenuSelenaItem3, #MenuSelenaItem4,
#MenuSelenaItem5, #MenuSelenaItem6, #MenuSelenaItem7, #MenuSelenaItem8
{
    opacity: 0;
}


.escalarMenuSelena
{
    animation-name: escalarMenuSelenaAnimacion;
    animation-duration: 1s;
    opacity: 1 !important;
}
	
@keyframes escalarMenuSelenaAnimacion
{
    0% 
    {
		opacity: 0;
	}
	100% 
	{
	    opacity: 1;
	}
}