:root {
    --cor-primaria: #F49639;
    --cor-white: #fff;
    --cor-hover: #ff8d1c;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}

header nav {
    display: flex;
    align-items: center;
}

header nav li {
    list-style: none;
}

header nav li a {
    padding: 10px;
    text-decoration: none;
}

header nav li a:hover {
    color: var(--cor-hover);
}

header svg {
    fill: var(--cor-primaria);
    padding-right: 10px;
}

/* Menu (desktop) */
.menu {
    display: flex;
    gap: 10px;
    align-items: center;
}

.menu li {
    list-style: none;
}

.menu a {
    padding: 10px;
    text-decoration: none;
    color: inherit;
}

.menu-toggle {
    display: none; /* exibido apenas em mobile */
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--cor-primaria);
}

header .imgHeader {
    display: flex;
    align-items: center;
    font-size: x-large;
}

header .buttons button {
    background-color: var(--cor-primaria);
    color: var(--cor-white);
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-size: medium;
    cursor: pointer;
    transition: transform 0.5s, color 0.3 ease;
    -webkit-transition: transform 0.5s, color 0.3 ease;
    -moz-transition: transform 0.5s, color 0.3 ease;
    -ms-transition: transform 0.5s, color 0.3 ease;
    -o-transition: transform 0.5s, color 0.3 ease;
}

header .buttons button:hover {
    background-color: var(--cor-hover);
    transform: scale(1.04);
    color: black;
}

.tamanho {
    max-width: 1100px;
    margin: 0 auto;
}

section .imgHamburgue {
    background: url("../image/hamburgueInicial.png") no-repeat center;
    background-size: cover;
    border-radius: 20px;
    width: 100%;
    height: 50%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

section .imgHamburgue::after {
    border-radius: 20px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 48%);
    z-index: 1;
}

section .imgHamburgue .contant {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    margin: 30px;
}

section .imgHamburgue .contant h1 {
    font-weight: 900;
    color: white;
    font-size: xxx-large;
    width: 500px;
    line-height: 1.25;
}

section .imgHamburgue .contant p {
    color: white;
    width: 400px;
    font-weight: 400;
    padding: 20px 0px 20px 0px;
    line-height: 1.5;
}

section .imgHamburgue .contant button {
    background-color: var(--cor-primaria);
    color: var(--cor-white);
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: large;
    cursor: pointer;
    letter-spacing: 0.015em;
    font-weight: 500;
    transition: transform 0.3s, color 0.3s ease;
    -webkit-transition: transform 0.3s, color 0.3s ease;
    -moz-transition: transform 0.3s, color 0.3s ease;
    -ms-transition: transform 0.3s, color 0.3s ease;
    -o-transition: transform 0.3s, color 0.3s ease;
}

section .imgHamburgue .contant button:hover {
    background-color: var(--cor-hover);
    color: black;
    transform: scale(1.04);
    -webkit-transform: scale(1.04);
    -moz-transform: scale(1.04);
    -ms-transform: scale(1.04);
    -o-transform: scale(1.04);
}

section .secaoInicial {
    margin: 0 auto;
    position: relative;
    margin-top: 30px;
}

/* outra secão*/

section.cardTamanhoSemana {
    max-width: 1100px;
    margin: 0 auto;
}

section.cardTamanhoSemana .titleOferta {
    margin: 0 auto;
    margin-top: 60px;
}

section.cardTamanhoSemana .cardsSemanal {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 15px;
}
section.cardTamanhoSemana .imgCardSemana {
    /* caminho relativo corrigido */
    background: url("../image/hambur-1.png") no-repeat;
    background-position: center;
    background-size: cover;
    width: 330px;
    height: 180px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

section.cardTamanhoSemana .contantCards {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: 0 auto;
    background-color: #FCFAF8;
    box-shadow: 0px 0 2px #8d7373;
    border-radius: 0px 0px 15px 15px;
    padding: 15px;
}

section.cardTamanhoSemana .contantCards span {
    padding: 19px 10px 10px;
    font-weight: 700;
}

section.cardTamanhoSemana .contantCards p {
    padding: 0px 9px;
    font-style: italic;
}

section.cardTamanhoSemana .contantCards button {
    margin: 10px;
    margin-top: 15px;
    border: none;
    background-color: var(--cor-primaria);
    padding: 8px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.4s, color 0.3s, background 0.3s ease;
    -webkit-transition: transform 0.4s, color 0.3s, background 0.3s ease;
    -moz-transition: transform 0.4s, color 0.3s, background 0.3s ease;
    -ms-transition: transform 0.4s, color 0.3s, background 0.3s ease;
    -o-transition: transform 0.4s, color 0.3s, background 0.3s ease;
}

section.cardTamanhoSemana .contantCards button:hover {
    background: var(--cor-hover);
    color: var(--cor-white);
    transform: scale(1.1);
}

/* Seção Cardapio */

section.cardTamanhoSemana .titleCardapio {
    margin: 80px 0px 40px;
}

section.cardTamanhoSemana .sugestCardapio {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

section.cardTamanhoSemana .sugestCardapio .imgCardapio {
    width: 350px;
    height: 370px;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
    align-content: stretch;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

section.cardTamanhoSemana .sugestCardapio .imgCardapio::after {
    border-radius: 20px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 48%);
    z-index: 1;
}

section.cardTamanhoSemana .sugestCardapio .imgCardapio img {
    width: 100%;
    height: 370px;
    border-radius: 15px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -ms-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
}

section.cardTamanhoSemana .sugestCardapio .imgCardapio:hover img {
    transform: scale(1.12);
}

section.cardTamanhoSemana .sugestCardapio .imgCardapio h3 {
    color: var(--cor-white);
    position: absolute;
    bottom: 0;
    padding: 15px;
    z-index: 2;
}

/* Outra seção contato */

.my-svg-icon {
    fill: var(--cor-hover); /* Changed to blue */
}

.material-symbols-outlined,
.material-symbols-outlined {
    color: var(--cor-hover);
    margin-right: 7px;
}

section .titleContato {
    margin: 60px 0px 30px 0px;
    display: flex;
    justify-content: flex-start;
}
    
section .informacao {
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

section .informacao .contacts {
    background-color: #d1c5c573;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 2px #8b8585;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 440px;
    
}

section .informacao .infor {
    margin-top: 20px;
}

section .informacao .infor .inforContact {
    display: flex;
    width: 300px;
    padding: 20px;
    padding-left: 0;
    color: #736F68;
}

section .informacao .hours .hoursFuncio {
    padding: 10px;
}

section .informacao .hours .hoursFuncio p {
    line-height: 2;
}

section .informacao .maps iframe {
    width: 490px;
    height: 400px;
    border-radius: 15px;
}

/* seção footer*/

footer {
    margin-top: 80px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

footer p {
    color: #736F68;
}

footer .redes svg {
    width: 30px;
    color: #736F68;
    cursor: pointer;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

footer .redes svg:hover {
    color: var(--cor-hover);
}

.desActive {
    display: none;
}

.foco::after {
    border-radius: 20px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 48%);
    z-index: 1;
}

/* Responsividade */
@media screen and (max-width: 1200px) {
    .tamanho, 
    section.cardTamanhoSemana {
        max-width: 90%;
        padding: 0 20px;
    }

    section.cardTamanhoSemana .sugestCardapio {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    header {
        justify-content: space-around;
        gap: 20px;
        padding: 15px;
    }

    header nav {
        flex-direction: column;
        width: 100%;
        text-align: center;
        top: 60px;
        background-color: white;
        z-index: 4;
    }

    header nav li {
        margin: 10px 0;
    }

    header .buttons {
        display: none;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 18px;
        z-index: 6;
        background: none;
        border: none;
    }

    header nav .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #fff;
        z-index: 5;
        padding: 10px 0;
    }

    header nav .menu.open {
        display: flex;
    }

    section .imgHamburgue .contant h1 {
        width: 100%;
        font-size: xx-large;
    }

    section .imgHamburgue .contant p {
        width: 100%;
    }

    section .informacao {
        flex-direction: column;
        gap: 30px;
    }

    section .informacao .maps iframe {
        width: 100%;
    }

    section .informacao .contacts {
        width: 90%;
    }

    footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    section .imgHamburgue .contant h1 {
        font-size: x-large;
    }

    section .imgHamburgue {
        min-height: 400px;
    }

    section.cardTamanhoSemana .sugestCardapio .imgCardapio {
        width: 100%;
    }
}

@media screen and (max-width: 320px) {
    
    section.cardTamanhoSemana .titleOferta {
        margin-top: 50px;
    }
}