@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box ;
    font-family: "Roboto", sans-serif;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 10%;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    z-index: 100;
}
.menu_icons{
    width: 35px;
    cursor: pointer;
}
.logo{
    width: 100px;
    margin-left: -10%;
}
button img{
    width: 20px;
    margin-left: 10px;
}
.menu {
    display: flex;
    align-items: center;    
}
.menu ul {
    margin-left: 25px;
    display: flex;
    list-style: none;
}
.menu ul a {
    margin-left: 10px;
    text-transform: capitalize;
    font-size: 13px;
    color: #000;
    text-decoration: 0;
    position: relative;
}
.menu ul a::after {
    position: absolute;
    left: 0;
    bottom: -5px;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #f7a800;
    transition: 0.1s ease-out;
}
.menu ul a:hover::after {
    width: 100%;
}
.header-end {
    display: flex;
    align-items: center;
}
.header-end i {
    margin-right: 20px;
}
button {
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 0;
    padding: 8px 15px;
    background-color: #bb2337;
    color: #fff;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 1;
    transition: 0.2s ease-out;
}
button span {
    font-family: 'anton', sans-serif;
    font-size: 15px;
    width: 100%;
    text-align: center;
}
button:hover{
    transform: scale(1.06);
}
.fa-crown{
    position: relative;
    padding: 20px;
}
.login {
    position: absolute;
    right: -22px;
    top: 60px;
    width: 270px;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    border-radius: 6px;
}
.login button {
    width: 100%;
    background-color: #f7a800;
}
hr {
    border: 0;
    margin: 30px 0;
    background-color: #999;
    width: 100%;
    height: 1px;
}
.login p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 25px;
}
.login button:last-child {
    background-color: transparent;
    color: #f7a800;
    border: 1px solid #f7a800;
}

.login ::after {
    position: absolute;
    right: 40px;
    top: -8px;
    content: "";
    height: 25px;
    width: 25px;
    z-index: -3;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    transform: rotate(50deg);
}
.login ::before {
    position: absolute;
    right: 40px;
    top: -8px;
    content: "";
    height: 25px;
    width: 25px;
    background-color: #fff;
    transform: rotate(50deg);

}
.fa-crown:hover .login {
    display: block;
}
/* home */
.home {
    margin-top: 80px;
    background: url('imagess/img1.webp');
    background-position: center;
    background-size: cover;
    width: 100%;
    height: calc(100vh - 200px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}
/* foods */

.foods{
    margin: 50px 0;
    padding: 0 10%;
}
h1 {
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'anton', sans-serif;
}
.foods p {
    text-align: center;
    margin: 15px;
    margin-bottom: 25px;
}
.foods-list {
    display: flex;
    justify-content: space-between;
}
.foods-list img {
    box-shadow: 0 0 9px rgba(0,0,0,0.1);
    width: 350px;
    border-radius: 10px;
    margin-bottom: 20px;
}
h3 {
    text-transform: uppercase;
    font-size: 20px;
}
.foods-list .box {
    transition: 0.5s ease-out;
    cursor: pointer;
}
.foods-list .box:hover {
    transform: scale(1.05);
}

/* fidelity prog */
.fidelity_prog {
    margin: 35px 0;
    height: 350px;
    width: 100%;
    background: url(imagess/img8.png);
    background-position: center;
    background-size: cover;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.fidelity_prog div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.fidelity_prog button{
    margin-top: 25px;
    background-color: #f7a800;
}
.fidelity_prog .div1 {
    width: 300px;
}
.fidelity_prog .div2 {
    width: 350px;
    margin-top: 25px;
}
.fidelity_prog .div3 {
    width: 410px;
}
.fidelity_prog img {
    width: 100%;
}

/* little food */
.little-food{
    padding: 0 10%;
}
.little-food img{
    width: 220px;
}
.little-food_box {
    margin: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 280px;
}

.little-food_box .box {
    background-color: #fbf5ee;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    border-radius: 18px;
    padding: 20px;
    transition: 0.25s;
    height: 100%;
}
.little-food_box .box:hover{
    transform: scale(0.9);
}

/* footer */
footer{
    background-color: #000;
    color: #fff;
    margin-top: 20px;
    padding: 25px 10%;
}
footer p {
    font-size: 15px;
}
.icones_social{
    margin: 20px 0;
}
.icones_social i {
    margin-right: 20px;
    font-size: 20px;
}
footer img {
    margin-top: 20px;
    border: 1px solid #fff;
    height: 50px;
    cursor: pointer;
}

footer img:last-child {
    margin-left: 10px;
}

footer .div2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .div2 h3 {
    margin-bottom: 10px;
}

footer .div2 ul {
    display: flex;
    flex-direction: column;
}
footer .div2 ul a {
    font-size: 13px;
    color: #fff;
    text-decoration: 0;
    margin-bottom: 5px;
    transition: 0.5s;
}
footer .div2 ul a:hover {
    letter-spacing: 0.5px;
}
footer .div3 {
    text-align: center;
}
footer .div3 p:first-child {
    font-size: 13px;
}

footer .div3 p:last-child{
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}