/* ═══════════════════════════════════════════════════════
   Smash028 Cinematic Design System
   Glassmorphism + Food Luxury + Professional Polish
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Outfit:wght@300;400;600;800;900&display=swap');

:root {
    --black: #0F0F10;
    --dark: #17181C;
    --primary: #FF6B1A;
    --accent: #E63946;
    --gold: #F4B942;
    --cream: #F8F4EE;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --blur: 15px;
    --radius: 20px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.brand {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.text-orange {
    color: var(--primary);
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

/* ═══════════════════════ NAVBAR ═══════════════════════ */
.navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    padding: 8px 5%;
    background: rgba(15, 15, 16, 0.97);
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.brand {
    font-size: 1.3rem;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-cta {
    font-size: 0.8rem;
    padding: 10px 22px;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.cta-btn {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(255, 107, 26, 0.25);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 107, 26, 0.4);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.75rem;
}

.cta-big {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
}

.hero-img {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-img.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    padding-top: calc(var(--nav-height) + 20px);
    width: 100%;
    max-width: 1200px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.badge-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
}

.badge-status.open {
    border-color: #4ade80;
}

.badge-status.closed {
    border-color: var(--accent);
}

.badge-delivery {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse-dot 2s infinite;
}

.badge-status.closed .status-dot {
    background: #ef4444;
    box-shadow: 0 0 8px #ef4444;
    animation: pulse-dot-red 2s infinite;
}

@keyframes pulse-dot-red {

    0%,
    100% {
        box-shadow: 0 0 4px #ef4444;
    }

    50% {
        box-shadow: 0 0 16px #ef4444;
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 4px #4ade80;
    }

    50% {
        box-shadow: 0 0 16px #4ade80;
    }
}

.hero-titles-container {
    display: grid;
    min-height: 180px;
    margin-bottom: 24px;
}

.hero-title-layer {
    grid-area: 1 / 1;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 0.95;
    display: none;
    pointer-events: none;
}

.hero-title-layer.active {
    display: block;
    pointer-events: auto;
}

.info-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 12px 20px;
    align-items: center;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.divider {
    opacity: 0.3;
}

.btn-more {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.75rem;
    transition: 0.3s;
    margin-left: auto;
}

.btn-more:hover {
    background: var(--primary);
    color: #fff;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* ═══════════════════════ SECTIONS ═══════════════════════ */
section {
    padding: 80px 5%;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 50px;
}

/* Diferenciais */
.diff-card {
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.diff-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.diff-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    display: block;
}

.diff-card p {
    color: var(--cream);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-top: 10px;
}

.diff-card h3 {
    color: var(--cream);
}

/* ═══════════════════════ BANNER CAROUSEL ═══════════════════════ */
.banner-carousel {
    position: relative;
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    background: var(--black);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.carousel-track img {
    min-width: 100%;
    max-height: 420px;
    object-fit: cover;
    flex-shrink: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    z-index: 5;
    transition: 0.3s;
}

.carousel-btn:hover {
    background: var(--primary);
}

.carousel-btn.prev {
    left: 12px;
}

.carousel-btn.next {
    right: 12px;
}

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

@media(max-width:768px) {
    .banner-carousel {
        max-height: 200px;
    }

    .carousel-track img {
        max-height: 200px;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* ═══════════════════════ CARD GRID ═══════════════════════ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-grid.triple {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ═══════════════════════ PRODUCT CARDS ═══════════════════════ */
.product-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
}

.card-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img {
    transform: scale(1.08);
}

.card-body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.card-desc {
    opacity: 0.6;
    font-size: 0.82rem;
    margin-bottom: auto;
    line-height: 1.5;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
}

.price-tag {
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    color: var(--gold);
}

.badge-featured {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    z-index: 5;
    letter-spacing: 0.03em;
}

.product-card.featured {
    border: 1.5px solid var(--primary);
}

/* ═══════════════════════ CATEGORY TABS ═══════════════════════ */
.category-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 0 5%;
}

.cat-tab {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--cream);
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
    transition: 0.3s;
    font-family: 'Outfit', sans-serif;
}

.cat-tab:hover,
.cat-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ═══════════════════════ MANIFESTO ═══════════════════════ */
.manifesto {
    text-align: center;
}

.manifesto-inner {
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-label {
    font-size: 1rem;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
    opacity: 0.5;
}

.manifesto-text {
    font-size: clamp(1.6rem, 4vw, 3rem);
    line-height: 1.25;
}

/* CTA Final */
.final-cta {
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 30px;
}

/* ═══════════════════════ MODAL ═══════════════════════ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    max-width: 560px;
    width: 92%;
    margin: 40px auto;
    padding: 32px;
    background: var(--dark);
    border: 1px solid var(--glass-border);
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

.modal-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.modal-step.active {
    display: block;
}

.modal-subtitle {
    opacity: 0.5;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

/* Modal Product Header */
.modal-product-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.modal-product-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--glass-border);
}

.modal-product-header h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

/* Order Summary */
.order-summary {
    padding: 16px;
    margin-bottom: 16px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 0;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--gold);
    border-top: 1px solid var(--primary);
    margin-top: 8px;
}

/* Select Fix — dark dropdown with readable text */
select.glass-input option {
    background: #1a1a1e;
    color: #fff;
    padding: 10px;
}

/* Form Section Title */
.form-section-title {
    margin: 20px 0 12px;
    font-size: 0.9rem;
    opacity: 0.6;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Coupon Section */
.coupon-section {
    margin-bottom: 16px;
    padding: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

/* Bonus Extra Cost Message */
.bonus-extra-msg {
    font-size: 0.75rem;
    color: var(--gold);
    padding: 2px 0 6px;
    margin: 0;
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s;
    background: none;
    border: none;
    color: var(--cream);
}

.close-btn:hover {
    opacity: 1;
}

.w-100 {
    width: 100%;
    margin-top: 16px;
}

.glass-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 13px 16px;
    border-radius: 12px;
    color: white;
    margin-bottom: 12px;
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.glass-input:focus {
    border-color: var(--primary);
}

select.glass-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-group {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.addons-grid,
.upsell-grid {
    display: grid;
    gap: 8px;
    margin: 16px 0;
    max-height: 260px;
    overflow-y: auto;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid var(--glass-border);
}

.bonus-section {
    padding: 16px;
    margin: 16px 0;
    border: 1px dashed var(--primary);
}

.bonus-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 0.85rem;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-control button {
    background: var(--primary);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 800;
    transition: 0.2s;
}

.qty-control button:hover {
    transform: scale(1.1);
}

.observation-box label {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 4px;
}

/* Info Modal */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.info-box {
    padding: 14px;
    text-align: center;
}

.info-box label,
.info-full label {
    font-size: 0.7rem;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.info-box p {
    font-weight: 800;
}

.info-full {
    padding: 14px;
    margin-top: 14px;
}

.sub-text {
    opacity: 0.6;
    font-size: 0.85rem;
    margin-top: 4px;
}

.pay-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.pay-tag {
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
}

/* ═══════════════════════ FOOTER ═══════════════════════ */
footer {
    background: var(--dark);
    padding: 50px 5% 25px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-desc {
    opacity: 0.5;
    margin-top: 10px;
    font-size: 0.85rem;
}

.footer-copy {
    text-align: center;
    opacity: 0.25;
    font-size: 0.75rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

/* ═══════════════════════ ANIMATIONS ═══════════════════════ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════ MOBILE ═══════════════════════ */
@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
    }

    .navbar {
        height: 70px;
        padding: 0 15px;
    }

    .navbar .logo-wrap {
        order: 2;
        margin-right: auto;
        margin-left: 10px;
    }

    .nav-right {
        order: 3;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        order: 1;
        /* Move to left */
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #0f0f10;
        /* Fundo 100% solido e fosco */
        flex-direction: column;
        padding: 100px 30px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-right: 1px solid var(--glass-border);
    }

    .nav-links.open {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 0 5%;
        padding-top: calc(var(--nav-height) + 15px);
    }

    .hero-titles-container {
        min-height: 160px;
    }

    .hero-title-layer {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .info-strip {
        gap: 8px;
        padding: 10px 14px;
        justify-content: center;
    }

    .card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .card-img-wrap {
        height: 140px;
    }

    .card-body {
        padding: 12px;
    }

    .card-body h3 {
        font-size: 0.9rem;
    }

    .card-desc {
        font-size: 0.75rem;
    }

    .price-tag {
        font-size: 1rem;
    }

    .btn-sm {
        padding: 6px 12px;
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .category-tabs {
        gap: 6px;
    }

    .cat-tab {
        padding: 6px 14px;
        font-size: 0.72rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-desc {
        margin-top: 4px;
        margin-bottom: 15px;
    }

    .hide-mobile {
        display: none !important;
    }
}

@media (max-width: 420px) {
    .card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card-img-wrap {
        height: 180px;
    }
}