
:root {
    --laranja: #f57c00;
    --marrom: #4e342e;
    --bege: #f5e6d3;
    --verde-suave: #81c784;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: var(--bege);
    color: var(--marrom);
}

header {
    background-color: var(--marrom);
    color: white;
    padding: 15px 10%;
    font-size: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: var(--laranja);
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: var(--laranja);
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('https://images.unsplash.com/photo-1550547660-d9450f859349'),
    url('./img/foto_fundo.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 15px;
}

.hero a {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--laranja);
    color: white;
    font-size: 1.2em;
    border-radius: 8px;
    transition: 0.3s;
}

.hero a:hover {
    background-color: var(--verde-suave);
    transform: scale(1.05);
}

section {
    padding: 60px 10%;
}

h2.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--marrom);
}

a{
    text-decoration: none;
    color: inherit;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 10px;
    color: var(--laranja);
}

.card p {
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    color: var(--verde-suave);
}

.btn-pedido {
    background-color: var(--laranja);
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    color: white;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-pedido:hover {
    background-color: var(--verde-suave);
    transform: scale(1.05);
}

.btn-pedido-final {
    background-color: var(--laranja);
    display: block;
    width: 145px;
    margin-left: 460px;
    padding: 10px 15px;
    color: white;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

/* Responsivo */
@media (max-width: 768px) {
    .btn-pedido-final {
        margin-left: 130px;
    }
}

.btn-cardapio {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-download {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ff7a18, #ff3d00);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
}

.btn-download:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #ff8c42, #ff5722);
}

.btn-download:active {
    transform: scale(0.97);
}

.contact {
    background-color: var(--verde-suave);
    color: white;
    text-align: center;
    border-radius: 10px;
    padding: 40px 20px;
}

footer {
    background-color: var(--marrom);
    color: white;
    text-align: center;
    padding: 20px;
}

#sobre-nos {
    background-color: rgb(75, 41, 34);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 20px;
}