*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
}

@font-face{
    font-family: 'Roboto-Regular';
    src: url(../fonts/Roboto-Regular.ttf);
}

body{
    font-family: 'Roboto-Regular';
}
ul{
    list-style-type: none;
}

a{
    text-decoration: none;
}

/*Header*/

.menu-idioma{
    background-color: #222222;
    color: #f3f3f3;
    height: 2.5rem;
    font-size: 1.2rem;
    align-items: center; /*alineación vertical*/
    padding: 0px 5rem;
    display: flex; /*Para alinear el P con Ul*/
    justify-content: space-between;
}

.menu-idioma ul{
    display: flex; /*Para alinear los li del ul*/
}

.menu-idioma ul li{ /*idioma y moneda*/
    padding: 2rem;
}

.menu-idioma ul li a{
    color: #ffffff;
}

.menu-idioma ul li a::after{
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 1.2rem;
    color: #ffffff;
}

.menu-navegacion{
    background-color: #f0a83e;
    padding: 2.5rem 5rem;
    display: flex; /*alinea logo y links al mismo renglón*/
    align-items: center; /*centrado vertical*/
    justify-content: space-between; /*separa logo y links*/
    font-size: 2rem;
    height: 15vh;
}

.fa-bars{ /*Hamburguesa*/
    display: none;
}

h1, h6{ /*FrontCat&Dog*/
    font-size: 2.4rem;
    font-weight: 700;
}

h1 span{ /*"Front"*/
    color: #3C2313;
}

.links-principal, .logo{
    display: flex; /*alinea horizontal logo con imgs y links ppales*/
    color: #ffffff;
}

.links-principal li a{
    color: #ffffff;
    padding: .5rem;
}

#ocultar:hover{
    background-color: #82d8bb81;
    border-radius: 15px;
    padding: .3rem .3rem .3rem 0rem;
}

.links-principal li:nth-child(5)::before{
    content: "";
}

.links-principal li::before{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f1b0";
    color: #f3f3f3;
    margin-left: .5rem;
}


/*Main*/

.banner{
    background-image: url('../img/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.titulos{
    display:inline-block;
    justify-content: center;
}

.bienvenida{
    background-color: #ffffff;
    color: #3C2313;
    padding: 1rem;
    border-radius: 5px;
    font-size: 3.6rem;
    font-weight: 550;
    width: 44rem;
    height: 6.5rem;
    margin: 1rem;
}

.descuento{ /*"Comederos en descuento"*/
    color: #3C2313;
    font-size: 2rem;
    text-align: center;
    margin: 1rem;
}

.boton{ /*Comederos*/
    background-color: #f0a83e;
    color: #ffffff;
    padding: 2rem 3rem;
    border-radius: 5px;
    font-size: 2rem;
    width: 180px;
    height: 65px;
    margin: 1rem auto;
}

.boton a{
    color: #ffffff;
}

.boton:hover{
    background-color:rgba(255, 255, 255, 0.4);
    color:#3c1313;
}

.boton a:hover{
    color:#3c1313;
}

.destacados{
    text-align: center;
}

#patita-central{
    color: #F0A83E;
    font-size: 8rem;
    margin: 2rem;
}

.productos{
    color: #3C2313;
    font-size: 4.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.categorias a{
    font-size: 2rem;
    color: #666666;
    margin: 1rem;
}

.categorias a:hover{
    color: #f0a83e;
}

.tarjetas{
    color: #3C2313;
    display: flex;
    justify-content:center;
}

.card1, .card2, .card3{
    margin: 5rem 1.2rem;
    padding-top: 270px;
    font-size: 1.7rem;
    background-repeat: no-repeat;
    background-size: cover;
    width: 320px;
    height: 350px;
}

.card1:hover, .card2:hover, .card3:hover{
    border: 1px solid #3C2313;
}

.card1{
    background-image: url(../img/churrasquito.svg);
}

.card2{
    background-image: url(../img/comedero.svg);
}

.card3{
    background-image: url(../img/Huesito.svg);
}

b{
    color: #F0A83E;
}

/* Formulario*/

fieldset{
    border: 0px;
    max-width: 40rem;
    margin: auto;
}

.formulario h3{
    color:#3C2313;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    margin: 2rem;
}

.inputs{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inputs input{
    border-radius: 20px;
    border: 1px solid #3c1313;
    background-color: #3C2313;
    padding: 1.5rem 2.5rem;
    width: 90%;
    margin: .6rem;
    color: #ffffff;
}

.botones{
    display: flex;
    justify-content: center;
    padding: 4rem 0rem 10rem 0rem;
}

.botones input{
    color:#ffffff;
    font-size: 1.7rem;
    border-radius: 20px;
    border: none;
    padding: 1.3rem 7rem;
    width: 10rem;
    margin: .5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.botones input[type="reset"]{
    background-color: #8A8787;
}

.botones input[type="reset"]:hover{
    background-color: #82d8bbda;
}

.botones input[type="submit"]{
    background-color: #F0A83E;
}

.botones input[type="submit"]:hover{
    background-color: #82d8bbda;
}

input[type="submit"], input[type="reset"]{
    cursor: pointer;
}

/*Footer*/

footer{
    color: #ffffff;
    font-size: 2rem;
}

.naranja{
    background-color: #F0A83E;
    display: flex;
    justify-content: space-between;
}

.suscribete{
    background-color: #F0A83E;
    height: 14vh;
    display: flex;
}

.suscribete>h3{
    display: flex;
    align-items: center;
}

.botones-footer{
    display: flex;
    margin: 2rem 0rem;
    padding-right: 6rem;
}

.botones-footer input{
    border-radius: 20px;
    border: 0px;
    padding: 1.5rem;
}

.botones-footer input[type="correo"]{
    width: 30rem;
    margin-right: 1rem;
}

.botones-footer input[type="submit"]{
    background-color: #3C2313;
    color: #ffffff;
}

.botones-footer input[type="submit"]:hover{
    background-color: #82d8bbda;
}


.fa-envelope{ /*Icono Sobre*/
    margin: 0px 10px;
    font-size: 4rem;
}

.contact{
    height: 35rem;
    width: 75vw;
    padding: 2rem;
}

.marroncito{
    display: flex;
    background-color: #3C2313;
}

.footer-logo{
    width: 25vw;
    padding: 2.5rem;
    display: flex;
    align-items: center;
}

h6 span{
    color: #f0a83e;
}

/*Iconos*/

.fa-map-marked-alt, .fa-phone-alt, .contact .fa-envelope{
    background-color: #8A8787;
    border: 5px solid #786960;
    border-radius: 50%;
    padding: 1rem;
    margin: 2rem 1rem 0rem 7rem;
    font-size: 4rem;
}

.contact h4{
    font-size: 1.5rem;
    color: #8A8787;
    text-indent: 16rem;
}

.copy{
    background-color: #222222;
    height: 20px;
    font-size: 1.4rem;
    text-align: center;
}

.copy a{
    color:#ffffff;
}

/*Responsive*/

@media screen and (max-width: 768px) { /*Vista tablet*/
    
    /*navbar*/
    .menu-idioma, #ocultar{
        display: none;
    }

    .fa-bars{
        display: unset;
    }

    /*main*/
    .descuento{
        color: #f3f3f3;
    }
    
    .tarjetas{
        flex-direction: column;
        align-items: center;
    }

    /*Formulario*/
    .botones input{
        width: 40vw;
    }

    /*footer*/

    .naranja{
        flex-direction: column;
    }

    .botones-footer input[type="correo"]{
        margin-left: 3rem;
    }

    .marroncito{
        flex-direction: column-reverse;
        padding: 4rem;
    }

    .footer-logo{
        margin-left: 10rem;
    }

    .contact{
        font-size: 2rem;
    }

    .fa-map-marked-alt, .fa-phone-alt, .contact .fa-envelope{
        padding: .8rem;
        margin: 1rem;
    }

    .contact h4{
        text-indent: 9rem;
    }
}