/* =========================
   RESET
========================= */

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

:root {
    --bg: #070707;
    --bg-secondary: #0f0f0f;

    --card: rgba(255, 255, 255, 0.04);
    --card-hover: rgba(255, 255, 255, 0.06);

    --border: rgba(255, 255, 255, 0.08);

    --text: #ffffff;
    --text-secondary: #b7b7b7;

    --primary: #ff7a00;
    --primary-light: #ff9d42;

    --gradient:
        linear-gradient(135deg,
            #ff7a00 0%,
            #ff4d00 100%);

    --shadow:
        0 20px 60px rgba(0, 0, 0, .45);

    --radius: 28px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;

    background:
        radial-gradient(circle at top left,
            rgba(255, 122, 0, .14),
            transparent 28%),

        radial-gradient(circle at top right,
            rgba(255, 77, 0, .12),
            transparent 26%),

        var(--bg);

    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, .015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .015) 1px, transparent 1px);

    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
}

.header.scrolled {
    background: rgba(7, 7, 7, .92);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .4);
}

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

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

button,
input {
    font-family: inherit;
}

/* =========================
   GLOBAL
========================= */

.container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 24px;
}

section {
    position: relative;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 122, 0, .4);
    border-radius: 999px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(22px);
    background: rgba(7, 7, 7, .55);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: .3s;
}

.nav {
    height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 1.15rem;
    font-weight: 800;

    letter-spacing: .5px;
}

.logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

.header-btn {
    background: var(--gradient);
    color: white;
    padding: 14px 22px;
    border-radius: 16px;
    font-weight: 700;
    transition: .3s;

    box-shadow:
        0 12px 30px rgba(255, 122, 0, .25);
}

.header-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 40px rgba(255, 122, 0, .35);
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 140px;
}

.hero::after {
    content: "";
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;

    background:
        linear-gradient(to bottom,
            transparent,
            rgba(7, 7, 7, .95));

    pointer-events: none;
}

.hero-bg {
    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter:
        brightness(.45) saturate(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(7, 7, 7, 1) 0%,
            rgba(7, 7, 7, .4) 45%,
            rgba(7, 7, 7, .6) 100%);
}

.hero::before {
    content: "";
    position: absolute;

    width: 700px;
    height: 700px;

    background:
        radial-gradient(circle,
            rgba(255, 122, 0, .22),
            transparent 70%);

    top: -240px;
    right: -180px;

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;

    background:
        rgba(255, 255, 255, .06);

    border:
        1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(18px);
    margin-bottom: 28px;
    font-size: .95rem;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(3.2rem, 8vw, 6rem);
    line-height: .95;
    letter-spacing: -3px;
    margin-bottom: 8px;
    font-weight: 800;
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 580px;
}

.hero-buttons {
    margin-top: 42px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    min-height: 60px;
    padding: 18px 28px;
    border-radius: 18px;
    font-weight: 700;
    transition: .35s;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient);
    color: white;

    box-shadow:
        0 18px 40px rgba(255, 122, 0, .28);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, .12);

    background:
        rgba(255, 255, 255, .04);

    backdrop-filter: blur(12px);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform:
        translateY(-4px) scale(1.01);
}

/* =========================
   HERO EXTRAS
========================= */

.delivery-apps {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;

    margin-top: 0;
}

.delivery-apps span {
    height: 42px;

    display: flex;
    align-items: center;

    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    font-size: .85rem;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.stat {
    min-width: 100px;
}

.stat strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: var(--primary);
}

.stat span {
    font-size: .85rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* =========================
   PROMO BANNER
========================= */

.promo-banner {
    padding: 0 0 40px;
}

.promo-box {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding: 50px;
    border-radius: 34px;
    text-align: center;

    background: var(--gradient);

    box-shadow:
        0 30px 80px rgba(255, 122, 0, .25);
}

.promo-box::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, .25),
            transparent 70%);

    top: -250px;
    right: -150px;
}

.promo-box h2 {
    font-size: 2rem;
    margin: 10px 0;
}

.promo-box p {
    opacity: .95;
}

.promo-box span {
    display: block;
    margin-top: 20px;
    font-size: 2rem;
    font-weight: 800;
}

/* =========================
   SEARCH
========================= */

.search-section {
    padding: 50px 0 30px;
}

.search-box {
    position: relative;
}

.search-box::before {
    content: "🔍";
    position: absolute;

    left: 24px;
    top: 50%;

    transform: translateY(-50%);
    font-size: 1rem;
    opacity: .7;
}

.search-box input {
    width: 100%;
    height: 74px;

    background:
        rgba(255, 255, 255, .03);

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 22px;
    padding: 0 24px 0 60px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: .3s;
}

.search-box input:focus {
    border-color:
        rgba(255, 122, 0, .5);

    box-shadow:
        0 0 0 4px rgba(255, 122, 0, .12);
}

/* =========================
   CATEGORIES
========================= */

.categories {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 999;

    background: rgba(7, 7, 7, .92);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .4);

    border-bottom: 1px solid rgba(255, 255, 255, .06);

    transform: translateY(-120%);
    opacity: 0;
    transition: all .3s ease;
}

.categories.show-categories {
    transform: translateY(0);
    opacity: 1;
}

.categories-wrapper {
    display: flex;
    gap: 14px;

    overflow-x: auto;

    padding: 20px 0;
}

.categories-wrapper::-webkit-scrollbar {
    display: none;
}

.category-btn {
    border: none;

    background:
        rgba(255, 255, 255, .04);

    color: white;
    padding: 14px 22px;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition: .3s;

    border:
        1px solid rgba(255, 255, 255, .05);

    font-weight: 600;
}

.category-btn:hover {
    background:
        rgba(255, 255, 255, .08);
}

.category-btn.active {
    background: var(--gradient);

    box-shadow:
        0 10px 30px rgba(255, 122, 0, .25);
}

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

.menu {
    padding: 70px 0 120px;
}

.menu-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}

.card {
    position: relative;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .05),
            rgba(255, 255, 255, .025));

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 32px;
    overflow: hidden;
    backdrop-filter: blur(18px);
    transition: .45s;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .35);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(255, 122, 0, .12),
            transparent 45%);

    opacity: 0;
    transition: .35s;
}

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

    border-color:
        rgba(255, 122, 0, .4);

    box-shadow:
        0 35px 90px rgba(255, 122, 0, .12);
}

.card:hover::before {
    opacity: 1;
}

.card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .8s;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .55),
            transparent 45%);

    pointer-events: none;
}

.card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
}

.card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    color: #c9c9c9;
    font-size: .85rem;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    font-weight: 700;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: .98rem;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.price {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary);
}

.order-btn {
    background: var(--gradient);
    color: white;
    padding: 13px 18px;
    border-radius: 14px;
    font-weight: 700;
    transition: .3s;
    white-space: nowrap;
}

.order-btn:hover {
    transform: scale(1.03);
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
    background: var(--gradient);
    color: white;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;

    box-shadow:
        0 10px 20px rgba(255, 122, 0, .25);
}

.promo {
    background:
        linear-gradient(135deg,
            #ff2d2d,
            #ff6b00);
}

/* =========================
   REVIEWS
========================= */

.reviews {
    padding: 120px 0;
}

.reviews-title {
    text-align: center;
    font-size: 2.7rem;
    margin-bottom: 50px;
}

.review-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}

.review-card {
    background:
        rgba(255, 255, 255, .04);

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 30px;
    padding: 30px;
    backdrop-filter: blur(18px);
    transition: .3s;
}

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

.review-card strong {
    display: block;
    color: #ffd43b;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.review-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* =========================
   DELIVERY
========================= */

.delivery {
    padding-bottom: 120px;
}

.delivery-box {
    background:
        linear-gradient(135deg,
            rgba(255, 122, 0, .08),
            rgba(255, 255, 255, .02));

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 34px;
    padding: 42px;
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
    backdrop-filter: blur(18px);
}

.delivery-item {
    background:
        rgba(255, 255, 255, .03);

    border:
        1px solid rgba(255, 255, 255, .05);

    border-radius: 22px;
    padding: 24px;
    text-align: center;
    font-weight: 600;
    transition: .3s;
}

.delivery-item:hover {
    transform: translateY(-4px);

    background:
        rgba(255, 255, 255, .05);
}

/* =========================
   LOCATION
========================= */

.location {
    padding-bottom: 120px;
}

.location-box {
    text-align: center;
    padding: 60px;
    border-radius: 34px;

    background:
        rgba(255, 255, 255, .03);

    border:
        1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);
}

.location-box h2 {
    margin-bottom: 18px;
    font-size: 2rem;
}

.location-box p {
    color: var(--text-secondary);
    margin-top: 10px;
}

/* =========================
   FOOTER
========================= */

.footer {
    padding: 70px 20px;

    border-top:
        1px solid rgba(255, 255, 255, .06);

    text-align: center;

    background:
        rgba(255, 255, 255, .015);
}

.footer h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.footer p {
    color: var(--text-secondary);
    margin-top: 10px;
    line-height: 1.8;
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float {
    position: fixed;

    right: 24px;
    bottom: 24px;
    height: 62px;
    padding: 0 22px;

    border-radius: 999px;

    background: var(--gradient);

    display: flex;
    align-items: center;
    gap: 10px;

    z-index: 999;
    font-weight: 700;

    box-shadow:
        0 15px 40px rgba(255, 122, 0, .35);

    transition: .35s;
}

.whatsapp-float::after {
    content: "Pedir Agora";
}

.whatsapp-float:hover {
    transform:
        translateY(-4px) scale(1.03);

    box-shadow:
        0 25px 60px rgba(255, 122, 0, .45);
}

/* =========================
   REVEAL
========================= */

.reveal {
    opacity: 0;

    transform:
        translateY(50px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.active {
    opacity: 1;

    transform:
        translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .menu-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .hero {
        min-height: 92vh;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .delivery-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .logo {
        font-size: 1rem;
        gap: 10px;
    }

    .logo img {
        width: 38px;
        height: 38px;
    }

    .hero-stats {
        width: 100%;
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .stat {
        min-width: auto;
        padding: 12px;
        border-radius: 16px;
        background: rgba(255, 255, 255, .03);
        border: 1px solid rgba(255, 255, 255, .05);
    }

    .stat strong {
        font-size: 1.4rem;
    }

    .delivery-apps {
        gap: 8px;
        justify-content: center;
    }

    .delivery-apps span {
        height: 36px;
        padding: 0 12px;
        font-size: .78rem;
    }

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

    .promo-box {
        padding: 35px 24px;
    }

    .promo-box h2 {
        font-size: 1.6rem;
    }

    .location-box {
        padding: 35px 20px;
    }

    .container {
        padding: 0 18px;
    }

    .nav {
        height: 78px;
    }

    .categories {
        top: 78px;
    }

    .header-btn {
        display: none;
    }

    .hero {
        padding-top: 110px;
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-content {
        text-align: center;
        margin: auto;
    }

    .hero h1 {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        margin-top: 12px;
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .card {
        border-radius: 24px;
    }

    .card img {
        height: 220px;
    }

    .card-content {
        padding: 18px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .search-section {
        padding-top: 34px;
    }

    .search-box input {
        height: 66px;
    }

    .menu {
        padding-top: 50px;
    }

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

    .card img {
        height: 240px;
    }

    .card-content {
        padding: 22px;
    }

    .card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-btn {
        width: 100%;
        text-align: center;
    }

    .delivery {
        padding-bottom: 90px;
    }

    .delivery-box {
        padding: 24px;
        border-radius: 28px;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
        min-width: 58px;
        padding: 0;
        border-radius: 50%;
        right: 14px;
        bottom: 14px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .whatsapp-float span {
        font-size: 1.5rem;
        line-height: 1;
    }

    .whatsapp-float::after {
        display: none;
    }

    .hero {
        padding-bottom: 40px;
    }

    .hero::after {
        height: 80px;
    }

    .promo-banner {
        padding-bottom: 20px;
    }

    .reviews {
        padding: 60px 0;
    }

    .delivery {
        padding-bottom: 60px;
    }

    .location {
        padding-bottom: 60px;
    }

    .menu {
        padding: 30px 0 60px;
    }

    .search-section {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-badge {
        width: 100%;
        justify-content: center;
    }

    .category-btn {
        padding: 13px 18px;
        font-size: .92rem;
    }

    .card h3 {
        font-size: 1.25rem;
    }

    .price {
        font-size: 1.3rem;
    }
}

html {
    scroll-padding-top: 120px;
}

.card,
.review-card,
.delivery-item,
.location-box,
.search-box input {
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

::selection {
    background: var(--primary);
    color: white;
}

.product-count {
    margin-top: 16px;
    color: #b7b7b7;
    font-size: .95rem;
}

@media (max-width:700px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    section {
        overflow: hidden;
    }

    .promo-box,
    .location-box,
    .delivery-box {
        border-radius: 24px;
    }

    .reviews-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

.footer-divider {
    width: 120px;
    height: 1px;
    margin: 28px auto 22px;

    background:
        rgba(255, 255, 255, .1);
}

.footer-dev {
    font-size: .9rem;
    color: #8d8d8d;
}

.footer-dev a {
    color: var(--primary);
    font-weight: 600;
    transition: .3s;
}

.footer-dev a:hover {
    color: var(--primary-light);
}

.logo {
    cursor: pointer;
    transition: .3s;
}

.logo:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.card::before, .card::after 
{ 
    display: none; 
}

.header {
    z-index: 9999;
}

.header-btn {
    position: relative;
    z-index: 10000;
}