:root {
    --primary: #ffb000;
    --primary-dark: #ff7a00;
    --secondary: #ff3d00;
    --dark: #150b08;
    --dark-soft: #25130e;
    --text: #f8efe8;
    --muted: #b9aaa1;
    --light: #fff8ef;
    --card: #21110d;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

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

a { text-decoration: none; }

.section-padding { padding: 96px 0; }
.section-padding-sm { padding: 56px 0; }

.custom-navbar {
    background: rgba(21, 11, 8, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.navbar-brand {
    color: var(--text) !important;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand span, .footer h3 span { color: var(--primary); }

.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark) !important;
}

.nav-link {
    color: var(--muted) !important;
    font-weight: 600;
    margin: 0 4px;
}

.nav-link:hover, .nav-link.active { color: var(--primary) !important; }

.navbar-toggler {
    border-color: rgba(255,255,255,.2);
    background: var(--primary);
}

.btn-order, .btn-primary-custom, .btn-outline-custom {
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-order, .btn-primary-custom {
    border: none;
    color: var(--dark) !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 14px 30px rgba(255, 176, 0, 0.25);
}

.btn-outline-custom {
    color: var(--text);
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.05);
}

.btn-primary-custom:hover, .btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(255, 176, 0, 0.35);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 72px;
    position: relative;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 176, 0, .18), transparent 35%),
        radial-gradient(circle at 80% 30%, rgba(255, 61, 0, .17), transparent 36%),
        linear-gradient(180deg, #150b08 0%, #1b0e0a 100%);
}

.hero-badge, .section-kicker, .product-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    background: rgba(255,176,0,.1);
    border: 1px solid rgba(255,176,0,.2);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .85rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero-section h1 {
    font-size: clamp(2.6rem, 7vw, 5.7rem);
    line-height: .94;
    letter-spacing: -0.075em;
    font-weight: 950;
    max-width: 760px;
}

.hero-text {
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.75;
    max-width: 590px;
    margin: 24px 0 28px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
    margin-top: 28px;
    font-size: .95rem;
}

.hero-info i { color: var(--primary); }

.hero-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
    border: 1px solid var(--border);
    border-radius: 36px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.hero-img {
    border-radius: 28px;
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.floating-tag, .hero-price-card {
    position: absolute;
    background: rgba(21, 11, 8, .86);
    border: 1px solid var(--border);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.top-tag {
    top: 38px;
    left: 38px;
    color: var(--primary);
    font-weight: 900;
    padding: 12px 16px;
    border-radius: 999px;
}

.hero-price-card {
    right: 38px;
    bottom: 38px;
    border-radius: 20px;
    padding: 16px;
    display: grid;
    gap: 4px;
}

.hero-price-card span { color: var(--primary); font-weight: 900; font-size: 1.3rem; }

.benefit-card, .product-card, .menu-card, .promo-card, .step-card, .review-card, .cta-box {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.benefit-card {
    padding: 24px;
    min-height: 150px;
    display: grid;
    gap: 8px;
}

.benefit-card i, .promo-card i { color: var(--primary); font-size: 1.6rem; }
.benefit-card strong { font-size: 1.05rem; }
.benefit-card span, .section-heading p, .product-card p, .menu-card p, .promo-card p, .step-card p, .review-card p, .cta-box p, .footer p { color: var(--muted); }

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px;
}

.section-heading h2, .promo-section h2, .cta-box h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 950;
    letter-spacing: -0.06em;
}

.product-card {
    overflow: hidden;
    height: 100%;
    transition: .25s ease;
}

.product-card:hover, .menu-card:hover { transform: translateY(-6px); border-color: rgba(255,176,0,.35); }

.product-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.product-content { padding: 22px; }
.product-content h3, .menu-card h3, .promo-card h3, .step-card h3 { font-weight: 900; letter-spacing: -0.04em; }

.product-footer, .menu-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

.product-footer strong, .menu-price strong { color: var(--primary); font-size: 1.25rem; }

.btn-add {
    border: 0;
    background: var(--primary);
    color: var(--dark);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 900;
    min-width: 48px;
    min-height: 44px;
}

.menu-section { background: #110805; }

.menu-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0 18px;
    margin-bottom: 20px;
    scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar { display: none; }

.menu-filter {
    border: 1px solid var(--border);
    background: rgba(255,255,255,.05);
    color: var(--text);
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 800;
    white-space: nowrap;
}

.menu-filter.active {
    background: var(--primary);
    color: var(--dark);
}

.menu-card {
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .25s ease;
}

.promo-section {
    background:
        linear-gradient(135deg, rgba(255,176,0,.16), rgba(255,61,0,.08)),
        #1a0d08;
}

.promo-card, .step-card, .review-card { padding: 28px; height: 100%; }

.step-card span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--primary);
    color: var(--dark);
    font-weight: 950;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.reviews-section { background: #120806; }
.stars { color: var(--primary); letter-spacing: 2px; margin-bottom: 16px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-grid img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--border);
}

.gallery-grid img:nth-child(1) { grid-column: span 2; }

.cta-box {
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer {
    padding: 72px 0 24px;
    background: #0b0403;
    border-top: 1px solid var(--border);
}

.footer h3 { font-weight: 950; }
.footer h4 { font-size: 1rem; color: var(--primary); font-weight: 900; margin-bottom: 18px; }
.footer a { display: block; color: var(--muted); margin-bottom: 10px; }
.footer a:hover { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 36px;
    padding-top: 22px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: .9rem;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    z-index: 99;
    box-shadow: 0 14px 40px rgba(37, 211, 102, .35);
}

.cart-bar {
    position: fixed;
    left: 50%;
    bottom: -120px;
    transform: translateX(-50%);
    width: min(680px, calc(100% - 28px));
    background: var(--light);
    color: var(--dark);
    border-radius: 22px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    z-index: 120;
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
    transition: .3s ease;
}

.cart-bar.show { bottom: 18px; }

.cart-bar div { display: grid; }
.cart-bar span { font-size: .9rem; }
.cart-bar button {
    border: 0;
    background: var(--dark);
    color: var(--text);
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 900;
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 14px;
        padding: 14px;
        background: rgba(21, 11, 8, .98);
        border-radius: 20px;
        border: 1px solid var(--border);
    }

    .hero-section { padding-top: 120px; min-height: auto; }
    .hero-img { height: 420px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 575px) {
    .section-padding { padding: 72px 0; }
    .hero-actions .btn { width: 100%; }
    .hero-info { display: grid; gap: 10px; }
    .hero-img { height: 340px; }
    .top-tag { top: 28px; left: 28px; }
    .hero-price-card { right: 28px; bottom: 28px; }
    .benefit-card { padding: 18px; min-height: 132px; }
    .product-card img { height: 210px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid img:nth-child(1) { grid-column: span 1; }
    .gallery-grid img { height: 240px; }
    .cta-box { padding: 28px; }
    .whatsapp-float { display: none; }
    .cart-bar { bottom: -140px; }
    .cart-bar.show { bottom: 12px; }
}
