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

body {
    font-family: Arial, sans-serif;
    color: #631308;
    background: #FFECD7;
}

/* ===== HEADER ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 10%;
    padding-block: 10px;    
}
#logo_header_landinpage{
    height: 8vh;
}
nav{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.btn_nav_landingpage {
    background-color: transparent;
    border: none;
    text-decoration: none;
    color: #631308;
    font-weight: bold;
    cursor: pointer;
    padding-block: 5px;
}
.btn_nav_landingpage:hover{
    border-bottom: 2px solid #D2342D;
}
#btn_menu_landingpage{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}
a{
    font-size: 11pt;
    margin: 0px;
}
#area_btn_menu_landingpage{
    width: 10vw;
    display: flex;
    flex-direction: column;
    position: relative;
}
#img_avatar_user{
    height: 20px;
}
#dropdawn_btn_manu_landingpage{
    width: 100%;
    height: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position:absolute;
    top: 32px;
    z-index: 10;
    background-color: #8B2700;
    transition: height 0.3s ease;
}
.btn_drop_landingpage{
    background-color: transparent;
    color: white;
    font-weight: bold;
    border: none;
    outline: none;
    padding-block: 5px;
    cursor: pointer;
}
.btn_drop_landingpage:hover{
    background-color: #631308;
}

#menu_mobile_container {
    display: none;
}

/* ===== CARROSSEL ===== */
.carrossel {
    overflow: hidden;
    width: 100%;
}

.wrapp {
    display: flex;
    width: max-content;
}

.wrapp img {
    width: 600px;
    height: 400px;
    object-fit: cover;
    flex-shrink: 0;
}


/* ===== DIFERENCIAIS ===== */
.diferenciais {
    display: flex;
    flex-direction: row;
    align-items:baseline;
    justify-content: space-around;
    padding-inline: 10%;
    padding-block: 60px;
}

.diferenciais div {
    text-align: center;
    max-width: 250px;
}

.diferenciais h3 {
    margin-top: 5px;
    margin-bottom: 2px;
    font-size: 17pt;
    font-weight: bold;
}

/* ===== SOBRE ===== */
.sobre {
    display: flex;
    flex-wrap: wrap;
    padding-block: 30px;
    padding-inline: 10%;
    background-color: #FFFFFF;
    gap: 2vw;
}
/* GRID */
.galeria_sobre {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.galeria_sobre img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}
/* TOP → 50% cada */
.galeria_sobre img.top {
    grid-column: span 3;
    height: 220px;
}
/* BOTTOM → 33% cada */
.galeria_sobre img.bottom {
    grid-column: span 2;
    height: 140px;
}

.galeria_sobre img:hover {
    transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 8px;
}

/* BOTÕES */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }

.quem_somos{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quem_somos h2 {
    margin-bottom: 0px;
    color: #D2342D;
    font-size: 28pt;
    font-family: 'Lobster Two', cursive;
}
.quem_somos img{
    margin-block: 20px;
}
.quem_somos p{
    text-align: justify;
    line-height: 1.7;
}

/* ===== VITRINE ===== */
.vitrine {
    background-color: white;
}
#ondulacao{
    width: 100%;
    margin-bottom: -4px;
}
.area_produtos{
    margin-top: 0px;
    padding-block: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #8B2700;
}

.area_produtos h2 {
    text-align: center;
    color: white;
    font-size: 28pt;
    font-family: 'Lobster Two', cursive;
    margin-bottom: 20px;
}
#img_barra_produtos_separacao{
    margin-bottom: 30px;
}

.area_produtos .grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card_produto{
    width: 20vw;
    border: 1px solid white;
}
.card_produto img{
    width: 100%;
}
.card_produto_descricao{
    background-color: #FFECD7;
    text-align: center;
    padding-block: 10px;
    font-size: 16pt;
    font-family: 'Lobster Two', cursive;
}

/* ===== Sessão Contato ===== */
#section_contato {
    padding-block: 60px;
    padding-inline: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

#separador_contato{
    margin-block: 20px;
}
.sub_area_contato{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#img_contato{
    width: 40%;
    border-radius: 10%;
}
#form_contato_landingpage {
    width: 50%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#section_contato input,
#section_contato textarea {
    border: 1px solid #8B2700;
    padding: 10px;
    width: 100%;
}
#section_contato input:focus,
#section_contato textarea:focus{
    outline: 1px solid #8B2700;
}
#input_nome_form_contato, #input_telefone_form_contato{
    flex: 1;
}
#section_contato textarea{
    resize: none;
    height: 20vh;
    font-size: 11pt;
}
#btn_enviar_contato {
    width: 100%;
    padding: 10px;
    background: #8B2700;
    color: #fff;
    border: none;
}
#btn_enviar_contato:hover{
    cursor: pointer;
    background-color: #D2342D;
}

/* ===== FOOTER===== */
footer {
    text-align: center;
    background: #8B2700;
    color: #fff;
}
#titulo_rodape{
    color: #ffffff;
    font-family: 'Lobster Two', cursive;
    margin-top: 10px;
}
#chamada_pedidos{
    font-size: 11pt;
    margin-block: 30px;
}
.txt_contato_footer{
    font-size: 11pt;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}
#icone_relogio{
    margin-right: 5px;
}
#logo_wpp, #icone_relogio{
    height: 17px;
}
#rodape{
    font-size: 10pt;
    font-weight: bold;
    padding-block: 10px;
    color: #8B2700;
    background-color: #ffdbb1;
    margin-top: 5vh;
}
#btn_mobile_abrir_cardapio{
    display: none;
}