*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica, sans-serif;
    text-decoration: none;
}

p{
    font-size: 22px;
    color: #5e5e5e;
}


/*----------------------------------*/
/*MAIN*/

main{
    max-width: 1200px;
    margin: auto;
}





/* AVISO DE CARTA EN OCULTO */

.aviso_carta_oculta{
    margin: 20px 12px;
    margin-bottom: 0;
    background-color: rgb(255, 94, 94);
    padding: 18px;
    border-radius: 16px;
    text-align: center;
}

.aviso_carta_oculta p{
    color: rgb(128, 21, 21);
    font-size: 18px;
}





/* RESTAURANTE */

.contenedor_titulo{
    text-align: center;
    border-radius: 22px;
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}

.contenedor_titulo img{
    width: 100%;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.titulo_restaurante{
    padding: 3% 0px;
}

.titulo_restaurante h1{
    font-size: 40px;
}

.contenedor_info_restaurante{
    border-radius: 14px;
    margin: 18px 10px;
    margin-bottom: 40px;
    padding: 14px;
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.6);
}

.contenedor_info_restaurante p{
    font-size: 18px;
}





/* NUESTRA CARTA (TITULO) */

.nuestra_carta{
    padding: 10px 0px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.6);
}

.nuestra_carta h1{
    font-size: 34px;
}




/* BOTON DELIVERY */

.contenedor_boton_delivery{
    text-align: center;
    margin: 50px 0;
}

.boton_delivery{
    text-decoration: none;
    padding: 14px 30px;
    border: none;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background, color, 300ms;
    border-radius: 8px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}





/* SECCION DEL PLATO */

.seccion_platos{
    padding: 10px 0px;
    text-align: center;
    border-radius: 8px;
    margin: 32px 10px;
    margin-bottom: 0;
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.4);
}

.seccion_platos h1{
    font-size: 34px;
}





/* CARTA */

.carta_categoria{
    padding: 10px;
    margin: 10px;
    border-radius: 16px;
}

.seccion{
    text-align: center;
}

.seccion h2{
    font-size: 30px;
}

.seccion hr{
    margin: 10px 0px;
}

.producto{
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 12px 12px;
    border-radius: 12px;
}

.contenedor_info{
    display: flex;
    flex-direction: column;
}

.descripcion{
    display: flex;
    flex-direction: column;
    max-width: 60%;
}

.descripcion h2{
    font-size: 20px;
}

.descripcion p{
    font-size: 16px;
}

.contenedor_imagen{
    padding: 2% 0%;
}

.contenedor_imagen img{
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.6);
}






/* FOOTER */

footer{
    margin-top: 40px;
    width: 100%;
    text-align: center;
    box-shadow: 0 -12px 16px rgba(0, 0, 0, 0.6);
}

.logo img{
    width: 180px;
    border-radius: 20px;
}

.contenedor_footer_simple{
    max-width: 1200px;
    margin: auto;
    padding: 40px 0px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}

.caja_copyright_simple{
    padding: 60px 18%;
    padding-top: 0px;
}

.caja_copyright_simple hr{
    margin-top: 10px;
    margin-bottom: 40px;
}

.caja_copyright_simple p{
    font-size: 16px;
}










