* {
    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;
}

.btn {
    background: var(--primary);
    display: inline-block;
    padding: 12px 24px;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.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);
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-info {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: var(--gray);
    justify-content: center;
}

.brand-info>span {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.brand-details {
    display: flex;
    gap: 12px;
    font-size: 12px;
    margin-top: 3px;
}

.brand-details span {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    z-index: 999;
    padding: 10px 4%;
    gap: 15px;
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-actions {
    display:flex;
    align-items:center;
    gap:12px;
    margin-left: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
    margin-left: auto;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

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

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

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

.hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    margin-bottom: 20px;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 340px;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(135deg,
            #ff6b35,
            #ffb347);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, .25),
        0 0 40px rgba(255, 107, 53, .30);
    transition: .4s;
}

.hero-image img:hover {
    transform: scale(1.05);
}

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

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

.hero-stats li {
    display: flex;
    flex-direction: column;
}

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

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

.cardapio {
    padding: 80px 8%;
    text-align: center;
}

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

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

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

.produto {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

.produto:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.produto img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .4s;
}

.produto:hover img {
    transform: scale(1.06);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
}

.produto h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: var(--dark);
}

.produto p {
    padding: 0 20px;
    color: #777;
    font-size: 15px;
    line-height: 1.6;
}

.produto strong {
    display: block;
    padding: 15px 20px;
    font-size: 26px;
    color: var(--primary);
    font-weight: bold;
}

.produto .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: calc(100% - 40px);
    margin: 20px;
    margin-top: auto;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: .3s;
    cursor: pointer;
}

.produto .btn:hover {
    background: #e55a2b;
}

.favorito-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

.favorito-btn:hover {
    transform: scale(1.12);
}

.favorito-btn.ativo {
    background: #fff0f0;
}

.favoritos-section {
    padding: 50px 8% 20px;
    text-align: center;
    background: var(--light);
}

.favoritos-section h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.favoritos-section p {
    color: var(--gray);
    margin-bottom: 40px;
}

.busca-box {
    max-width: 420px;
    margin: 0 auto 40px;
}

.busca-box input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .06);
    transition: .3s;
}

.busca-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(255, 107, 53, .2);
}

.busca-sem-resultado {
    color: var(--gray);
    font-size: 16px;
    margin: 20px 0 40px;
}

.categoria-filtros {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.categoria-btn {
    border: 1px solid #ddd;
    background: white;
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.categoria-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.categoria-btn.ativa {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.carregando-cardapio {
    grid-column: 1 / -1;
    color: var(--gray);
    font-size: 16px;
    padding: 40px 0;
}

.busca-historico {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.historico-feedback {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
}

.historico-feedback.erro {
    color: #dc3545;
}

.tag-status {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    background: #d4edda;
    color: #1e7e34;
}

.busca-historico input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.historico-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.historico-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 14px 16px;
    background: var(--light);
}

.historico-card-topo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
}

.historico-itens {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 8px;
}

.historico-card-rodape {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--gray);
}

.historico-card-rodape strong {
    color: var(--primary);
    font-size: 16px;
}

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

.sobre img {
    border-radius: var(--radius);
    box-shadow: 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;
}

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

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

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

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

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

.copy p {
    margin: 0;
    color: #cfcfcf;
}

.developer-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.developer-link:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    z-index: 999;
    transition: .3s;

}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.top-button {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 22px;
    cursor: pointer;
    display: none;
    z-index: 999;
}

.cart {
    position: fixed;
    top: 0;
    right: -400px;
    width: 360px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, .15);
    transition: .4s;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.cart.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.cart-header button {
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
}

#cart-items {
    flex: 1;
    overflow: auto;
    padding: 20px;
}

.cart-icon {
    position: relative;
    width:42px;
    height:42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff3ec;
    font-size:20px;
    cursor: pointer;
    transition: .3s;
}

.cart-icon:hover {
    transform: scale(1.08);
}

.btn-header {
    border-radius: 30px;
    padding: 10px 18px;
    font-size: 14px;
    white-space: nowrap;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #ddd;
}

#cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

.cart-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item h4 {
    margin-bottom: 5px;
}

.cart-item p {
    color: var(--primary);
    font-weight: bold;
}

.cart-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
}

.cart-controls button {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
}

.cart-controls button:hover {
    filter: brightness(.9);
}

.remover {
    margin-top: 10px;
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}

.remover:hover {
    background: #bb2d3b;
}

.produto .btn:disabled {
    background: #28a745;
    cursor: default;
}

.aviso-pedido-minimo {
    display: none;
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffe69c;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
}

#send-order.btn-bloqueado,
#send-order:disabled {
    background: var(--gray);
    cursor: not-allowed;
    opacity: .7;
}

.cupom-box {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.cupom-box input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-cupom {
    background: var(--dark);
    color: white;
    border: none;
    padding: 0 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
    transition: .3s;
}

.btn-cupom:hover {
    filter: brightness(1.2);
}

.cupom-feedback {
    font-size: 12.5px;
    margin-bottom: 10px;
    min-height: 16px;
}

.cupom-feedback.sucesso {
    color: #1e7e34;
}

.cupom-feedback.erro {
    color: #dc3545;
}

.cupom-feedback .remover-cupom-link {
    background: none;
    border: none;
    color: #dc3545;
    text-decoration: underline;
    cursor: pointer;
    font-size: 12.5px;
    padding: 0;
}

.linha-desconto {
    display: none;
    justify-content: space-between;
    color: #1e7e34;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 5000;
}

.modal.active {
    display: flex;
}

.modal-content {
    width: 95%;
    max-width: 500px;
    max-height: 90vh;
    background: white;
    border-radius: 15px;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
}

.modal-body input,
.modal-body select,
.modal-body textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.modal-header button {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.delivery-type {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 10px 0;
}

.delivery-type label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;

}

.delivery-type input {
    margin: 0;

}

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
    margin-bottom: -2px;
}

.delivery-type {
    display: flex;
    gap: 15px;
}

.delivery-card {
    flex: 1;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s;
    font-weight: 600;
}

.delivery-card:hover {
    border-color: #ff6b35;
}

.delivery-card input {
    display: none;
}

.delivery-card:has(input:checked) {
    border-color: #ff6b35;
    background: #fff3ec;
}

.delivery-card .icon {
    font-size: 22px;
}

.order-summary {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.order-summary h4 {
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-item.total {
    font-weight: bold;
    font-size: 18px;
    color: #ff6b35;
}

#linha-desconto-modal {
    color: #1e7e34;
    font-weight: bold;
    
}.status-loja {
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.status-loja.aberta {
    background: #2e7d32;
}

.status-loja.fechada {
    background: #c62828;
}

.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
}

.logo-text span {
    font-size: 1.6rem;
    font-weight: 800;
    color: #222;
}

.contato-empresa {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contato-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.contato-text h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.contato-text p {
    margin: 1px;
    color: #ddd;
    font-size: 0.95rem;
}

@media (max-width: 768px) {

    .header-actions {
        gap: 15px;
    }

    .btn-header {
        display: none;
    }

    header {
        padding: 12px 20px;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .menu-toggle {
        display: block;
    }


    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 20px;
        padding: 30px;
        transition: 0.3s;
    }


    .nav-menu.active {
        left: 0;
    }

    .produto .btn {
        width: calc(100% - 30px);
        margin: 15px;
        padding: 10px;
        font-size: 14px;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }


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


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


    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }


    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }


    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
    }


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


    .hero-image img {
        width: 280px;
        height: 280px;
        margin: auto;
    }

    .cardapio {
        padding: 50px 20px;
    }


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

    .produto img {
        height: 180px;
    }


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

    .sobre {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 20px;
    }


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


    .sobre ul {
        text-align: left;
    }

    .cta {
        padding: 50px 20px;
    }


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

    footer {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .status-loja {
        width: 100%;
        justify-content: center;
        margin: 15px 0;
    }

    .brand-info,
    .status-loja {
        display: none;
    }

    .brand-area {
        flex: 1;
    }

    .logo {
        font-size: 24px;
    }

}