/* ============================================
   Pudinharia Doce Sonho — Cardápio digital
   Identidade gourmet: caramelo, creme, chocolate e dourado
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* Variáveis CSS */
:root {
    --branco: #fffdf9;
    --creme: #faf6ef;
    --bege: #f2e9dd;
    --bege-escuro: #e3d5c5;
    --caramelo: #9e7655;
    --caramelo-escuro: #7a4f32;
    --dourado: #b89254;
    --dourado-claro: #e9dcc0;
    --dourado-escuro: #8a6d38;
    --marrom: #4f3b32;
    --marrom-escuro: #241812;
    --marrom-medio: #5c4339;
    --rosa-claro: #f6efea;
    --rosa-suave: #ebe0d8;
    --sombra: rgba(36, 24, 18, 0.1);
    --sombra-media: rgba(36, 24, 18, 0.16);
    /* Microinterações — ritmo luxo */
    --transicao: 0.3s ease;
    --transicao-suave: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --fonte-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --fonte-titulo: 'Cormorant Garamond', Georgia, serif;
    --fonte-texto: 'Outfit', -apple-system, sans-serif;
    --fonte-script: 'Great Vibes', cursive;
    --raio-card: 20px;
    /* Proporção do quadro da foto (≈ retrato de celular). Com object-fit: cover,
       se a imagem tiver a mesma proporção, não há corte — sem bordas vazias.
       Fotos já muito fechadas no arquivo continuam “grandes” no quadro até trocar o arquivo. */
    /* Um pouco mais “baixo” que 4/5 — cards mais compactos na altura */
    --aspect-ratio-foto-produto: 4 / 4.55;
    /* Largura útil da vitrine (cards um pouco mais estreitos no desktop) */
    --largura-max-grid-produtos: 1080px;
    --bp-desktop: 1200px;
    --bp-laptop: 1200px;
    --bp-tablet: 992px;
    --bp-mobile: 768px;
    --bp-mobile-small: 480px;
    /* Vitrine premium — cards de produto */
    --raio-vitrine: 14px;
    --sombra-vitrine:
        0 1px 2px rgba(42, 24, 16, 0.04),
        0 10px 36px -6px rgba(42, 24, 16, 0.09),
        0 0 0 1px rgba(196, 163, 90, 0.09);
    --sombra-vitrine-hover:
        0 4px 12px rgba(42, 24, 16, 0.06),
        0 22px 50px -10px rgba(42, 24, 16, 0.14),
        0 0 0 1px rgba(196, 163, 90, 0.14);
    --transicao-vitrine: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Hero glass */
    --glass-bg: rgba(26, 16, 12, 0.38);
    --glass-border: rgba(232, 217, 180, 0.22);
    --glass-blur: 18px;
}

/* Scroll reveal (combinado com JS: .js-scroll-reveal.is-revealed) */
.js-scroll-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-scroll-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .js-scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .js-scroll-reveal.is-revealed {
        opacity: 1;
        transform: none;
    }

    .hero-kicker,
    .hero-title,
    .hero-logo-wrap,
    .hero-text,
    .hero-buttons {
        animation: none !important;
    }

    .galeria-item {
        transition: none;
    }

    .galeria-item:hover,
    .galeria-item.js-scroll-reveal.is-revealed:hover {
        background-size: cover;
    }
}


/* Reset e Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--fonte-texto);
    font-weight: 400;
    color: var(--marrom);
    background-color: var(--creme);
    background-image:
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(184, 146, 84, 0.08) 0%, transparent 52%),
        linear-gradient(180deg, var(--branco) 0%, var(--creme) 38%, var(--bege) 100%);
    line-height: 1.65;
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* Fotos em cards: cover preenche o quadro (sem bordas vazias); centro do produto */
.produto-img img,
.produto-img-home img,
.modal-produto-img img {
    display: block;
    min-width: 0;
    min-height: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transicao);
}

ul {
    list-style: none;
}

/* Container - responsivo */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   Botão Voltar ao Topo
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--dourado) 0%, var(--caramelo-escuro) 55%, var(--marrom-escuro) 100%);
    color: var(--branco);
    border: none;
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(42, 24, 16, 0.28);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease, transform var(--transicao), box-shadow var(--transicao);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(42, 24, 16, 0.35);
}

.scroll-to-top:focus {
    outline: 2px solid var(--dourado);
    outline-offset: 2px;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   WhatsApp Flutuante
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform var(--transicao), box-shadow var(--transicao);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float span {
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 2px;
}

/* ============================================
   Header e Navegação - Design Premium
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.97) 0%, rgba(250, 246, 240, 0.94) 100%);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(196, 163, 90, 0.22);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.85) inset,
        0 12px 48px rgba(42, 24, 16, 0.05);
    z-index: 100;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.header:hover {
    border-bottom-color: rgba(196, 163, 90, 0.38);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.85) inset,
        0 16px 56px rgba(42, 24, 16, 0.07);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-family: var(--fonte-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--marrom-escuro);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color var(--transicao), letter-spacing var(--transicao);
    line-height: 1.3;
}

.logo .logo-emphasis {
    font-family: var(--fonte-titulo);
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--caramelo-escuro);
    margin-left: 0.35rem;
}

.logo:hover {
    color: var(--marrom);
    letter-spacing: 0.21em;
}

.logo:hover .logo-emphasis {
    color: var(--dourado-escuro);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a,
.nav-dropdown-trigger {
    font-weight: 450;
    font-size: 0.9rem;
    color: var(--marrom);
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav-menu > li > a::after,
.nav-dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
    transition: width var(--transicao);
}

.nav-menu > li > a:hover::after,
.nav-dropdown:hover .nav-dropdown-trigger::after {
    width: 100%;
}

/* Instagram no menu — ícone (desktop e mobile) */
.nav-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0;
    text-transform: none;
    letter-spacing: 0;
    color: var(--marrom);
}

.nav-instagram .nav-instagram-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: block;
    transition: color var(--transicao), transform var(--transicao);
}

.nav-instagram:hover .nav-instagram-icon,
.nav-instagram:focus-visible .nav-instagram-icon {
    color: var(--dourado-escuro);
    transform: scale(1.07);
}

.nav-menu > li > a.nav-instagram::after {
    bottom: -5px;
}

/* Dropdown Cardápio */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
}

.nav-dropdown-trigger::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--marrom);
    margin-top: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    order: 1;
}

.nav-dropdown:hover .nav-dropdown-trigger::before {
    transform: rotate(180deg);
    border-top-color: var(--dourado);
}

.nav-dropdown-trigger::after {
    left: 0;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    min-width: 240px;
    background: var(--branco);
    border-radius: 14px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.9) inset,
                0 20px 50px -12px rgba(42, 24, 16, 0.12),
                0 8px 20px -8px rgba(42, 24, 16, 0.08);
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.3s,
                box-shadow 0.3s ease;
    z-index: 50;
    margin-top: 0.75rem;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(6px);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.9) inset,
                0 25px 60px -12px rgba(42, 24, 16, 0.16),
                0 10px 25px -8px rgba(42, 24, 16, 0.1);
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu li + li {
    border-top: 1px solid rgba(245, 240, 232, 0.8);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 450;
    color: var(--marrom);
    letter-spacing: 0.05em;
    transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
    border-left: 3px solid transparent;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: linear-gradient(90deg, var(--rosa-claro) 0%, rgba(255, 255, 255, 0.5) 100%);
    color: var(--marrom-escuro);
    padding-left: 1.75rem;
    border-left-color: var(--dourado);
}

.nav-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #128c7e !important;
    color: #ffffff !important;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(18, 140, 126, 0.35), 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-whatsapp::after {
    display: none !important;
}

.nav-whatsapp:hover {
    background: #0d6b60 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(18, 140, 126, 0.45), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(74, 54, 44, 0.06);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--marrom);
    transition: var(--transicao);
    border-radius: 1px;
}

/* ============================================
   Hero Section - Carrossel
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-carousel {
    isolation: isolate;
}

.hero-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: none; /* sem zoom - imagens estáticas */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(165deg, rgba(20, 12, 9, 0.58) 0%, rgba(52, 36, 28, 0.42) 38%, rgba(12, 8, 6, 0.78) 100%),
        radial-gradient(ellipse 85% 65% at 50% 110%, rgba(184, 146, 84, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse 60% 45% at 20% 20%, rgba(122, 79, 50, 0.12) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 1rem;
    padding: clamp(1.75rem, 4vw, 2.65rem) clamp(1.5rem, 4vw, 2.75rem);
    border-radius: 22px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow:
        0 24px 60px rgba(8, 5, 4, 0.35),
        inset 0 1px 0 rgba(255, 252, 248, 0.1);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
}

.hero-kicker {
    display: inline-block;
    font-family: var(--fonte-texto);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(232, 217, 180, 0.95);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-kicker::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    margin: 0.85rem auto 0;
    background: linear-gradient(90deg, transparent, var(--dourado-claro), transparent);
}

.hero-title {
    font-family: var(--fonte-display);
    font-size: clamp(2.35rem, 5.5vw, 4rem);
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 1.1rem;
    letter-spacing: 0.03em;
    line-height: 1.12;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
    animation: fadeInUp 1s ease-out 0.08s both;
}

.hero-logo-wrap {
    line-height: 0;
    margin-bottom: 0.9rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-logo {
    width: clamp(150px, 42vw, 220px);
    max-width: min(100%, 240px);
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35))
        drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.hero-text {
    font-size: 0.98rem;
    font-weight: 300;
    color: rgba(255, 252, 248, 0.88);
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.85rem;
    background: linear-gradient(145deg, #2dcb6b 0%, #1fa855 40%, #128c7e 100%);
    color: white !important;
    font-weight: 500;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 4px 18px rgba(18, 140, 126, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform var(--transicao), box-shadow var(--transicao), filter var(--transicao);
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 10px 32px rgba(18, 140, 126, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    filter: brightness(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--fonte-texto);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
    transition:
        transform var(--transicao),
        box-shadow var(--transicao),
        filter var(--transicao),
        background var(--transicao),
        border-color var(--transicao);
    border: none;
}

.btn-primary {
    background: linear-gradient(155deg, #d4b97a 0%, var(--dourado) 22%, var(--caramelo-escuro) 58%, var(--marrom-escuro) 100%);
    color: var(--branco);
    box-shadow:
        0 6px 22px rgba(36, 24, 18, 0.28),
        0 1px 0 rgba(255, 252, 248, 0.15) inset;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 1.05rem 2.35rem;
    border-radius: 999px;
    border: 1px solid rgba(233, 220, 192, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 14px 38px rgba(36, 24, 18, 0.34),
        0 0 0 1px rgba(233, 220, 192, 0.2),
        0 1px 0 rgba(255, 252, 248, 0.2) inset;
    filter: brightness(1.06);
}

.btn-secondary {
    background: rgba(255, 253, 249, 0.65);
    color: var(--marrom-escuro);
    border: 1px solid rgba(184, 146, 84, 0.45);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.76rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 1rem 1.95rem;
    box-shadow: 0 4px 16px rgba(36, 24, 18, 0.06);
}

.btn-secondary:hover {
    background: var(--branco);
    border-color: var(--caramelo-escuro);
    color: var(--marrom-escuro);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 28px rgba(36, 24, 18, 0.1);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   Seções
   ============================================ */
.section {
    padding: clamp(4.5rem, 10vw, 6.75rem) 0;
}

.section-heading {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Destaques — editorial mais limpo */
#produtos .section-heading {
    max-width: 520px;
}

#produtos .section-subtitle {
    font-weight: 300;
    font-size: 0.98rem;
    letter-spacing: 0.04em;
    opacity: 0.72;
}

.section-kicker {
    display: block;
    font-family: var(--fonte-texto);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--dourado-escuro);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--fonte-display);
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 600;
    color: var(--marrom-escuro);
    text-align: center;
    margin-bottom: 0.65rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 1px;
    margin: 1.1rem auto 0;
    background: linear-gradient(90deg, transparent, var(--dourado), transparent);
}

.section-heading .section-title::after {
    margin-top: 1.1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--marrom);
    opacity: 0.78;
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.55;
    margin-bottom: 3rem;
    margin-top: 0.5rem;
}

.section-heading .section-subtitle {
    margin-bottom: 0;
}

.section:not(:has(.section-heading)) .section-title {
    margin-bottom: 0.5rem;
}

/* Categorias */
.categorias {
    background: linear-gradient(180deg, var(--branco) 0%, var(--creme) 100%);
    position: relative;
}

.categorias::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 146, 84, 0.45), transparent);
    pointer-events: none;
}

.categorias::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(200px, 40%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 146, 84, 0.35), transparent);
    pointer-events: none;
}

.cardapio-intro {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.35rem;
    margin-bottom: 2.75rem;
    padding-top: 0.25rem;
}

.cardapio-logo-wrap {
    line-height: 0;
}

.cardapio-logo {
    width: clamp(220px, 44vw, 300px);
    max-width: min(100%, 320px);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 14px 34px rgba(45, 32, 22, 0.18));
}

.cardapio-heading {
    margin-bottom: 0;
}

@media (min-width: 769px) {
    .cardapio-intro {
        grid-template-columns: minmax(240px, 300px) 1fr;
        align-items: center;
        gap: 2rem 2.75rem;
        max-width: 980px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 3.25rem;
        justify-items: stretch;
    }

    .cardapio-logo-wrap {
        justify-self: center;
    }

    .cardapio-heading {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }

    .cardapio-heading .section-kicker,
    .cardapio-heading .section-title,
    .cardapio-heading .section-subtitle {
        text-align: left;
    }

    .cardapio-heading .section-title::after {
        margin-left: 0;
        margin-right: auto;
    }
}

.categoria-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 481px) {
    .categoria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .categoria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 993px) {
    .categoria-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.categoria-card {
    background: var(--branco);
    border-radius: var(--raio-card);
    overflow: hidden;
    border: 1px solid rgba(184, 146, 84, 0.16);
    box-shadow:
        0 2px 8px rgba(36, 24, 18, 0.04),
        0 14px 40px -8px rgba(36, 24, 18, 0.1);
    transition:
        transform var(--transicao-suave),
        box-shadow var(--transicao-suave),
        border-color var(--transicao-suave);
}

.categoria-card:hover {
    border-color: rgba(184, 146, 84, 0.32);
    box-shadow:
        0 8px 24px rgba(36, 24, 18, 0.06),
        0 28px 56px -12px rgba(36, 24, 18, 0.14);
}

.categoria-card:not(.js-scroll-reveal):hover,
.categoria-card.js-scroll-reveal.is-revealed:hover {
    transform: translateY(-12px);
}

.categoria-img {
    height: 260px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.categoria-card:hover .categoria-img {
    transform: scale(1.08);
}

.categoria-content {
    padding: clamp(1.85rem, 4vw, 2.35rem);
}

.categoria-content h3 {
    font-family: var(--fonte-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--marrom-escuro);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.categoria-content p {
    color: var(--marrom);
    opacity: 0.85;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* ============================================
   Seção Produtos - destaques
   ============================================ */
.produtos {
    background: linear-gradient(180deg, var(--bege) 0%, var(--creme) 55%, var(--branco) 100%);
    position: relative;
}

.produtos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 146, 84, 0.38), transparent);
}

.produtos-grid-home {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.35rem;
    align-items: stretch;
    max-width: var(--largura-max-grid-produtos);
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 481px) {
    .produtos-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .produtos-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.65rem;
    }
}

@media (min-width: 993px) {
    .produtos-grid-home {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1201px) {
    .produtos-grid-home {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

.produto-card-home,
.produto-card {
    container-name: produto-card;
    container-type: inline-size;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    min-width: 0;
    background:
        linear-gradient(165deg, rgba(255, 254, 251, 0.98) 0%, rgba(250, 246, 240, 0.96) 45%, rgba(245, 238, 228, 0.94) 100%);
    border-radius: var(--raio-vitrine);
    overflow: hidden;
    border: 1px solid rgba(196, 163, 90, 0.14);
    box-shadow: var(--sombra-vitrine);
    transition:
        transform var(--transicao-vitrine),
        box-shadow var(--transicao-vitrine),
        border-color var(--transicao-vitrine);
}

.produto-card-home:hover,
.produto-card:hover {
    border-color: rgba(196, 163, 90, 0.26);
    box-shadow: var(--sombra-vitrine-hover);
}

.produto-card-home:not(.js-scroll-reveal):hover,
.produto-card:not(.js-scroll-reveal):hover,
.produto-card-home.js-scroll-reveal.is-revealed:hover,
.produto-card.js-scroll-reveal.is-revealed:hover {
    transform: translateY(-10px);
}

/* Área da foto — vitrine: proporção + moldura suave; zoom elegante no hover */
.produto-img-home,
.produto-img {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    place-items: center;
    place-content: center;
    width: 100%;
    flex-shrink: 0;
    height: auto;
    aspect-ratio: var(--aspect-ratio-foto-produto);
    min-height: 0;
    max-height: none;
    box-sizing: border-box;
    padding: 0;
    background:
        linear-gradient(160deg, #f8f2ea 0%, #ebe0d4 48%, #e2d5c8 100%);
    transition: opacity var(--transicao-vitrine), background-color var(--transicao-vitrine);
    border-bottom: 1px solid rgba(196, 163, 90, 0.1);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 252, 248, 0.35);
}

.produto-img-home img,
.produto-img img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.produto-card-home:hover .produto-img-home img,
.produto-card:hover .produto-img img {
    transform: scale(1.06);
}

.produto-card-home:hover .produto-img-home,
.produto-card:hover .produto-img {
    background: linear-gradient(160deg, #faf4ec 0%, #efe4d8 50%, #e5d8cb 100%);
}

.produto-content-home {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
    padding: clamp(1.55rem, 3.5vw, 1.85rem) clamp(1.25rem, 3vw, 1.65rem) clamp(1.6rem, 3.5vw, 1.9rem);
    background: transparent;
}

.produto-content-home h3 {
    font-family: var(--fonte-display);
    font-size: 1.22rem;
    font-weight: 500;
    color: var(--marrom-escuro);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
    line-height: 1.28;
    flex-shrink: 0;
}

.produto-content-home p {
    color: var(--marrom);
    opacity: 0.85;
    font-size: 0.92rem;
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

.produto-preco {
    display: block;
    font-family: var(--fonte-display);
    font-weight: 600;
    color: var(--caramelo-escuro);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

/* Quando o preço vem do bloco .produto-meta dinâmico, não duplicar linha antiga */
.produto-content-home:has(.produto-meta) .produto-preco {
    display: none;
}

.produto-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    flex-shrink: 0;
    margin-bottom: 0.95rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(196, 163, 90, 0.12);
}

.produto-content-home > p,
.produto-content > p {
    flex-shrink: 0;
}

.produto-tamanho {
    font-family: var(--fonte-texto);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--dourado-escuro);
    opacity: 0.92;
}

/* Texto de porção (frase longa) — legível, sem caixa alta forçada */
.produto-tamanho--porcao {
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.35;
    max-width: min(100%, 11.5rem);
}

.produto-preco-card {
    font-family: var(--fonte-display);
    font-size: clamp(1.28rem, 2.8vw, 1.52rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.05;
    color: var(--caramelo-escuro);
    background: linear-gradient(120deg, var(--marrom-escuro) 0%, var(--caramelo-escuro) 35%, #c9a85e 62%, var(--caramelo-escuro) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-variant-numeric: lining-nums proportional-nums;
}

@supports not (background-clip: text) {
    .produto-preco-card {
        color: var(--caramelo-escuro);
        background: none;
    }
}

.produto-preco-card--solo {
    margin-left: auto;
    font-size: 1.4rem;
}

.btn-produto-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 0.85rem;
    font-family: var(--fonte-texto);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
    background: linear-gradient(145deg, #2eb85c 0%, #1fa855 45%, #128c7e 100%);
    color: #fff !important;
    border-radius: 999px;
    border: none;
    box-shadow: 0 2px 8px rgba(18, 140, 126, 0.22);
    transition: transform var(--transicao-vitrine), box-shadow var(--transicao-vitrine);
}

.btn-produto-whatsapp svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-produto-whatsapp:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 18px rgba(18, 140, 126, 0.32);
}

/* ============================================
   Galeria - Estilo Instagram
   ============================================ */
.galeria {
    background: linear-gradient(180deg, var(--creme) 0%, var(--bege) 45%, var(--rosa-claro) 100%);
    position: relative;
}

.galeria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(120px, 25%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 146, 84, 0.55), transparent);
}

.galeria .section-heading {
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.65rem, 2vw, 1.15rem);
}

@media (min-width: 481px) {
    .galeria-grid {
        gap: clamp(0.75rem, 2vw, 1.25rem);
    }
}

@media (min-width: 769px) {
    .galeria-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(0.85rem, 2.2vw, 1.35rem);
    }
}

.galeria-item {
    position: relative;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: clamp(14px, 2.5vw, 20px);
    overflow: hidden;
    transition:
        background-size 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow var(--transicao),
        border-color var(--transicao);
    border: 1px solid rgba(184, 146, 84, 0.12);
    box-shadow: 0 8px 28px rgba(36, 24, 18, 0.07);
}

.galeria-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(26, 16, 12, 0) 35%, rgba(26, 16, 12, 0.38) 100%);
    opacity: 0;
    transition: opacity var(--transicao);
    pointer-events: none;
    border-radius: inherit;
}

.galeria-item:hover {
    box-shadow: 0 16px 40px rgba(36, 24, 18, 0.12);
    border-color: rgba(184, 146, 84, 0.22);
}

.galeria-item:hover::after {
    opacity: 1;
}

.galeria-item:not(.js-scroll-reveal):hover,
.galeria-item.js-scroll-reveal.is-revealed:hover {
    background-size: 115%;
}

/* ============================================
   Avaliações
   ============================================ */
.avaliacoes {
    background: linear-gradient(180deg, var(--branco) 0%, var(--rosa-claro) 48%, var(--creme) 100%);
    position: relative;
}

.avaliacoes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 146, 84, 0.35), transparent);
}

.avaliacoes .section-heading {
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.25rem);
}

.avaliacao-card {
    position: relative;
    background: linear-gradient(165deg, rgba(255, 253, 249, 0.98) 0%, rgba(250, 246, 240, 0.96) 100%);
    padding: clamp(1.85rem, 4vw, 2.35rem) clamp(1.75rem, 3.5vw, 2.15rem);
    border-radius: clamp(18px, 3vw, 22px);
    border: 1px solid rgba(184, 146, 84, 0.14);
    box-shadow:
        0 2px 8px rgba(36, 24, 18, 0.04),
        0 16px 40px -12px rgba(36, 24, 18, 0.09);
    transition:
        transform var(--transicao-suave),
        box-shadow var(--transicao-suave),
        border-color var(--transicao-suave);
}

.avaliacao-card::before {
    content: '"';
    position: absolute;
    top: 1.1rem;
    left: 1.35rem;
    font-family: var(--fonte-display);
    font-size: 3.25rem;
    line-height: 1;
    color: rgba(184, 146, 84, 0.22);
    pointer-events: none;
    font-style: normal;
}

.avaliacao-card:not(.js-scroll-reveal):hover,
.avaliacao-card.js-scroll-reveal.is-revealed:hover {
    transform: translateY(-6px);
}

.avaliacao-card:hover {
    border-color: rgba(184, 146, 84, 0.24);
    box-shadow:
        0 8px 24px rgba(36, 24, 18, 0.06),
        0 26px 50px -14px rgba(36, 24, 18, 0.12);
}

.avaliacao-estrelas {
    color: var(--dourado);
    font-size: 1.15rem;
    letter-spacing: 3px;
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 1;
}

.avaliacao-texto {
    position: relative;
    z-index: 1;
    font-family: var(--fonte-titulo);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--marrom);
    margin-bottom: 1.15rem;
    line-height: 1.75;
    padding-left: 0.15rem;
}

.avaliacao-autor {
    position: relative;
    z-index: 1;
    display: block;
    font-family: var(--fonte-texto);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--marrom-escuro);
    opacity: 0.72;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    background:
        radial-gradient(ellipse 100% 80% at 50% 0%, rgba(184, 146, 84, 0.14) 0%, transparent 45%),
        linear-gradient(155deg, var(--marrom-escuro) 0%, var(--marrom) 100%);
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(160px, 36%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233, 220, 192, 0.45), transparent);
}

.cta-title {
    font-family: var(--fonte-display);
    font-size: clamp(1.75rem, 3vw, 2.45rem);
    color: var(--branco);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.cta-text {
    color: rgba(245, 235, 224, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.cta .btn-primary {
    background: linear-gradient(145deg, var(--dourado-claro) 0%, var(--dourado) 100%);
    color: var(--marrom-escuro);
    border-color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   Rodapé
   ============================================ */
.footer {
    background: linear-gradient(180deg, #1f1410 0%, var(--marrom-escuro) 100%);
    color: var(--bege);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(196, 163, 90, 0.15);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: var(--fonte-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    letter-spacing: 0.04em;
}

.footer-brand p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-social {
    text-align: right;
}

.footer-links-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dourado-claro);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bege);
    transition: color var(--transicao);
}

.footer-links a:hover {
    color: var(--dourado-claro);
}

.footer-links svg {
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(245, 240, 232, 0.2);
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ============================================
   Páginas de Cardápio
   ============================================ */
.page-hero {
    padding: 9rem 2rem 4.5rem;
    background:
        radial-gradient(ellipse 80% 120% at 50% 0%, rgba(196, 163, 90, 0.15) 0%, transparent 50%),
        linear-gradient(165deg, var(--marrom-escuro) 0%, #3d2a1f 45%, var(--marrom) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23c4a35a' stroke-opacity='0.06' stroke-width='0.5'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.page-hero-kicker {
    position: relative;
    font-family: var(--fonte-texto);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(232, 217, 180, 0.9);
    margin-bottom: 1rem;
}

.page-hero h1 {
    position: relative;
    font-family: var(--fonte-display);
    font-size: clamp(2.1rem, 4.5vw, 3.15rem);
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 1.25rem;
    letter-spacing: 0.03em;
    line-height: 1.15;
}

.page-hero-ornament {
    width: 48px;
    height: 1px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(90deg, transparent, var(--dourado-claro), transparent);
    position: relative;
}

.page-hero-ornament::after {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.45rem;
    color: var(--dourado-claro);
    line-height: 0;
}

.page-hero p {
    position: relative;
    font-family: var(--fonte-titulo);
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(245, 235, 224, 0.92);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 500;
}

.page-instagram-hint {
    position: relative;
    margin: 0;
    padding: 1rem 1.25rem 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.page-instagram-hint a {
    font-family: var(--fonte-texto);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(232, 217, 180, 0.95);
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 217, 180, 0.35);
    padding-bottom: 2px;
    transition: color var(--transicao), border-color var(--transicao);
}

.page-instagram-hint a:hover {
    color: var(--branco);
    border-color: rgba(255, 252, 248, 0.45);
}

.section-heading .instagram-strip {
    margin-top: 0.6rem;
    margin-bottom: 0;
}

.instagram-strip a {
    font-family: var(--fonte-texto);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--dourado-escuro);
    text-decoration: none;
    border-bottom: 1px solid rgba(184, 146, 84, 0.42);
    padding-bottom: 2px;
    transition: color var(--transicao), border-color var(--transicao);
}

.instagram-strip a:hover {
    color: var(--marrom-escuro);
    border-color: var(--caramelo-escuro);
}

.ig-handle {
    font-family: var(--fonte-display);
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--marrom-escuro);
}

.cta-instagram {
    max-width: 420px;
    margin: 0 auto 1.35rem;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(245, 235, 224, 0.88);
}

.cta-instagram a {
    color: var(--dourado-claro);
    text-decoration: none;
    border-bottom: 1px solid rgba(233, 220, 192, 0.4);
    padding-bottom: 1px;
    transition: color var(--transicao), border-color var(--transicao);
}

.cta-instagram a:hover {
    color: var(--branco);
    border-color: rgba(255, 252, 248, 0.45);
}

.cta-instagram .ig-handle {
    color: var(--dourado-claro);
}

.cta-instagram a:hover .ig-handle {
    color: var(--branco);
}

.cardapio-intro {
    text-align: center;
    padding: 2rem 1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cardapio-intro p {
    color: var(--marrom);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .cardapio-intro {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .cardapio-intro p {
        font-size: 1rem;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .cardapio-intro {
        padding: 1.5rem 0.75rem;
        margin-bottom: 1.5rem;
    }
}

/* Grid de produtos - páginas de cardápio */
.produtos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 1.75rem 0 3.5rem;
    align-items: stretch;
    max-width: var(--largura-max-grid-produtos);
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 481px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.65rem;
    }
}

@media (min-width: 993px) {
    .produtos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1201px) {
    .produtos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

.produto-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
    padding: 1.45rem 1.35rem 1.55rem;
    background: transparent;
}

.produto-content h3 {
    font-family: var(--fonte-display);
    font-size: 1.22rem;
    font-weight: 500;
    color: var(--marrom-escuro);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
    line-height: 1.28;
    flex-shrink: 0;
}

.produto-content .produto-meta {
    margin-top: 0;
}

.produto-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0;
    padding: 0.55rem 0.85rem;
    font-family: var(--fonte-texto);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
    background: linear-gradient(145deg, #2eb85c 0%, #1fa855 45%, #128c7e 100%);
    color: #fff !important;
    border-radius: 999px;
    border: none;
    box-shadow: 0 2px 8px rgba(18, 140, 126, 0.22);
    transition: transform var(--transicao-vitrine), box-shadow var(--transicao-vitrine);
}

.produto-whatsapp:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 18px rgba(18, 140, 126, 0.32);
    opacity: 1;
}

.produto-whatsapp svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Carrinho + WhatsApps em coluna: ambos os atendimentos sempre visíveis (evita corte por overflow do card) */
.produto-content-home .produto-buttons,
.produto-content .produto-buttons {
    margin-top: auto;
    padding-top: 0.85rem;
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    align-items: stretch;
}

.produto-content-home .produto-buttons .btn-adicionar-carrinho,
.produto-content .produto-buttons .btn-adicionar-carrinho {
    grid-column: 1 / -1;
}

.produto-content-home .produto-buttons .btn-produto-whatsapp,
.produto-content .produto-buttons .produto-whatsapp {
    min-height: 36px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    overflow-wrap: break-word;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding-left: clamp(0.45rem, 2vw, 0.85rem);
    padding-right: clamp(0.45rem, 2vw, 0.85rem);
}

/* Segundo atendimento — tom mais suave / contorno (principal continua verde intenso) */
.produto-whatsapp.produto-whatsapp--atendimento2,
.btn-produto-whatsapp.produto-whatsapp--atendimento2 {
    display: inline-flex !important;
    visibility: visible;
    opacity: 1;
}

.produto-whatsapp.produto-whatsapp--atendimento2 {
    background: linear-gradient(145deg, #f0faf4 0%, #d4eee2 50%, #b8e0cc 100%);
    color: #0a5c42 !important;
    border: 1px solid rgba(18, 140, 126, 0.35);
    box-shadow: 0 2px 8px rgba(18, 140, 126, 0.12);
    font-weight: 600;
}

.produto-whatsapp.produto-whatsapp--atendimento2:hover {
    box-shadow: 0 5px 16px rgba(18, 140, 126, 0.2);
    opacity: 1;
}

.btn-produto-whatsapp.produto-whatsapp--atendimento2 {
    background: linear-gradient(145deg, #eef8f2 0%, #cfe9da 100%);
    color: #0a5c42 !important;
    border: 1px solid rgba(18, 140, 126, 0.32);
    box-shadow: 0 2px 8px rgba(18, 140, 126, 0.1);
}

.btn-produto-whatsapp.produto-whatsapp--atendimento2:hover {
    box-shadow: 0 5px 16px rgba(18, 140, 126, 0.22);
}

/* ============================================
   Modal Produto
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(61, 43, 36, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.ativo {
    opacity: 1;
    visibility: visible;
}

.modal-produto {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    background: var(--branco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(42, 24, 16, 0.28);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}

.modal-overlay.ativo .modal-produto {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.75rem;
    color: var(--marrom);
    cursor: pointer;
    z-index: 10;
    transition: var(--transicao);
    line-height: 1;
}

.modal-close:hover {
    background: var(--branco);
    color: var(--marrom-escuro);
    transform: scale(1.05);
}

.modal-produto-img {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    place-items: center;
    place-content: center;
    height: 280px;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    background-color: #f0e8de;
    border-bottom: 1px solid rgba(196, 163, 90, 0.12);
    overflow: hidden;
}

.modal-produto-body {
    padding: 1.75rem 2rem 2rem;
    overflow-y: auto;
    max-height: calc(90vh - 260px);
}

.modal-produto-nome {
    font-family: var(--fonte-display);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--marrom-escuro);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.modal-produto-descricao {
    color: var(--marrom);
    opacity: 0.9;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.modal-produto-ingredientes-wrap {
    margin-bottom: 1.25rem;
}

.modal-produto-ingredientes-wrap h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dourado);
    margin-bottom: 0.5rem;
}

.modal-produto-ingredientes {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--marrom);
    opacity: 0.9;
}

.modal-produto-ingredientes li {
    margin-bottom: 0.25rem;
}

.modal-produto-pedido {
    font-weight: 600;
    color: var(--dourado);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.modal-produto-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.1rem;
    font-size: 0.9rem;
}

.modal-produto-whatsapp svg {
    width: 18px;
    height: 18px;
}

.modal-produto-wa-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    align-items: stretch;
    margin-bottom: 0.25rem;
    min-width: 0;
}

.modal-produto-wa-row .modal-produto-whatsapp {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    white-space: normal;
    overflow-wrap: break-word;
    border-radius: 12px;
    box-sizing: border-box;
}

.modal-produto-whatsapp.modal-produto-whatsapp--atendimento2 {
    background: linear-gradient(145deg, #3d9e7a 0%, #2a7a5f 100%);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 14px rgba(42, 122, 95, 0.28);
}

.modal-produto-whatsapp.modal-produto-whatsapp--atendimento2:hover {
    filter: brightness(1.06);
    box-shadow: 0 6px 20px rgba(42, 122, 95, 0.34);
}

.modal-produto-ingredientes-wrap.no-ingredientes {
    display: none;
}

.modal-produto-tamanhos-wrap {
    margin-bottom: 1.25rem;
    padding: 1rem 1.1rem;
    background: linear-gradient(145deg, rgba(196, 163, 90, 0.08) 0%, rgba(61, 43, 36, 0.04) 100%);
    border: 1px solid rgba(196, 163, 90, 0.2);
    border-radius: 12px;
}

.modal-produto-tamanhos-wrap.no-tamanhos {
    display: none;
}

.modal-produto-tamanhos-heading {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dourado);
    margin: 0 0 0.55rem;
}

.modal-produto-tamanhos {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--marrom);
    line-height: 1.55;
}

.modal-produto-tamanhos li {
    margin-bottom: 0.35rem;
}

.modal-produto-tamanhos li:last-child {
    margin-bottom: 0;
}

/* ============================================
   Cardápio — bloco institucional (pós-hero)
   ============================================ */
.cardapio-info-destaque {
    padding: 3rem 0 2.5rem;
    background: linear-gradient(180deg, #faf7f2 0%, #f3ebe1 50%, #faf7f2 100%);
    border-bottom: 1px solid rgba(196, 163, 90, 0.15);
}

.cardapio-info-destaque-inner {
    max-width: 720px;
    margin: 0 auto;
}

.cardapio-info-kicker {
    font-family: var(--fonte-corpo);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--dourado);
    margin: 0 0 0.65rem;
}

.cardapio-info-titulo {
    font-family: var(--fonte-display);
    font-size: clamp(1.65rem, 4vw, 2.15rem);
    font-weight: 600;
    color: var(--marrom-escuro);
    line-height: 1.2;
    margin: 0 0 1rem;
    letter-spacing: 0.02em;
}

.cardapio-info-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--marrom);
    margin: 0 0 1.5rem;
    opacity: 0.92;
}

.cardapio-info-pontos {
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.cardapio-info-pontos li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--marrom);
}

.cardapio-info-pontos li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dourado);
    opacity: 0.85;
}

.cardapio-info-pontos strong {
    color: var(--marrom-escuro);
    font-weight: 600;
}

.cardapio-info-nota {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--marrom);
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(196, 163, 90, 0.2);
    opacity: 0.88;
}

/* Bloco “Informações adicionais” alinhado ao flyer (parchment / premium) */
.cardapio-info-destaque--flyer {
    position: relative;
    background: linear-gradient(165deg, #faf6ef 0%, #f0e8dc 42%, #f7f1e8 100%);
    overflow: hidden;
}

.cardapio-info-destaque--flyer::before {
    content: '';
    position: absolute;
    top: 1.25rem;
    right: max(1rem, 4vw);
    width: 44px;
    height: 44px;
    background-image: radial-gradient(circle, var(--marrom) 1.5px, transparent 1.6px);
    background-size: 9px 9px;
    opacity: 0.2;
    pointer-events: none;
}

.cardapio-info-destaque--flyer::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: -2rem;
    width: 7rem;
    height: 5rem;
    border: 1px solid rgba(74, 48, 36, 0.14);
    border-radius: 55% 45% 48% 52%;
    transform: rotate(-14deg);
    pointer-events: none;
}

.cardapio-info-destaque--flyer .cardapio-info-destaque-inner {
    position: relative;
    z-index: 1;
}

.cardapio-info-flyer-title {
    font-family: var(--fonte-script);
    font-size: clamp(2rem, 5vw, 2.85rem);
    font-weight: 400;
    color: var(--marrom-escuro);
    text-align: center;
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.cardapio-info-flyer-text {
    font-family: var(--fonte-display);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--marrom-escuro);
    margin: 0 auto 1.2rem;
    max-width: 36rem;
    text-align: center;
}

.cardapio-info-flyer-cta {
    font-family: var(--fonte-script);
    font-size: clamp(1.45rem, 3.2vw, 1.95rem);
    text-align: center;
    color: var(--marrom-escuro);
    margin: 1.75rem 0 0.45rem;
}

.cardapio-info-flyer-wa-wrap {
    text-align: center;
    margin: 0;
}

.cardapio-info-flyer-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--fonte-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--marrom-escuro);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cardapio-info-flyer-wa:hover {
    color: var(--caramelo-escuro);
}

.cardapio-info-flyer-wa-icon {
    color: #25d366;
    flex-shrink: 0;
}

/* Modal regras de encomenda (antes do envio ao WhatsApp) */
.modal-regras-encomenda-overlay {
    z-index: 2100;
}

.modal-regras-encomenda-overlay .modal-regras-box {
    position: relative;
    width: 100%;
    max-width: 440px;
    max-height: min(85vh, 560px);
    overflow-y: auto;
    background: var(--branco);
    border-radius: 16px;
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: 0 25px 80px rgba(42, 24, 16, 0.28);
    transform: scale(0.94);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.modal-regras-encomenda-overlay.ativo .modal-regras-box {
    transform: scale(1);
    opacity: 1;
}

.modal-regras-titulo {
    font-family: var(--fonte-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--marrom-escuro);
    margin: 0 0 1rem;
    line-height: 1.25;
}

.modal-regras-lista {
    margin: 0 0 1.25rem;
    padding-left: 1.2rem;
    color: var(--marrom);
    line-height: 1.6;
    font-size: 0.95rem;
}

.modal-regras-lista li {
    margin-bottom: 0.55rem;
}

.modal-regras-lista li:last-child {
    margin-bottom: 0;
}

.modal-regras-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--marrom);
    cursor: pointer;
    margin-bottom: 1.25rem;
    line-height: 1.45;
}

.modal-regras-checkbox-label input {
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 1.05rem;
    height: 1.05rem;
    accent-color: var(--dourado);
}

.modal-regras-acoes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.modal-regras-voltar {
    background: transparent;
    border: 1px solid rgba(61, 43, 36, 0.25);
    color: var(--marrom);
}

.modal-regras-voltar:hover {
    border-color: var(--marrom);
    background: rgba(61, 43, 36, 0.04);
}

.modal-regras-continuar:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.modal-regras-rodape {
    margin: 1rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(196, 163, 90, 0.22);
    text-align: center;
}

.modal-regras-rodape-script {
    font-family: var(--fonte-script);
    font-size: 1.4rem;
    color: var(--marrom-escuro);
    margin: 0 0 0.45rem;
    line-height: 1.2;
}

.modal-regras-wa-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: var(--fonte-display);
    font-weight: 600;
    font-size: 1rem;
    color: #128c7e;
    text-decoration: none;
}

.modal-regras-wa-link:hover {
    text-decoration: underline;
}

.modal-regras-wa-link svg {
    flex-shrink: 0;
    color: #25d366;
}

@media (max-width: 480px) {
    .cardapio-info-destaque {
        padding: 2.25rem 0 2rem;
    }

    .modal-regras-acoes {
        flex-direction: column-reverse;
    }

    .modal-regras-acoes .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Responsivo modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 1rem;
        align-items: flex-end;
    }

    .modal-produto {
        width: 100%;
        max-width: 100%;
        max-height: 92vh;
        max-height: 92dvh;
        border-radius: 20px 20px 0 0;
    }

    .modal-produto-img {
        height: 220px;
    }

    .modal-produto-body {
        padding: 1.75rem 1.5rem 2rem;
        max-height: calc(92vh - 220px);
    }

    .modal-produto-nome {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
        line-height: 1.25;
    }

    .modal-produto-descricao {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .modal-produto-ingredientes-wrap {
        margin-bottom: 1.5rem;
    }

    .modal-produto-pedido {
        margin-bottom: 1.75rem;
    }

    .modal-produto-whatsapp {
        min-height: 50px;
        padding: 0.85rem 1.35rem;
        font-size: 1rem;
    }

    .modal-produto-wa-row {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 0.75rem;
    }

    .modal-produto {
        max-height: 95vh;
        max-height: 95dvh;
        border-radius: 16px 16px 0 0;
    }

    .modal-produto-img {
        height: 200px;
    }

    .modal-produto-body {
        padding: 1.5rem 1.25rem 1.75rem;
        max-height: calc(95vh - 200px);
    }

    .modal-produto-nome {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .modal-produto-descricao {
        font-size: 0.95rem;
    }

    .modal-close {
        width: 40px;
        height: 40px;
        top: 0.875rem;
        right: 0.875rem;
        font-size: 1.5rem;
    }
}

/* Lista de sabores (Bolos Personalizados) */
.sabores-lista {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.sabores-lista ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.sabores-lista li {
    background: var(--branco);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: 2px solid var(--dourado);
    color: var(--marrom);
    font-weight: 500;
    transition: var(--transicao);
}

@media (max-width: 768px) {
    .sabores-lista {
        margin-bottom: 2rem;
    }

    .sabores-lista ul {
        gap: 0.65rem;
    }

    .sabores-lista li {
        padding: 0.75rem 1.15rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .sabores-lista {
        margin-bottom: 1.5rem;
    }

    .sabores-lista ul {
        gap: 0.5rem;
    }

    .sabores-lista li {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

.sabores-lista li:hover {
    background: var(--dourado);
    color: var(--branco);
}

/* Grid de doces (mais compacto) - herda responsividade de .produtos-grid */
.doces-grid.produtos-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 481px) {
    .doces-grid.produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .doces-grid.produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.35rem;
    }
}

@media (min-width: 993px) {
    .doces-grid.produtos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1201px) {
    .doces-grid.produtos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.65rem;
    }
}

.doces-grid .produto-card .produto-img {
    height: 165px;
    min-height: 165px;
    max-height: 165px;
    aspect-ratio: auto;
}

@media (max-width: 768px) {
    .doces-grid .produto-card .produto-img {
        height: 148px;
        min-height: 148px;
        max-height: 148px;
    }
}

@media (max-width: 480px) {
    .doces-grid .produto-card .produto-img {
        height: 138px;
        min-height: 138px;
        max-height: 138px;
    }
}

/* Sobremesas - fotos grandes - responsivo */
.sobremesas-grid.produtos-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 481px) {
    .sobremesas-grid.produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .sobremesas-grid.produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 993px) {
    .sobremesas-grid.produtos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1201px) {
    .sobremesas-grid.produtos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sobremesas-grid .produto-img {
    height: 235px;
    min-height: 235px;
    max-height: 235px;
    aspect-ratio: auto;
}

@media (max-width: 768px) {
    .sobremesas-grid .produto-img {
        height: 182px;
        min-height: 182px;
        max-height: 182px;
    }
}

@media (max-width: 480px) {
    .sobremesas-grid .produto-img {
        height: 165px;
        min-height: 165px;
        max-height: 165px;
    }
}

/* Destaque para salgados */
.salgados-destaque {
    text-align: center;
    padding: 1.5rem 2rem;
    background: var(--rosa-claro);
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--dourado);
}

.salgados-destaque p {
    font-size: 1.1rem;
    color: var(--marrom);
    font-weight: 500;
}

@media (max-width: 768px) {
    .salgados-destaque {
        padding: 1.5rem 1.5rem;
        margin-bottom: 2rem;
    }

    .salgados-destaque p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .salgados-destaque {
        padding: 1.25rem 1.25rem;
        margin-bottom: 1.5rem;
    }
}

/* Botão orçamento centralizado */
.btn-orcamento {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

/* ============================================
   Responsivo - Breakpoints: 1200 | 992 | 768 | 480
   ============================================ */

/* Tablet - 992px: menu hambúrguer */
@media (max-width: 992px) {
    .nav {
        padding: 1rem 0;
    }

    .logo {
        font-size: 0.95rem;
        letter-spacing: 0.16em;
    }

    .logo .logo-emphasis {
        font-size: 1.15rem;
    }

    /* Drawer premium — estilo apps / luxo (slide GPU, painel off-white) */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(340px, 88vw);
        min-width: 288px;
        height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        background: #f8f5f2;
        flex-direction: column;
        align-items: stretch;
        padding:
            calc(5.75rem + env(safe-area-inset-top, 0px))
            calc(1.35rem + env(safe-area-inset-right, 0px))
            calc(2rem + env(safe-area-inset-bottom, 0px))
            1.35rem;
        border-radius: 22px 0 0 22px;
        border: 1px solid rgba(79, 59, 50, 0.06);
        border-right: none;
        box-shadow:
            -24px 0 48px -12px rgba(36, 24, 18, 0.12),
            -8px 0 24px rgba(36, 24, 18, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.85);
        transform: translateX(105%);
        transition:
            transform 0.34s cubic-bezier(0.32, 0.72, 0, 1),
            box-shadow 0.34s ease;
        overflow-y: auto;
        overflow-x: hidden;
        gap: 0;
        z-index: 100;
        -webkit-overflow-scrolling: touch;
        will-change: transform;
    }

    .nav-menu.ativo {
        transform: translateX(0);
        box-shadow:
            -32px 0 64px -16px rgba(36, 24, 18, 0.16),
            -12px 0 32px rgba(36, 24, 18, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .nav-menu > li {
        list-style: none;
        border-bottom: 1px solid rgba(79, 59, 50, 0.07);
    }

    .nav-menu > li:last-of-type {
        border-bottom: none;
    }

    /* Destaque visual antes do CTA Contato */
    .nav-menu > li:has(a.nav-whatsapp) {
        margin-top: 0.35rem;
        padding-top: 1.1rem;
        border-top: 1px solid rgba(79, 59, 50, 0.1);
        border-bottom: none;
    }

    .nav-menu > li > a,
    .nav-dropdown-trigger {
        display: flex;
        align-items: center;
        width: 100%;
        margin: 0.2rem 0;
        padding: 1.05rem 1rem 1.05rem 1.05rem;
        border-radius: 14px;
        font-family: var(--fonte-texto);
        font-size: 1.02rem;
        font-weight: 500;
        line-height: 1.35;
        color: var(--marrom-escuro);
        -webkit-tap-highlight-color: transparent;
        transition:
            background 0.3s ease,
            color 0.3s ease,
            transform 0.3s ease,
            box-shadow 0.3s ease;
    }

    @media (hover: hover) {
        .nav-menu > li > a:hover,
        .nav-dropdown-trigger:hover {
            background: rgba(184, 146, 84, 0.1);
            transform: translateX(5px);
        }

        .nav-menu > li > a.nav-instagram:hover {
            transform: translateX(5px) scale(1.02);
        }
    }

    .nav-menu > li > a:focus-visible,
    .nav-dropdown-trigger:focus-visible {
        outline: 2px solid var(--dourado);
        outline-offset: 2px;
    }

    /* Entrada escalonada ao abrir (só com menu ativo) */
    .nav-menu.ativo > li {
        animation: navDrawerItemIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
    }

    .nav-menu.ativo > li:nth-child(1) { animation-delay: 0.04s; }
    .nav-menu.ativo > li:nth-child(2) { animation-delay: 0.08s; }
    .nav-menu.ativo > li:nth-child(3) { animation-delay: 0.12s; }
    .nav-menu.ativo > li:nth-child(4) { animation-delay: 0.16s; }
    .nav-menu.ativo > li:nth-child(5) { animation-delay: 0.2s; }
    .nav-menu.ativo > li:nth-child(6) { animation-delay: 0.24s; }

    @keyframes navDrawerItemIn {
        from {
            opacity: 0;
            transform: translateX(14px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Dropdown como accordion vertical */
    .nav-dropdown {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 0.15rem 0;
    }

    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        text-align: left;
        flex-shrink: 0;
    }

    .nav-dropdown-trigger::before {
        order: 1;
        margin-top: 0;
        opacity: 0.85;
        transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), border-top-color 0.3s ease;
    }

    .nav-dropdown.expanded .nav-dropdown-trigger::before {
        transform: rotate(180deg);
        border-top-color: var(--dourado-escuro);
    }

    .nav-dropdown-menu {
        position: static !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        margin: 0.35rem 0 0.45rem 0 !important;
        padding: 0.25rem 0 !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.65),
            0 1px 3px rgba(79, 59, 50, 0.06) !important;
        background: rgba(255, 253, 249, 0.92) !important;
        border-radius: 14px;
        border: 1px solid rgba(79, 59, 50, 0.06) !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.32, 0.72, 0, 1), padding 0.35s ease;
        flex-shrink: 0;
    }

    .nav-dropdown-menu::before {
        display: none !important;
    }

    .nav-menu.ativo .nav-dropdown.expanded .nav-dropdown-menu {
        max-height: 400px;
        padding: 0.35rem 0 !important;
    }

    .nav-dropdown-menu li {
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-dropdown-menu li + li {
        border-top: 1px solid rgba(79, 59, 50, 0.06);
    }

    .nav-dropdown-menu a {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 0.85rem 1rem 0.85rem 1.35rem;
        font-size: 0.97rem;
        font-weight: 500;
        border-radius: 0;
        transition:
            background 0.3s ease,
            padding-left 0.3s ease,
            color 0.3s ease;
    }

    @media (hover: hover) {
        .nav-dropdown-menu a:hover {
            background: rgba(184, 146, 84, 0.12);
            padding-left: 1.55rem;
        }
    }

    .nav-menu a,
    .nav-dropdown-trigger {
        text-transform: none;
        letter-spacing: 0.01em;
    }

    .nav-instagram {
        justify-content: flex-start;
        padding: 1.05rem 1rem;
        min-height: 48px;
        box-sizing: border-box;
    }

    .nav-instagram .nav-instagram-icon {
        width: 26px;
        height: 26px;
        color: var(--marrom-escuro);
        transition: color 0.3s ease, transform 0.3s ease;
    }

    @media (hover: hover) {
        .nav-instagram:hover .nav-instagram-icon {
            color: var(--dourado-escuro);
        }
    }

    .nav-menu > li > a.nav-instagram::after {
        display: none;
    }

    /* CTA Contato — gradiente premium (drawer only; desktop mantém verde) */
    .nav-whatsapp {
        justify-content: center;
        text-align: center;
        text-transform: none;
        letter-spacing: 0.04em;
        font-weight: 600;
        font-size: 0.98rem;
        padding: 1.05rem 1.35rem;
        margin: 0.15rem 0 0.35rem;
        border-radius: 16px;
        border: 1px solid rgba(255, 252, 248, 0.35);
        background: linear-gradient(
            148deg,
            #d4b876 0%,
            #b89254 35%,
            #8a6d38 68%,
            #5c4339 100%
        ) !important;
        color: #fffefb !important;
        box-shadow:
            0 10px 28px rgba(79, 59, 50, 0.22),
            0 3px 10px rgba(79, 59, 50, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.28);
        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease,
            filter 0.3s ease;
    }

    .nav-whatsapp::after {
        display: none !important;
    }

    @media (hover: hover) {
        .nav-whatsapp:hover {
            transform: scale(1.025);
            filter: brightness(1.04);
            box-shadow:
                0 14px 36px rgba(79, 59, 50, 0.28),
                0 4px 14px rgba(79, 59, 50, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.32);
        }
    }

    .nav-whatsapp:active {
        transform: scale(0.985);
    }

    .nav-toggle {
        display: flex;
        z-index: 101;
        padding: 0.65rem;
        border-radius: 12px;
        transition: background 0.3s ease, transform 0.3s ease;
    }

    .nav-toggle span {
        transition:
            transform 0.3s cubic-bezier(0.32, 0.72, 0, 1),
            opacity 0.25s ease;
    }

    .nav-toggle:active {
        transform: scale(0.96);
    }

    .nav-toggle.ativo span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.ativo span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.ativo span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(24, 18, 12, 0.42);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 99;
        animation: navOverlayIn 0.3s ease;
    }

    @keyframes navOverlayIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .nav-menu {
            transition: none;
        }

        .nav-menu > li > a,
        .nav-dropdown-trigger,
        .nav-whatsapp {
            transition: none;
        }

        .nav-menu.ativo > li {
            animation: none !important;
        }

        .nav-overlay {
            animation: none;
        }

        .nav-dropdown-menu {
            transition: none;
        }

        .nav-toggle span {
            transition: none;
        }
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 1.25rem;
        right: 1rem;
    }

    .scroll-to-top {
        bottom: 4.5rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }

    .scroll-to-top svg {
        width: 22px;
        height: 22px;
    }

    .section {
        padding: 3.5rem 0;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    body {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 7.5rem 1.5rem 4rem;
    }

    .hero-content {
        margin: 0 0.65rem;
        padding: clamp(1.25rem, 5vw, 1.65rem) clamp(1.1rem, 4vw, 1.45rem);
        border-radius: 18px;
        --glass-blur: 14px;
    }

    .hero-title {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-logo {
        width: clamp(140px, 48vw, 200px);
    }

    .hero-logo-wrap {
        margin-bottom: 0.85rem;
    }

    .hero-text {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        opacity: 0.95;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 1.5rem;
        min-height: 48px;
        font-size: 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: clamp(1.7rem, 5vw, 2.25rem);
        margin-bottom: 0.75rem;
        line-height: 1.25;
    }

    .section-subtitle {
        margin-bottom: 2.5rem;
        font-size: 1rem;
        line-height: 1.5;
    }

    .produtos-grid-home {
        gap: 1.35rem;
    }

    .produtos-grid {
        gap: 1.35rem;
        padding: 1.5rem 0 3rem;
    }

    .categoria-grid {
        gap: 1.75rem;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }

    .categoria-img {
        height: 220px;
    }

    .categoria-content {
        padding: 1.75rem;
    }

    .categoria-content h3 {
        font-size: 1.45rem;
        margin-bottom: 1rem;
        line-height: 1.25;
    }

    .categoria-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .produto-content-home,
    .produto-content {
        padding: 1.35rem 1.25rem 1.45rem;
    }

    .produto-content-home h3,
    .produto-content h3 {
        font-size: 1.28rem;
        margin-bottom: 0.65rem;
        line-height: 1.25;
    }

    .produto-content-home p,
    .produto-content p {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .produto-preco {
        margin-bottom: 1.25rem;
        font-size: 1rem;
    }

    .produto-buttons .btn-adicionar-carrinho {
        min-height: 50px;
        padding: 0.85rem 1.25rem;
    }

    .produto-buttons .btn-produto-whatsapp,
    .produto-buttons .produto-whatsapp {
        min-height: 48px;
        padding: 0.75rem 1.1rem;
        font-size: 0.78rem;
    }

    .produto-content-home .produto-buttons,
    .produto-content .produto-buttons {
        gap: 0.7rem 0.75rem;
        margin-top: auto;
        padding-top: 1rem;
    }

    .avaliacoes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .avaliacao-card {
        padding: 1.75rem;
    }

    .avaliacao-texto {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }

    .footer {
        padding: 3.5rem 0 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .footer-social {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .page-hero {
        padding: 6.5rem 1.5rem 3.5rem;
    }

    .page-hero h1 {
        font-size: clamp(1.7rem, 5vw, 2.25rem);
    }

    .page-hero p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .cta {
        padding: 3.5rem 0;
    }

    .cta-title {
        font-size: clamp(1.55rem, 4vw, 2rem);
        margin-bottom: 0.75rem;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        line-height: 1.5;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .scroll-to-top {
        bottom: 4.75rem;
        right: 1.25rem;
        width: 46px;
        height: 46px;
    }

    .scroll-to-top svg {
        width: 22px;
        height: 22px;
    }
}

/* Mobile pequeno - 480px */
@media (max-width: 480px) {
    .hero {
        padding: 7rem 1rem 3.5rem;
    }

    .hero-content {
        margin: 0 0.35rem;
        padding: 1.15rem 1rem;
        border-radius: 16px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.85rem;
    }

    .hero-logo {
        width: min(130px, 52vw);
    }

    .hero-logo-wrap {
        margin-bottom: 0.75rem;
    }

    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .hero-buttons .btn {
        max-width: 100%;
        padding: 1rem 1.25rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.55rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        margin-bottom: 2rem;
    }

    .produtos-grid-home {
        gap: 1.2rem;
    }

    .produtos-grid {
        gap: 1.2rem;
        padding: 1.25rem 0 2.5rem;
    }

    .categoria-grid {
        gap: 1.5rem;
    }

    .categoria-img {
        height: 200px;
    }

    .categoria-content {
        padding: 1.5rem;
    }

    .categoria-content h3 {
        font-size: 1.35rem;
    }

    .produto-content-home,
    .produto-content {
        padding: 1.2rem 1.1rem 1.3rem;
    }

    .produto-content-home h3,
    .produto-content h3 {
        font-size: 1.2rem;
    }

    .galeria-grid {
        gap: 0.4rem;
    }

    .galeria-item {
        aspect-ratio: 1;
    }

    .avaliacao-card {
        padding: 1.5rem;
    }

    .footer {
        padding: 3rem 0 1.25rem;
    }

    .footer-content {
        gap: 1.75rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .cta {
        padding: 3rem 0;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .scroll-to-top {
        bottom: 4.25rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }

    /* Drawer: telas estreitas — mais respiro proporcional */
    .nav-menu {
        width: min(100vw - 12px, 316px);
        min-width: 260px;
        padding: 5.35rem 1rem 1.65rem 1.05rem;
        border-radius: 18px 0 0 18px;
    }

    .nav-menu > li > a,
    .nav-dropdown-trigger {
        font-size: 0.98rem;
        padding: 0.98rem 0.88rem 0.98rem 0.95rem;
    }

    .nav-whatsapp {
        padding: 1rem 1.15rem;
        font-size: 0.94rem;
    }
}
