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

:root {
    --primary: #ff6b35;
    --dark: #1a1a1a;
    --gray: #6c757d;
    --light: #f8f9fa;
    --radius: 16px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 1px 3px #999;
    z-index: 100;
}

.fab.fa-whatsapp {
    font-size: 53px;
    margin-top: 2px;
    margin-left: 6px;
}

.fab.fa-whatsapp:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
    cursor: pointer;
}

.btn {
    background: var(--primary);
    display: inline-block;
    padding: 8px 20px;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
    width: 140px;
    height: 65px;
    text-align: center;
}

.btnPecaAgora {
    background: var(--primary);
    display: inline-block;
    padding: 8px 24px;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
    width: 140px;
    height: 40px;
    text-align: center;
}

.btnPecaAgora:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
}

.btn:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #fff;
}

.btn-light {
    background-color: #fff;
    color: var(--primary);
}

.btnComprar {
    width: 110px !important;
}

.botaoPedirComprar {
    display: flex;
    gap: 10px;
    justify-content: left;
}

.pedirPeloWhat {
    background-color: #fff;
    color: var(--primary);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
    width: 250px;
    height: 40px;
    text-align: center;
}

.pedirPeloWhat:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
}

header {
    position: fixed;
    inset: 0 0 auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
    background: #fff;
    box-shadow: var(--shadow);
    z-index: 99;
}

header nav {
    display: flex;
    gap: 30px;
}

header nav a {
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s;
}

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

.linkBurguer {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
}

.hero-wrapper {
    background: linear-gradient(135deg, #fff9f5, white);
    padding-top: 60px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero img {
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(255,107,53,0.3);
}

/* login page styles */
.login-page {
    background: linear-gradient(135deg, #fff9f5, white);
    min-height: 100vh;
    padding-top: 80px; /* leave space for fixed header */
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.login-form {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 400px;
}

.login-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-form button {
    width: 100%;
    margin-top: 10px;
}

.alt-action {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
}

.alt-action a {
    color: var(--primary);
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stats li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-stats span {
    font-size: 14px;
    color: var(--gray);
}

.hero-stats strong {
    font-size: 28px;
    color: var(--primary);
}

.cardapio {
    padding: 15px 5%;
    text-align: center;
}

.cardapio h2 {
    font-size: 36px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.cardapio p {
    color: var(--gray);
    margin-bottom: 30px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-grid li {
    position: relative;
    background-color: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-grid li:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.menu-grid li img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-grid li h3 {
    margin-top: 1px;
}

.menu-grid li p {
    margin: 2px 0 20px;
    padding: 1px 20px;
}

.menu-grid li strong {
    margin-top: 10px;
    padding-top: 5px;
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.menu-grid h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
}

.menu-grid  p {
    padding: 0 20px;
    font-size: 14px;
    color: var(--gray);
}

.menu-grid strong {
    display: block;
    padding: 15px 20px 0;
    font-size: 22px;
    color: var(--primary);
}

.menu-grid .btn {
    display: block;
    margin: 10px 10px 20px 20px;
    text-align: center;
    font-size: 20px;
    padding-bottom: 40px;
    padding-left: 15px;
    width: 80px;
    height: 30px;
}

.sobre {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 30px 5%;
    background-color: var(--light);
}

.sobre img {
    border-radius: var(--radius);
    box-sizing: var(--shadow);
}

.sobre h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.sobre article {
    color: var(--gray);
    margin-bottom: 30px;
}

.sobre ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
}

.cta {
    padding: 15px 5%;
    text-align: center;
    background: linear-gradient(135deg,var(--primary), #e55a2b);
}

.cta h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 5px;
}

.cta p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 20px;
}

.cta .btn {
    width: 150px;
    height: 60px;
    margin-top: 5px;
}

.redesSociais:hover {
    cursor: pointer;
    color: var(--primary);
}

footer {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    padding: 30px 5% 20px;
    background: var(--dark);
    color: #fff;
}

footer .copy {
    grid-column: 1/-1;
    text-align: center;
    padding: auto;
}

/* =========================
   MENU HAMBURGUER
========================= */

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
}

/* =========================
   AJUSTES GERAIS MOBILE
========================= */

body {
    overflow-x: hidden;
}

/* =========================
   TABLET E MOBILE
========================= */

@media (max-width: 1024px) {
    
    .linkBurguer {
    font-size:20px;
    font-weight: 500;
    }
    
    .btnPecaAgora {
        cursor: pointer;
        width: 140px;
        height: 40px;
        text-align: center;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-buttons,
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .sobre {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    footer {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }
}

/* =========================
MOBILE
========================= */

@media (max-width: 768px) {
    
    .linkBurguer {
    font-size:20px;
    font-weight: 500;
    }

    .btnPecaAgora {
        cursor: pointer;
        width: 130px;
        height: 40px;
        text-align: center;
    }

    header {
        flex-direction: row;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    header nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        box-shadow: var(--shadow);

        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: 0.3s ease;
    }

    header nav.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .cardapio h2,
    .sobre h2,
    .cta h2 {
        font-size: 30px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .btn,
    .btnPecaAgora,
    .pedirPeloWhat {
        width: 100%;
        max-width: 280px;
        height: auto;
        padding: 12px;
    }

    .cta .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* =========================
   MOBILE PEQUENO
========================= */

@media (max-width: 480px) {
    
    .linkBurguer {
        font-size:18px;
        font-weight: 500;
    }
    .btnPecaAgora {
        cursor: pointer;
        width: 120px;
        height: 40px;
        text-align: center;
        padding-top: 8px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-stats strong {
        font-size: 22px;
    }

    footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    
    .linkBurguer {
        font-size:14px;
        font-weight: 400;
    }
    .btnPecaAgora {
        cursor: pointer;
        width: 110px;
        height: 40px;
        text-align: center;
        padding-top: 8px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-stats strong {
        font-size: 22px;
    }

    footer {
        grid-template-columns: 1fr;
    }
}
