/*Estilos Portada*/

    /*Textos*/

    .titulo,.subtitulo{
        font-family: 'Lobster',serif;
        color: #F2B705;
        text-shadow: 0 0 2px #000;
        margin: 5px auto;
    }

    .texto{
        font-family: 'Roboto',sans-serif;
        font-size: 15px;
        color: #FFF;
        text-shadow: 0 0 2px #000;
        margin: 10px 0;
        text-align: justify;
        line-height: 25px;
    }

    /*Fin Textos*/

    /*Botones*/

    .boton{
        font-family: 'Roboto',sans-serif;
        color: #F2B705;
        padding: 10px 15px;
        margin: 15px auto;
        cursor: pointer;
        display: flex;
    }

    .tr{
        text-shadow: 0 0 2px #000;
        box-shadow: 0 0 2px #000;
        border-radius: 25px;
        border: 2px solid #F2B705;
    }

    .sd{
        color: #FFF;
        text-shadow: none;
        background-color: #F2B705;
        border-radius: 25px;
        justify-content: center;
    }

    .tr:hover{
        color: #FFF;
        text-shadow: none;
        background-color: #F2B705;
    }

    /*Fin Botones*/

    /*Catálogo*/

    #catalogo{
        justify-content: space-between;
    }

    .producto{
        margin: 15px 0;
    }

    .producto .imagen{
        height: 125px;
        border: 1px solid #F2B705;
        border-radius: 5px;
    }

    .producto p{
        font-family: 'Roboto',sans-serif;
        margin: 10px 0;
        text-align: center;
        text-transform: uppercase;
    }

    .producto .boton{
        width: 65%;
    }

    /*Fin Catálogo*/

#portada{
    width: 100%;
    height: 100vh;
    background: url(../imagenes/fondo.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}

#portada::before{
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(0,0,0,.5);
    position: absolute;
}

#portada>.centrado>.contenedor{
    flex-flow: column;
    position: relative;
}

#logo{
    text-align: center;
}

#logo img{
    width: 75%;
}

#rss{
    width: 40%;
    margin: 15px auto;
    display: flex;
    justify-content: space-between;
}

#rss i{
    font-size: 30px;
    color: #F2B705;
    text-shadow: 0 0 2px #000;
}

#piePagina{
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #FFF;
    padding: 20px 0;
    background-color: #594022;
}

#piePagina>.centrado>.contenedor{
    justify-content: center;
}

/*Fin Estilos Portada*/

/*Media Queries*/

@media only screen and (min-width: 768px){
    
    #logo img{
        width: 80%;
    }
    
    #rss{
        width: 25%;
    }
    
    /*Catálogo*/

    .producto .imagen{
        height: 150px;
    }

    /*Fin Catálogo*/
    
}

@media only screen and (min-width: 1020px){
    
    #logo img{
        width: 85%;
    }
    
    #rss{
        width: 20%;
    }
    
    /*Catálogo*/

    .producto .imagen{
        height: 150px;
    }

    /*Fin Catálogo*/
    
}

@media only screen and (min-width: 1400px){
    
    #logo img{
        width: 100%;
    }
    
    #rss{
        width: 20%;
    }
    
    /*Catálogo*/

    .producto .imagen{
        height: 230px;
    }

    /*Fin Catálogo*/
    
}

/*Fin Media Queries*/