/* ============================================================
   TRIP BURGER — CSS Stylesheet
   Design: Dark Forge Premium — Industrial Dark Gourmet
   Colors: #0a0a0a (bg), #8C2493 (purple), #CC2200 (red CTA)
   Fonts: Bebas Neue (display), Oswald (headings), Inter (body)
   Mobile: inputs 16px (evita zoom iOS), touch targets 44px+
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #f0f0f0;
    line-height: 1.6;
}

/* ========== TYPOGRAPHY ========== */
.font-display {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.04em;
}

.font-heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.text-gold {
    color: white;
}

/* ========== UTILITIES ========== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-label {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-size: 1.5rem;
    color: #ee00ff;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8C2493, #CC2200);
    margin: 0 auto 1.5rem auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fff;
    line-height: 1;
}

/* ========== BUTTONS ========== */
.btn-cta {
    background-color: #CC2200;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.85rem 2.5rem;
    border-radius: 30px;
    border: 2px solid #CC2200;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-cta:hover {
    background-color: transparent;
    color: #CC2200;
    box-shadow: 0 0 20px rgba(204, 34, 0, 0.4);
}

.btn-cta.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

.btn-cta.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.btn-outline-gold {
    background-color: transparent;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border-radius:30px;
    border: 2px solid #8C2493;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-outline-gold:hover {
    background-color: #8C2493;
    color: #0a0a0a;
}

.btn-outline-gold.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
    backdrop-filter: none;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 15px;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    line-height: 1;
    color: white;
}

.logo-text::first-line {
    color: #8C2493;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #8C2493;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        gap: 1.2rem;
        padding: 1rem 2rem 2rem;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
    margin-top: 60px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;  /* parallax nativo — suave e sem JS */
    filter: brightness(0.45);
}

/* No mobile, background-attachment:fixed causa bugs no iOS — desabilitar */
@media (max-width: 768px) {
    .hero-background {
        background-attachment: scroll;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.1) 40%, rgba(10, 10, 10, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 900px;
}

.hero-content p {
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.95;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-title-gold {
    color: #8C2493;
    text-shadow: 0 4px 30px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    line-height: 1;
    color: #ffffff;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    color: #ccc;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.5;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #fff, transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== DIFERENCIAIS SECTION ========== */
.diferenciais {
    background: #0d0d0d;
    padding: 6rem 1.5rem;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.diferencial-card {
    background: #141414;
    border: 1px solid rgba(232, 228, 235, 0.12);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.diferencial-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-4px);
}

.diferencial-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.diferencial-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #8C2493;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.diferencial-label {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.diferencial-desc {
    font-family: 'Inter', sans-serif;
    color: #888;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ========== CARDÁPIO SECTION ========== */
.cardapio {
    background: #0a0a0a;
    padding: 6rem 1.5rem;
}

.cardapio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
    align-items: start; /* Impede que os cards estiquem e "abram" juntos */
}

.burger-card {
    background: #141414;
    border: 1px solid #4f2f52;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.burger-card:hover {
    transform: translateY(-4px);
    border-color: #8C2493;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5), 0 0 16px rgba(140,36,147, 0.12);
}

.burger-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;   /* quadrado */
}

.burger-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.burger-card:hover .burger-image img {
    transform: scale(1.07);
}

.burger-tag {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    color: #fff;
    padding: 0.2rem 0.55rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.burger-content {
    padding: 0.85rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.burger-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.35rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.burger-desc-wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
}

.burger-desc {
    font-family: 'Inter', sans-serif;
    color: #777;
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 0;
    
    /* Limitar a 3 linhas por padrão */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
}

.burger-desc-wrap.expanded .burger-desc {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

.btn-ver-mais {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: #8C2493;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    margin-top: 0.25rem;
    transition: color 0.2s;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-ver-mais:hover {
    color: #b030c0;
}

.btn-ver-mais-ativo {
    color: #cc2200;
}

.btn-ver-mais-ativo:hover {
    color: #ff4422;
}

.burger-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: auto;
}

.burger-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: #fc0000;
    white-space: nowrap;
}

.cardapio-footer {
    text-align: center;
}

/* ========== DEPOIMENTOS SECTION ========== */
.depoimentos {
    background: #0d0d0d;
    padding: 6rem 1.5rem;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.depoimento-card {
    background: #141414;
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    padding: 1.75rem;
    transition: border-color 0.3s;
}

.depoimento-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
}

.stars {
    color: #FBBC04;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.depoimento-text {
    font-family: 'Inter', sans-serif;
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.depoimento-author {
    font-family: 'Oswald', sans-serif;
    color: #8C2493;
    font-size: 1rem;
    font-weight: 600;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, #5131634d 0%, #0a0a0a 50%, #5131634d 100%);
    border-top: 1px solid #a018ee4d;
    border-bottom: 1px solid #a018ee4d;
    padding: 5rem 1.5rem;
    text-align: center;
}

.cta-banner .container {
    max-width: 700px;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 1rem;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    color: #aaa;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* ========== LOCALIZAÇÃO SECTION ========== */
.localizacao {
    background: #0a0a0a;
    padding: 6rem 1.5rem;
}

.localizacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.localizacao-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1rem;
    background: #141414;
    border: 1px solid #a018ee4d;
    border-radius: 8px;
    padding: 1.25rem;
}

.info-icon {
    font-size: 1.5rem;
}

.info-title {
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.info-text {
    font-family: 'Inter', sans-serif;
    color: #807f7f;
    font-size: 0.95rem;
    line-height: 1.6;
}

.localizacao-map {
    background: #141414;
    border: 1px solid #a018ee4d;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 768px) {
    .localizacao-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== FOOTER ========== */
.footer {
    background: #050505;
    border-top: 1px solid #a018ee4d;
    padding: 3rem 1.5rem;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-logo {
    line-height: 1;
}

.footer-logo .logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-family: 'Oswald', sans-serif;
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #a018ee4d;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: #141414;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: border-color 0.3s, transform 0.3s;
}

.social-icon-whats {
    width: 47px;
    height: auto;
    background: #141414;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: border-color 0.3s, transform 0.3s;
}

.social-icon-whats:hover {
    transform: translateY(-3px);
}

.social-icon:hover {

    transform: translateY(-3px);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-text {
    font-family: 'Inter', sans-serif;
    color: #555;
    font-size: 1rem;
}

.criador {
    font-family: 'Inter', sans-serif;
    color: #555;
    font-size: 1rem;
}

.criador-link {
    text-decoration: none;
    color: rgb(241, 129, 0)
}


/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: waPulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ========== ANIMATIONS ========== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .navbar-container {
        padding: 1rem 1.5rem;
    }
    
    .hero {
        margin-top: 50px;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .btn-cta, .btn-outline-gold {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .diferencial-card {
        padding: 1.5rem 1rem;
    }
    
    .cardapio-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== BTN CARRINHO NAVBAR ========== */
.btn-carrinho-nav {
    position: relative;
    background: transparent;
    border: 2px solid #8C2493;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.45rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-carrinho-nav:hover {
    background: #8C2493;
    color: #fff;
    box-shadow: 0 0 18px rgba(140, 36, 147, 0.5);
}

.carrinho-badge {
    background: #CC2200;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    animation: badgePop 0.3s ease;
}

@keyframes badgePop {
    0% { transform: scale(0.5); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ========== BTN ADICIONAR AO CARRINHO ========== */
.btn-add-cart {
    background: #8C2493;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.72rem;
    padding: 0.4rem 0.85rem;
    border-radius: 30px;
    border: 2px solid #8C2493;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-add-cart:hover {
    background: transparent;
    color: #8C2493;
    box-shadow: 0 0 12px rgba(140, 36, 147, 0.4);
}

.btn-add-cart.added {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

/* ========== CARRINHO OVERLAY + DRAWER ========== */
.carrinho-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(3px);
}

.carrinho-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.carrinho-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100vw;
    height: 100%;
    background: #111;
    border-left: 1px solid #4f2f52;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.6);
}

.carrinho-drawer.open {
    right: 0;
}

.carrinho-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.5rem;
    border-bottom: 1px solid #2a1a2e;
    background: #0d0d0d;
}

.carrinho-titulo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    color: #fff;
    letter-spacing: 0.05em;
}

.carrinho-fechar {
    background: transparent;
    border: none;
    color: #888;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.carrinho-fechar:hover {
    color: #fff;
    background: #2a1a2e;
}

.carrinho-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
}

.carrinho-body::-webkit-scrollbar {
    width: 5px;
}
.carrinho-body::-webkit-scrollbar-track { background: #111; }
.carrinho-body::-webkit-scrollbar-thumb { background: #4f2f52; border-radius: 3px; }

.carrinho-vazio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 200px;
    color: #555;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.carrinho-vazio-icon {
    font-size: 3.5rem;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.carrinho-vazio-sub {
    font-size: 0.85rem;
    color: #444;
}

.carrinho-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.carrinho-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: #181818;
    border: 1px solid #2a1a2e;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    animation: itemSlideIn 0.3s ease;
}

@keyframes itemSlideIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.item-info {
    flex: 1;
}

.item-nome {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    display: block;
    margin-bottom: 0.2rem;
}

.item-preco-unit {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #666;
}

.item-controles {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.item-qty-btn {
    background: #2a1a2e;
    border: 1px solid #4f2f52;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-qty-btn:hover {
    background: #8C2493;
    border-color: #8C2493;
}

.item-qty {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    min-width: 24px;
    text-align: center;
}

.item-subtotal {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: #fc0000;
    min-width: 70px;
    text-align: right;
}

.item-remover {
    background: transparent;
    border: none;
    color: #555;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.2rem 0.3rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    line-height: 1;
}

.item-remover:hover {
    color: #CC2200;
    background: rgba(204, 34, 0, 0.12);
}

.carrinho-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #2a1a2e;
    background: #0d0d0d;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.carrinho-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carrinho-total-label {
    font-family: 'Oswald', sans-serif;
    color: #aaa;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.carrinho-total-valor {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.03em;
}

.btn-finalizar {
    background: linear-gradient(135deg, #CC2200, #8C2493);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 1rem;
    padding: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 20px rgba(204, 34, 0, 0.3);
}

.btn-finalizar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(204, 34, 0, 0.5);
}

/* ========== MODAL DE FINALIZAÇÃO ========== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #141414;
    border: 1px solid #4f2f52;
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(140,36,147,0.2);
    animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.88) translateY(30px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-box::-webkit-scrollbar { width: 5px; }
.modal-box::-webkit-scrollbar-track { background: #141414; }
.modal-box::-webkit-scrollbar-thumb { background: #4f2f52; border-radius: 3px; }

.modal-fechar {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    z-index: 10;
}

.modal-fechar:hover {
    color: #fff;
    background: #2a1a2e;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #2a1a2e;
}

.modal-titulo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.modal-subtitulo {
    font-family: 'Inter', sans-serif;
    color: #777;
    font-size: 0.9rem;
}

.modal-body {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Tipo de entrega */
.tipo-entrega-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.tipo-btn {
    background: #1a1a1a;
    border: 2px solid #2a1a2e;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}

.tipo-btn:hover {
    border-color: #8C2493;
}

.tipo-btn.active {
    border-color: #8C2493;
    background: rgba(140, 36, 147, 0.12);
    box-shadow: 0 0 16px rgba(140, 36, 147, 0.2);
}

.tipo-icon {
    font-size: 2rem;
}

.tipo-label {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Campos de endereço */
.endereco-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-family: 'Oswald', sans-serif;
    color: #aaa;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* grade 2 colunas para campos menores (Número + Bairro) */
.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0.75rem;
}

.form-input {
    background: #1a1a1a;
    border: 1px solid #3a2040;
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    /* 16px evita zoom automático no iOS ao focar o campo */
    font-size: 1rem;
    padding: 0.85rem 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    /* garante altura de toque mínima de 44px no mobile */
    min-height: 48px;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder {
    color: #444;
}

.form-input:focus {
    border-color: #8C2493;
    box-shadow: 0 0 0 3px rgba(140, 36, 147, 0.15);
}

/* Resumo do pedido no modal */
.modal-resumo {
    background: #0d0d0d;
    border: 1px solid #2a1a2e;
    border-radius: 12px;
    padding: 1.25rem;
}

.resumo-titulo {
    font-family: 'Oswald', sans-serif;
    color: #aaa;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.resumo-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.resumo-item {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #ccc;
}

.resumo-item-nome {
    display: flex;
    gap: 0.5rem;
}

.resumo-item-qty {
    color: #8C2493;
    font-weight: 700;
}

.resumo-item-preco {
    color: #fff;
}

.resumo-total-row {
    display: flex;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid #2a1a2e;
    font-family: 'Oswald', sans-serif;
    color: #aaa;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.resumo-total-valor {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #fff;
}

/* Modal footer / botão WhatsApp */
.modal-footer {
    padding: 1rem 2rem 2rem;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 1rem;
    padding: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    background: #1db954;
}

/* ========== TOAST NOTIFICATION ========== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1a1a1a;
    border: 1px solid #4f2f52;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    z-index: 2000;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ========== RESPONSIVE EXTRAS ========== */
@media (max-width: 480px) {
    .carrinho-drawer {
        width: 100vw;
    }

    .modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .modal-box {
        border-radius: 20px 20px 0 0;
        max-height: 92dvh;
        width: 100%;
    }

    .modal-body {
        padding: 1.25rem 1rem;
    }

    .modal-header {
        padding: 1.25rem 1rem 0.75rem;
    }

    .modal-footer {
        padding: 0.75rem 1rem 1.5rem;
    }

    .tipo-entrega-group {
        grid-template-columns: 1fr 1fr;
    }

    .tipo-btn {
        padding: 1rem 0.75rem;
    }

    .form-row-2col {
        grid-template-columns: 1fr 1.5fr;
    }

    .btn-finalizar,
    .btn-whatsapp {
        font-size: 1rem;
        padding: 1rem;
        min-height: 52px;
    }

    .item-qty-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .btn-carrinho-nav {
        font-size: 0.8rem;
        padding: 0.4rem 0.9rem;
    }

    .carrinho-item {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .item-subtotal {
        min-width: auto;
    }
}

/* ========== ESGOTADO STATE ========== */
.card-esgotado {
    opacity: 0.75;
}

.esgotado-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.esgotado-badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    color: #fff;
    background: rgba(204, 34, 0, 0.85);
    padding: 0.3rem 1.2rem;
    border-radius: 4px;
    transform: rotate(-5deg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.btn-esgotado {
    background: #2a2a2a !important;
    border-color: #444 !important;
    color: #666 !important;
    cursor: not-allowed !important;
    font-size: 0.78rem !important;
}

/* ========== BEBIDAS SECTION ========== */
.bebidas-section {
    background: #0d0d0d;
    border-top: 1px solid rgba(140, 36, 147, 0.15);
}

/* Cards de bebida: grid com max de 4 colunas */
.bebidas-section .cardapio-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

/* Card de bebida sem descrição: reduz padding inferior do content */
.bebida-card .burger-content {
    padding-bottom: 1.25rem;
}

/* Ajuste da imagem da bebida para não cortar */
.bebida-card .burger-image img {
    object-fit: contain;
    background-color: #141414; /* Mantém o fundo escuro caso a imagem tenha transparência */
    padding: 1rem; /* Adiciona um respiro em volta da garrafa/lata */
}

/* ========== MARMITAS BANNER ========== */
.marmitas-banner {
    background: linear-gradient(135deg, #0d0a10 0%, #0a0a0a 50%, #100a0d 100%);
    border-top: 1px solid rgba(140, 36, 147, 0.2);
    border-bottom: 1px solid rgba(140, 36, 147, 0.2);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.marmitas-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140,36,147,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.marmitas-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.marmitas-banner-content { flex: 1; }

.marmitas-banner-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fff;
    line-height: 0.95;
    margin: 0.5rem 0 1rem;
}

.marmitas-banner-title span { color: #8C2493; }

.marmitas-banner-desc {
    font-family: 'Inter', sans-serif;
    color: #888;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 2rem;
}

.marmitas-btn {
    background: linear-gradient(135deg, #8C2493, #CC2200) !important;
    border-color: transparent !important;
    box-shadow: 0 4px 20px rgba(140, 36, 147, 0.35);
}

.marmitas-btn:hover {
    background: transparent !important;
    color: #8C2493 !important;
    border-color: #8C2493 !important;
    box-shadow: 0 0 24px rgba(140, 36, 147, 0.4) !important;
}

.marmitas-banner-icon {
    font-size: clamp(4rem, 10vw, 7rem);
    opacity: 0.25;
    flex-shrink: 0;
    filter: drop-shadow(0 0 30px rgba(140,36,147,0.3));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

@media (max-width: 600px) {
    .marmitas-banner-inner { flex-direction: column; text-align: center; }
    .marmitas-banner-icon  { font-size: 4rem; }
    .marmitas-banner-desc  { font-size: 0.9rem; }
}

/* ========== EMPTY CATEGORY STATE ========== */
.categoria-vazia {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.categoria-vazia span { font-size: 3.5rem; opacity: 0.3; }
.categoria-vazia p { font-size: 1rem; }
.categoria-vazia-sub { font-size: 0.85rem !important; color: #444 !important; }
.categoria-vazia a { color: #8C2493; text-decoration: none; }
.categoria-vazia a:hover { text-decoration: underline; }

/* ========== MARMITAS PAGE — HERO ========== */
.marmitas-hero {
    background: #0a0a0a;
}

.marmitas-hero .hero-background {
    filter: none;
}

/* ========== MODAL ADICIONAIS ========== */
.modal-adicionais {
    max-width: 460px;
}
.adicionais-secao-titulo {
    font-family: 'Bebas Neue', sans-serif;
    color: #8C2493;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #2a1a2e;
    padding-bottom: 0.25rem;
}
.adicionais-lista {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.adicional-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #181818;
    border: 1px solid #2a1a2e;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}
.adicional-info {
    display: flex;
    flex-direction: column;
}
.adicional-nome {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 1rem;
}
.adicional-preco {
    font-family: 'Inter', sans-serif;
    color: #aaa;
    font-size: 0.85rem;
}
.adicional-controles {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.adicional-btn {
    background: #2a1a2e;
    border: 1px solid #4f2f52;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.adicional-btn:hover {
    background: #8C2493;
    border-color: #8C2493;
}
.adicional-qty {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    min-width: 20px;
    text-align: center;
}
/* Campo de observações */
.observacao-input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #3a2040;
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    outline: none;
    resize: vertical;
    min-height: 80px;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.observacao-input::placeholder { color: #444; }

.observacao-input:focus {
    border-color: #8C2493;
    box-shadow: 0 0 0 3px rgba(140,36,147,0.15);
}

/* ========== VER MAIS / VER MENOS (descrição dos cards) ========== */
.burger-desc {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.burger-desc.burger-desc-expanded {
    display: block;           /* cancela o -webkit-box do clamp */
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

.btn-ver-mais {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: transparent;
    border: none;
    color: #8C2493;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0.25rem 0;
    margin-top: -0.25rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-ver-mais:hover {
    color: #b030c0;
}

.btn-ver-mais-ativo {
    color: #cc2200;
}

.btn-ver-mais-ativo:hover {
    color: #ff4422;
}
