@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hammersmith+One&display=swap');


/* Utilizando Iconify em css: https://iconify.design/docs/usage/css/ */

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

}

:root {
    --color--primary: #EB96C1;
    --color--secondary: #562135;
    --color--accent: #ff788a;
    --color--background: #FFEFFE;
    --color--light: #ccc;
    --color--text: #000000;
    --gradient: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .45));
    --transition: .5s;
}

/* inicio Onload */
.hidden {
    display: none;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

@keyframes efeito {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* final Onload */
/* estilizacao Onload */
#inicio {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    background-color: var(--color--background);
    animation: efeito 1s ease-in-out;
    gap: 4rem;
}


.bem_vindo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.bem_vindo p {
    font-size: 2.5rem;
    text-align: center;

}

.bem_vindo img {
    width: 150px;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.loader span {
    color: #562135;
    font-size: 24px;
    color: var(--color--secondary);
    display: inline-block;
    transition: all 0.5s ease;
    font-size: 2rem;
    animation: animate 2s infinite;
}

/* fim estilizacao Onload */

/* animate loading  */
.loader span:nth-child(1) {

    animation-delay: .1s;
}

.loader span:nth-child(2) {

    animation-delay: .2s;
}

.loader span:nth-child(3) {

    animation-delay: .3s;
}

.loader span:nth-child(4) {

    animation-delay: .4s;
}

.loader span:nth-child(5) {

    animation-delay: .5s;
}

.loader span:nth-child(6) {

    animation-delay: .6s;
}

.loader span:nth-child(7) {

    animation-delay: .7s;
}

@keyframes animate {
    0% {
        color: var(--color--secondary);
        transform: translateY(0);
        margin-left: 0;
    }

    25% {
        color: var(--color--primary);
        transform: translateY(-15px);
        margin-left: 10px;
    }

    100% {
        color: var(--color--secondary);
        transform: translateY(0);

    }
}

/* final animate loading  */

body {
    font-size: 1.2rem;
    font-family: "Lexend";
    background: #fbefff;
}

h1,
h2 {
    font-family: "Libre Baskerville";
}

ul li {
    list-style: none;
}

.item-menu {
    text-decoration: none;
    color: var(--color--background);
    font-weight: 600;
    transition: color var(--transition);
}

span {
    color: var(--color--primary);
}

/* Personaliza a cor e o fundo quando o texto é selecionado */
::selection {
    color: white;
    background: var(--color--accent);
}

/* Começo da Hero */

.header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 100dvh;
    background-image: var(--gradient), url(../assets/img/Banners/banner_home.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 3rem;
    padding-left: 3rem;
    width: 100%;
    background-color: #5621351f;
    backdrop-filter: blur(1rem);
}

#logo {
    width: 100px;
    z-index: 3;
}

.header h1 {
    font-size: clamp(2.8rem, 4vmax, 8rem);
    color: var(--color--background);
    font-weight: 500;
}

#destaqueHome {
    position: relative;
    padding-left: 4rem;
    bottom: 23rem;
    width: 65%;
}


.item-menu:hover {
    color: var(--color--accent);
}

.header-menu {
    display: flex;
    gap: 3.5rem;
    justify-content: space-between;
}

.btnReserva {
    font-family: "Lexend";
    width: 320px;
    height: 60px;
    margin-top: 1rem;
    border-radius: 20px;
    background-color: transparent;
    border: solid 3px var(--color--primary);
    color: var(--color--primary);
    font-size: 1.7rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

.btnReserva:hover {
    background-color: var(--color--primary);
    color: var(--color--text);
}


.hamburguer {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.hamburguer button {
    background: none;
    border: none;
}

.barra {
    display: block;
    width: 3rem;
    height: .3rem;
    background-color: var(--color--light);
    margin: .5rem auto;
    border-radius: var(--radius);
    transition: var(--transition);
}

/* ::before é necessário para dar o efeito de blur no componente */
.outroHead::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1;
}

.outroHead {
    position: relative;
    min-height: 50dvh;
    z-index: 2;
}

.destaque {
    font-family: "Libre Baskerville";
    color: var(--color--background);
    margin: auto;
    text-align: center;
}

.outroHead h1 {
    font-size: clamp(3rem, 3.2vmax, 6rem)
}

.outroHead p {
    margin-top: 10px;
    font-size: clamp(1.3rem, 1.2vmax, 4rem)
}

/* Final da Hero */

/* Boas Vindas */

.boas-vindas {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem;
}

.conteudo {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 12rem;
}

.imagens img {
    width: clamp(23.5rem, 35vw, 50rem);
}

/* Icone */

.sakura {
    position: absolute;
    height: 47.5vw;
    width: 100%;
    z-index: -1;
    background-image: url(../assets/img/Sakuras/sakura.png);
    background-repeat: no-repeat;
    background-size: clamp(19rem, 22dvw, 25rem);
}

.texto {
    flex: 2;
    margin-top: 100px
}

.bem-vindo {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color--secondary);
}

.text-inicial {
    align-content: center;
    align-items: center;
    font-size: 1.3rem;
    text-align: justify;
    line-height: 1.7;
    width: 100%;
}

/* começo do mais vendidos */
.btnArrow {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

#arrow button {
    padding: 10px;
}

#leftArrow {
    display: inline-block;
    transform: rotate(180deg)
}

.text_mais_vendidos {
    color: var(--color--secondary);
}

.text_mais_vendidos h1 {
    font-size: 40px;
    font-weight: 500;
}

.text_mais_vendidos p {
    font-size: 25px;

}

.text_mais_vendidos {
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#sakura2 {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    z-index: -1;

}

#sakura2 img {
    width: 400px;
    height: 400px;
    position: absolute;
    top: -50px;
}

.mais-vendidos {

    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.icone_setas {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    align-items: center;
}

.icone_setas img {
    width: 110px;
    height: 110px;
}

#arrow {
    display: flex;
    gap: 1.5rem;

}

#mais_vendidos {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    justify-content: space-around;

}

.pratos {
    display: flex;
    gap: 8rem;
    margin: auto;

}

#arrow button {
    border: 4px solid var(--color--secondary);
    border-radius: 100%;
    color: var(--color--secondary);
    font-weight: 600;
    font-size: 1.5rem;
    background-color: transparent;
    text-align: center;
    width: 50px;
    height: 50px;
    cursor: pointer;

}

#arrow button:hover {
    background-color: var(--color--secondary);
    color: var(--color--background);
}

#arrow span.arrow-filled:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 24'%3E%3Cpath fill='%23FFEFFE' fill-rule='evenodd' d='M10.157 12.711L4.5 18.368l-1.414-1.414l4.95-4.95l-4.95-4.95L4.5 5.64l5.657 5.657a1 1 0 0 1 0 1.414'/%3E%3C/svg%3E");
}

/* Inicio dos cards */
.pratos button {
    cursor: pointer;
}

.pratos #bloco1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 150px;
    gap: 2rem;
    background-color: var(--color--background);
    box-shadow: 8px 10px 20px rgba(0, 0, 0, 0.65);
    border-radius: 10px;

}

#asside1_2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;

}

#asside1_2 img {
    width: 120px;
    height: 18px;

}

#asside1_1 img {
    width: 200px;
    height: 125px;
    border-radius: 50%;

}

#asside1_2 h2 {
    font-size: 22px;
    font-weight: 600;
}

.complemento {
    display: flex;
}

#veja_mais1 button {
    background-color: var(--color--primary);
    border: none;
    color: #fff;
    border-radius: 5px;
    padding: 5px 15px;
    font-weight: 500;
    font-size: 1rem;

}

#veja_mais1 button:hover {
    background-color: rgba(226, 100, 121, 0.438);
    color: var(--color--background);
    transition: var(--transition);
}

.preco {
    color: var(--color--secondary);
    font-weight: 500;
}

.complemento {
    display: flex;
    gap: 2rem;
}

/* card 2 */

.pratos #bloco2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 150px;
    gap: 2rem;
    background-color: var(--color--background);
    box-shadow: 8px 10px 20px rgba(0, 0, 0, 0.65);
    border-radius: 10px;

}

#asside2_2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;

}

#asside2_2 h2 {
    font-size: 22px;
    font-weight: 600;
}

#asside2_1 img {
    width: 180px;
    height: 155px;
    border-radius: 50%;
}

#asside2_2 img {
    width: 120px;
    height: 18px;

}

.complemento {
    display: flex;
}

/* cards 3*/

.pratos #bloco3 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 150px;
    gap: 2rem;
    background-color: var(--color--background);
    box-shadow: 8px 10px 20px rgba(0, 0, 0, 0.65);
    border-radius: 10px;


}

#asside3_2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;

}

#asside3_2 h2 {
    font-size: 22px;
    font-weight: 600;
}

#asside3_1 img {
    width: 200px;
    height: 125px;
    border-radius: 50%;

}

#asside3_2 img {
    width: 120px;
    height: 18px;

}

.complemento {
    display: flex;
}

/* ENCONTRE O YUME PERTO DE VOCE */


.yume-localizacao {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 8rem;
    gap: 100px;
}

.containerLoc {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.containerLoc img {
    width: 40%;
    box-shadow: 16px 13px 13px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

.loc-infos {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 8rem;
    width: 550px;
}

.loc-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#loc-sakura {
    height: 25vw;
    background-image: url(../assets/img/Sakuras/sakura3.png);
    background-position: 100%;

}

#loc-titulo {
    color: var(--color--secondary);
    font-size: 2.5rem;
}

#loc-intro {
    font-weight: 200;
    font-size: 1.4rem;
}

#btnDireciona {
    font-family: "Lexend";
    background-color: var(--color--primary);
    width: 250px;
    height: 60px;
    font-size: 1.5rem;
    border: 0;
    color: white;
    border-radius: 10px;
    font-weight: 500;
    text-align: left;
    padding-left: 20px;
    background-image: url(../assets/img/Icons/arrowDirect.png);
    background-position: 95%;
    background-size: 42px 42px;
    background-repeat: no-repeat;

    transition: var(--transition);
    cursor: pointer;
}

#btnDireciona:hover {
    background-color: #562135ad;
    /* color: var(--color--secondary); */
}

.locais {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.local {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    padding-left: 10px;
}

#loc-atual {
    border-left: 4px solid var(--color--secondary);
}

.constuindo {
    font-family: "Lexend";
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.582);
    font-style: italic;
    font-weight: 500;

}

/* Iniciando Estilo do Icone e título  */
.pageTitulo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 80px;
}

.pageTitulo h1 {
    color: var(--color--secondary);
    font-size: 25pt;
}

.iconeGuia {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background-color: var(--color--background);
    border-radius: 50%;
    box-shadow: 0px 4px 8px #00000040;
}

/* Iniciando Footer */
footer h2 {
    font-weight: 400;
}

.horarios span {
    background-color: rgba(252, 184, 195, 0.432);
    color: #fff;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    background-color: var(--color--secondary);
    color: #fff;

}

footer .horarios {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

footer .horarios-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6rem;


}

footer .horarios-texto-1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer .separacao1 {
    display: flex;
    gap: 3rem;
    flex-direction: column;

}

#copy {
    font-size: 17px;
    font-weight: 300;
}

#copyMobile {
    font-size: 17px;
    font-weight: 300;
    display: none;
}

/* Social media Footer */
#restaurante h2 {
    font-weight: 300;
    font-size: 35px;
    font-family: Libre Baskerville;
}

.social_midia {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1px 2rem;
    margin-bottom: 5rem;
    margin-left: 2rem;
}

.social_midia img {
    width: 40px;
    height: 40px;

}

.social_midia .social {
    display: flex;
    gap: 2rem;
}

/* eventsFooter */
.novidades span {
    background-color: rgba(252, 184, 195, 0.432);
    color: #fff;
}

.events {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;


}

.events_pv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    margin-left: 200px;
}

.novidades {

    display: flex;
    flex-direction: column;
    gap: 2rem;
    direction: rtl;
    text-align: right;


}

.diga_email {

    display: flex;
    align-items: center;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 8px;
    color: white;
    max-width: 300px;
    margin-top: 10px;
    padding: 0.5rem 10rem;
    gap: 0.5rem;
    justify-content: center;
    direction: ltr;
    text-align: left;



}

.diga_email input {
    background-color: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 0.5rem;
    font-size: 16px;
    font-weight: 600;

}

.diga_email input::placeholder {
    color: #fff;
}

.marked {
    color: var(--color--secondary);
    font-weight: 500;
    background-color: #ff788a62;
    padding: 2px;
    border-radius: 3px;
}

/*responsividade*/

@media(width <=1080px) {
    body {
        overflow-x: hidden;
    }

    #logo {
        width: 80px;
        margin: 10px 0;
    }


    #destaqueHome {
        position: inherit;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
        margin: auto;
        padding-left: 0;
        text-align: center;
        width: 90%;
    }

    .hamburguer {
        display: block;
    }

    .header-menu {
        font-family: "Libre Baskerville";
        width: 100%;
        height: 100dvh;
        background-color: var(--color--secondary);
        position: absolute;
        z-index: 2;
        top: 0;
        right: -100%;
        gap: 0;
        padding-left: 20px;
        text-align: center;
        flex-direction: column;
        justify-content: center;
        align-content: start;
        transition: var(--transition);
    }

    .active {
        right: 0;
    }

    .hamburguer.active .barra:first-child {
        transform: translateY(15px) rotate(360deg) rotate(45deg);
    }

    .hamburguer.active .barra:nth-child(2) {
        opacity: 0;
    }

    .hamburguer.active .barra:last-child {
        transform: translateY(-10px) rotate(-360deg) rotate(-45deg);
    }

    .header-menu {
        gap: 6rem;
        font-size: 2.3rem;
    }

    /* Boas Vindas */
    .boas-vindas {
        padding: 6rem 0;
    }

    .bem-vindo {
        font-size: 1.8rem;
    }

    .conteudo {
        flex-direction: column;
        width: 80%;
        margin: 1rem auto;
        gap: 10px;
    }

    .sakura {
        height: 100vw;
        background-size: clamp(19rem, 22dvw, 25rem);
    }

    /* Mais Vendidos */
    #sakura2 img {
        top: 160px;
        left: 130px;

    }

    .text_mais_vendidos {
        margin-left: 0px;
        text-align: center;
    }

    .text_mais_vendidos h1 {
        font-size: 2.3rem;
    }

    .text_mais_vendidos p {
        font-size: 1.4rem;
    }

    #bloco2,
    #bloco3 {
        display: none;
    }

    .pratos {
        display: flex;
        justify-content: center;
    }

    .pratos #bloco1 {
        width: 20rem;
        height: 20rem;
        flex-direction: column;
    }

    #asside1_1 img {
        width: 250px;
        height: 145px;
        border-radius: 50%;
    }

    #asside1_2 {
        gap: 5px;
    }

    #asside1_2 h2 {
        font-size: 1.4rem;
        font-weight: 600;
    }

    #asside1_2 img {
        width: 150px;
        height: 25px;
    }

    .container {
        flex-direction: column;
    }

    .preco {
        font-size: 1.35rem;
        color: var(--color--secondary);
        font-weight: 500;
    }


    .pratos #bloco2 {
        display: none;
    }

    .pratos #bloco3 {
        display: none;
    }

    /* Localização */

    .yume-localizacao {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }

    .containerLoc {
        flex-direction: column;
    }

    .containerLoc img {
        content: url(../assets/img/ilustracao_local_horiz.png);
        margin: auto;
        width: 70%;
        box-shadow: 16px 13px 13px rgba(0, 0, 0, 0.25);
        border-radius: 20px;
    }

    .loc-infos {
        margin: auto;
        justify-content: center;
        align-items: center;
        gap: 5rem;
    }

    .loc-main {
        /* align-items: center; */
        justify-content: center;
        width: 75%;
        margin-left: 3rem;
    }

    #loc-titulo {
        font-size: 2rem;
        width: 90%;
    }

    #loc-intro {
        font-weight: 200;
        font-size: 1.2rem;
    }

    .locais {
        gap: 50px;
    }

    #loc-sakura {
        display: none;
    }

    /* Começo Footer */
    footer {
        flex-direction: column;
        align-items: normal;
    }

    footer .separacao1 {
        gap: 1rem;
    }

    .social_midia {
        position: relative;
        gap: 1rem;
        justify-content: left;
        align-items: start;
        padding: 0;
        margin-bottom: 0;
        margin-left: 0;
    }

    #restaurante h2 {
        font-size: 1.8rem;
    }

    .social_midia img {
        width: 32px;
        height: 32px;
    }

    .social {
        padding: 5px;
    }

    /* eventsFooter */
    .events {
        justify-content: left;
        align-items: start;
    }

    .events_pv {
        margin-left: 0px;
    }

    /* Novidades */
    .novidades {
        gap: 1rem;
        direction: ltr;
        text-align: left;
    }


    #copy {
        display: none;
    }

    #copyMobile {
        display: flex;
    }

}

@media (max-width: 500px) {
    .sakura {
        height: 260vw;
        background-size: clamp(19rem, 22dvw, 25rem);
    }
}