@import url('https://fonts.googleapis.com/css2?family=Knewave&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f9e8c2;
}

section {
    padding: 28px 8%; 
}

header {
    width: 100%;
    padding: 28px 8%;
    position: sticky;
    top: 0;
    background-color: #f9e8c2;
    z-index: 3;
}

#navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logo {
    font-size: 24px;
    color: rgb(216, 128, 55);
    cursor: pointer;
    display: block; 
    max-width: 100%; 
    height: auto;    
}

#nav_list {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-item a {
    text-decoration: none;
    color: black;
    font-weight: 600;
}

.nav-item.active a{
    color: #1d1d1d;
    border-bottom: 3px solid rgb(216, 128, 55);
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(216, 128, 55);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
}

.btn-default:hover {
    background-color: #dea16c ;
}

#mobile_btn {
    display: none;
}

#mobile_menu {
    display: none;
}

@media screen and (max-width: 1170px) {
    #nav_list,
    #navbar .btn-default{
        display: none;
    }
    #mobile_btn {
        display: block;
        border: none;
        background-color: transparent;
        font-size: 1.5rem;
        cursor: pointer;
    }

    #mobile_menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #mobile_nav_list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 12px 0px;
    }

    #mobile_nav_list .nav-item {
        list-style: none;
        text-align: center;
    }
}
/* HOME */

#home {
    display: flex;
    min-height: calc(100vh - 91px);
    position: relative;
}

#cta {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 5%;
}

#cta .title {
    font-size: 3rem;
    color: black;
}

#cta .title span {
    color: rgb(216, 128, 55);
}

#cta .description {
    font-size: 1.2rem;
}

#cta_buttons {
    display: flex;
    gap: 24px;
}

#cta_buttons a {
    text-decoration: none;
    color: #1d1d1d;
}

#phone_button {
    display: flex;
    gap: 8px;
    align-items: center;
    background-color: #f4ebd9;
    padding: 8px 8px;
    font-weight: 500;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    white-space: nowrap;
}

#phone_button button {
    box-shadow: none;
}


.social-media-buttons {
    display: flex;
    gap: 18px;
}

.social-media-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: #f4ebd9;
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: black;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s ease;
}

.social-media-buttons a:hover {
    box-shadow: rgba(0, 0, 0, 0.1);
}

#banner {
    width: 90%; 
    margin-left: 1%; 
    margin-right: auto; 
    margin-top: -100px;
    display: flex;
    align-items: center; 
    justify-content: flex-end; 
    z-index: 2;
}

#banner img {
    width: 700px; 
    height: auto; 
}


.shape {
    background-color: rgb(250, 239, 215);
    width: 50%;
    height: 100%;
    position: absolute;
    border-radius: 40% 30% 0% 20%;
    top: 0;
    right: 50px;
    z-index: 1;
}

@media screen and (max-width: 1170px) {
    #home {
        min-height: 100%;
        padding-top: 0px;
    }

    #banner,
    #banner img,
    #home .shape {
        display: none;
    }

    #cta {
        width: 100%;
        text-align: center;
        align-items: center;
    }
}

@media screen and (max-width: 450px) {
    #phone_button button {
        display: none;
    }
}

/* MENU E CARDAPIO */

#menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.description {
    text-align: justify;
}

.section-title {
    color: #dea16c;
    font-size: 2rem;
}

.section-subtitle {
    font-size: 2.1875rem;
}


#dishes {
    display: flex;
    justify-content: center; 
    gap: 30px; 
    margin: 40px auto; 
    max-width: 1300px; 
    padding: 0 20px; 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#dishes:hover{
    transform: scale(1.05); /* aumenta 5% */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15)
}

.dish {
    flex: 1 1 200px; 
    background-color: #ffffff; 
    border-radius: 10px; 
    position: relative;
    padding: 20px; 
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
    overflow: hidden;
}


.dish-image {
    width: 250px;
    height: auto;
    max-width: 300px; 
    border-radius: 8px; 
    margin-bottom: 15px; 
}

.dish-heart {
    position: absolute;
    background-color: #dea16c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7em;
    color: white;
    width: 70px;
    height: 70px;
    top: -10px;
    border-radius: 90px 90px 90px 10px;
}

.dish-price {
    display: flex;
    align-items: center;
    margin-top: 45px;
    gap: 20px;
    justify-content: center;
}

.dish-price h4 {
    margin: 0;
    font-size: 1.4em;
    color: #333;
}

.btn-deflt {
    color: white;
    border: none;
    border-radius: 50%; 
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.2s ease;
}

.btn-defau:hover {
    background-color: #e05c3f;
}

.dish-rate {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    color: #FFD700; /* cor das estrelas */
}

.dish-rate span {
    color: #777;
    margin-left: 5px;
    font-size: 0.9em;
}

.dish-title {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 5px;
}

.dish-description {
    font-size: 0.9em;
    color: #615d5d;
    display: block; 
    margin-bottom: 15px;
    text-align: center;
}

@media screen and (max-width: 1170px) {
    #dishes {
        flex-wrap: wrap;
        justify-content: center;
    }

    .dish {
        /* s2 colunas com 12px de espaço*/
        width: calc(50% - 12px); 
    }
}

@media screen and (max-width: 600px) {
    .dish {
        width: 100%;
    }

    #menu .section-subtitle {
        text-align: center;
    }
}

/* AVALIAÇÕES */

#testimonials {
    min-height: calc(100vh - 91px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

#testimonial_chef {
    height: auto;
}

#testimonials .section-subtitle {
    font-size: 3rem;
}

.nome2 {
    text-decoration: none;
    color: black;
}

#testimonials_content {
    width: 50%;
}

#feedbacks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    margin-top: 30px;
}

.feedback {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
}

.feedback-avatar {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: cover;
}

.btn-default-cta {
  width: 200px;        
  padding: 12px 20px;
  background: #d37a31;
  border-radius: 15px;
  font-weight: 600;
  text-align: center;
  margin: 20px auto;    
  display: block;
  border: none;
  cursor: pointer;
  transition: background-color .3s ease;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
}

.btn-default-cta:hover {
    background-color: #dea16c ;
}

.btn-default-cta a {
    text-decoration: none;
    color: #000;
}

.feedback-content p {
    display: flex;
    justify-content: space-between;
}

.feedback-content p span {
    color: #FFD700;
}

.nome {
    font-weight: 600;
}

@media screen and (max-width:1170px) {
    #testimonials, .nome {
        flex-direction: column;
    }

    #testimonials .section-subtitle {
         text-align: center;
         font-size: 2.5rem;
    }

    #testimonial_chef {
        display: none;
    }

    #testimonial_content {
        width: 70%;
        display: flex;
        flex-direction: column;
        align-items: center;      
    }
}

@media screen and (max-width:600px) {
    #testimonials .section-subtitle {
        font-size: 2rem;
    }

     #testimonial_content {
        width: 100%;
     }

    .feedback {
        flex-direction: column;
    }
}

footer {
    background-color: #efd495;
}

html {
    scroll-behavior: smooth;
}

#footer_items {
    display: flex;
    justify-content: space-between;
    padding: 0px 8% 24px 8%;
    align-items: center;
}

#copyright {
    color: black;
    font-weight: 500;
}

@media screen and (max-width: 600px) {
    #footer_items {
        flex-direction: column;
        gap: 20px;
    }
}

a {
    text-decoration: none;  
    color: inherit;
}