/*! GENERALES --------------------------------------------------------------------- */
.apartado {
    height: 100%;
    width: 100%;
    margin: 0;
    text-align: center;
}
.negro {
    background-color: black;
    color: red;
}
.blanco {
    background-color: white;
}
.rojo {
    background: url(/landing-okasan/images/fondorojo.jpg) no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/*! APARTADOS --------------------------------------------------------------------- */

#portada {
    display: table;
    text-align: center;
    background: url("/landing-okasan/images/fondo.png") no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100% ;
    padding-bottom: 40px;
    text-align: center;
}
#portada img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.historia {
    display: table;
    height: 680px;
}
.historia p{
    color: white;
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
    font-family: 'Roboto Slab', serif;
}
.platos {
    padding-bottom: 40px;
    padding-top: 40px;
}
.platos p {
    color: white;
    text-align: center;
    padding-left: 20%;
    padding-right: 20%;
    font-family: 'Roboto Slab', serif;
}
.platos img {
    margin-top: -5%;
}
.corazon p {
    color: darkgray;
}
.corazon a {
    color: black;
}
.corazon a:hover {
    color: darkgrey;
}
.corazon a:hover img {
    opacity: 0.5;
}
.corazon img {
    margin-top: 40px;
}

/*! ACCIONES ------------------------------------------------------------------------- */

.centradovertical /*! Su padre tiene que ser display: "table" y un height definido (px) */{
    display: table-cell;
    vertical-align: middle;
}

/*! MEDIAKUERIX --------------------------------------------------------------------- */

/* Larger than mobile */
@media (min-width: 1px) {
   .separa {
        border-right: 0px solid darkgray;
    }
    .escritorio {
        display: none;
    }
     .movil {
        display: block;
    }
}

/* Larger than desktop */
@media (min-width: 550px) {
    .separa {
        border-right: 2px solid darkgray;
    }
     .escritorio {
        display: inline-block;
    }
     .movil {
        display: none;
    }
}

/* Larger than xxx */
@media (min-width: 750px) {
    .historia p{
        padding-left: 30%;
        padding-right: 30%;
    }
}

/* Larger than xxx */
@media (min-width: 1000px) {
    .historia p{
        padding-left: 30%;
        padding-right: 30%;
    }
}