@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Patua+One&display=swap');

.menu {
    position: sticky;
    top: 0;
    background-color: #5a3b1b;
    z-index: 999;
    padding: 5px 0;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    margin-bottom: 0px;
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 3px;
    padding: 0;
}

.menu a {
    color: white;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    font-size: 20px;
    transition: color 0.3s;
}

.menu a:hover {
    color: #cbb08b;
}

.divisor {
    border-left: 2px solid #cbb08b;
    padding-left: 30px;
    height: 20px;
    margin: 0 15px;
}

body {
    background-color: #cbb08b;
    background-image: url(./images/fundo.png);
    background-size:contain;
}

table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

th, td {
    padding: 15px, 10px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    vertical-align: center;
    font-family: 'Nunito', sans-serif;
    color: #5a3e1b;
}   

thead th {
    background-color: #5a3b1e;
    color: white;
    font-size: 15px;
    font-family: patua one, monospace;
}

tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.tudo {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgb(234, 211, 167);
    padding: 40px;
    border-radius: 40px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

li {
    text-align: left;
    margin-bottom: 10px;
    font-family: 'Nunito', sans-serif;
}

li li ::before {
    content: "⚠ ";
}

.imagem {
    width: 600px;
    border-radius: 20px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ;
}

.imagem:hover {
    transform: scale(1.05);
}

h1 {
    font-family: 'Patua One', monospace;
    color: #5a3e1b;
    font-size: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 10px;

} 

h2 {
    font-family: 'Patua One', monospace;
    color: white;
    background-color: #5a3b1e;
    padding: 10px, 40px;
    border-radius: 15px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-top: 40px;
}

p {
    font-family: 'Nunito', sans-serif;
    color: #5a3e1b;
    line-height: 1.6;
}

.item-cardapio {
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px;
    gap: 40px;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1.5px dashed #5a3b1e;
}

.item-cardapio:last-child {
    border-bottom: none;
}

.foto-alimento {
    width: 200px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    object-fit: cover;
    flex-shrink: 0;
}

.botaocontato {
    display: inline-block;
    padding: 15px 40px;
    background-color: #5a3b1e;
    color: white;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    border-radius: 50px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    font-weight: bold;
    font-size: 22px;
}

.botaocontato:hover {
    background-color: #cbb08b;
    color: #5a3b1e;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
}



.formulario{
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    margin-top: 30px;
}

.campo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.campo input, 
.campo select, 
.campo textarea {
    padding: 15px;
    border: 2px solid rgba(90, 62, 27, 0.3); 
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #5a3e1b;
    transition: all 0.3s ease;
}

.campo textarea {
    height: 120px;
    resize: vertical; 
}

.campo input:focus, 
.campo select:focus, 
.campo textarea:focus {
    outline: none;
    border-color: #5a3b1e;
    background-color: white; 
    box-shadow: 0 0 10px rgba(90, 62, 27, 0.2); 
}

.caixabussola {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.caixabussola:hover {
    transform: scale(1.1);
}

.caixabussola:hover #bussola {
    display: none;
}

.caixabussola:hover .bussolaaberta {
    display: block;
}

#bussola {
    width: 100px;
    display: block;
}

.bussolaaberta {
    display: none;
    width: 230px;
    display: none;
}