/* ============================================================
   K CHURRASQUEIRAS GOURMET — Design Premium
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --gold:    #C9A84C;
    --gold-lt: #E8D49A;
    --ink:     #111111;
    --ink2:    #2C2C2C;
    --muted:   #6B6B6B;
    --line:    #E4E0D8;
    --paper:   #FFFFFF;
    --soft:    #F7F5F2;
    --whats:   #1DAF5A;
    --radius:  4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }

h1, h2, h3, .font-display { font-family: 'Playfair Display', Georgia, serif; }
h1 { font-size: clamp(36px, 5vw, 64px); line-height: 1.05; font-weight: 700; }
h2 { font-size: clamp(26px, 3.5vw, 42px); line-height: 1.15; font-weight: 600; }
h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 600; }
p  { line-height: 1.7; color: var(--muted); }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 14px 28px;
    font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    border: none; border-radius: var(--radius); cursor: pointer;
    transition: all .25s ease;
}
.btn--gold  { background: var(--gold); color: #fff; }
.btn--gold:hover  { background: #b8933e; }
.btn--dark  { background: var(--ink); color: #fff; }
.btn--dark:hover  { background: #333; }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--whats { background: var(--whats); color: #fff; }
.btn--whats:hover { background: #17964d; }
.btn--wide  { width: 100%; }

/* TOPBAR */
.topbar { background: var(--ink); color: #ccc; font-size: 12px; font-weight: 400; letter-spacing: .04em; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 36px; gap: 16px; }
.topbar a { color: var(--gold-lt); transition: color .2s; }
.topbar a:hover { color: #fff; }

/* NAV (compartilhado com o header duas linhas mais abaixo) */
.nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; font-size: 13px; font-weight: 500; letter-spacing: .03em; }
.nav__link { padding: 8px 14px; border-radius: var(--radius); color: var(--ink2); transition: color .2s; white-space: nowrap; }
.nav__link:hover { color: var(--gold); }

.nav__all { position: relative; padding-bottom: 16px; margin-bottom: -16px; }
.nav__all-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: var(--ink); color: #fff;
    border: none; border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 12px; font-weight: 600; letter-spacing: .06em;
    text-transform: uppercase; cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}
.nav__all-btn:hover,
.nav__all.is-open .nav__all-btn { background: var(--gold); }

.nav__dropdown { position: relative; padding-bottom: 16px; margin-bottom: -16px; }
.nav__dropdown-trigger {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 8px 14px;
    background: none; border: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px; font-weight: 500;
    color: var(--ink2); cursor: pointer;
    border-radius: var(--radius);
    transition: color .2s;
    white-space: nowrap;
}
.nav__dropdown-trigger:hover,
.nav__dropdown.is-open .nav__dropdown-trigger,
.nav__dropdown:hover .nav__dropdown-trigger { color: var(--gold); }
.nav__arrow { font-size: 9px; display: inline-block; transition: transform .22s ease; }
.nav__dropdown.is-open .nav__arrow,
.nav__dropdown:hover .nav__arrow { transform: rotate(180deg); }

.nav__submenu {
    position: absolute; top: 100%; left: 0;
    min-width: 230px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 16px 40px rgba(0,0,0,.10);
    padding: 8px 0;
    z-index: 200;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .12s ease, transform .12s ease, visibility .12s;
}
.nav__submenu--all { min-width: 260px; }

.nav__dropdown.is-open .nav__submenu,
.nav__all.is-open .nav__submenu,
.nav__dropdown:hover .nav__submenu,
.nav__all:hover .nav__submenu {
    opacity: 1; visibility: visible;
    pointer-events: auto; transform: translateY(0);
}

.nav__submenu li {
    opacity: 0; transform: translateX(-4px);
    transition: opacity .1s ease, transform .1s ease;
    transition-delay: calc(var(--i, 0) * 20ms);
}
.nav__dropdown.is-open .nav__submenu li,
.nav__all.is-open .nav__submenu li,
.nav__dropdown:hover .nav__submenu li,
.nav__all:hover .nav__submenu li {
    opacity: 1; transform: translateX(0);
    transition-delay: 0ms;
}

.nav__submenu a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px;
    font-size: 13px; font-weight: 400; color: var(--ink2);
    transition: background .15s, color .15s, padding .15s;
}
.nav__submenu a::before {
    content: ''; width: 4px; height: 4px;
    border-radius: 50%; background: var(--gold);
    flex-shrink: 0; opacity: 0;
    transition: opacity .15s;
}
.nav__submenu a:hover { background: var(--soft); color: var(--gold); padding-left: 24px; }
.nav__submenu a:hover::before { opacity: 1; }

.nav__submenu .ver-tudo-link { font-weight: 600; color: var(--gold); border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.nav__submenu .ver-tudo-link::before { display: none; }

.header__whats {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: var(--whats); color: #fff;
    border-radius: var(--radius);
    font-size: 13px; font-weight: 600;
    transition: background .2s;
    white-space: nowrap; flex-shrink: 0;
}
.header__whats:hover { background: #17964d; }

/* BARRA DE PESQUISA (versão antiga de uma linha só — mantida por compatibilidade) */
.header__search {
    display: flex; align-items: center;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;
    transition: border-color .2s, box-shadow .2s;
    max-width: 220px;
    height: 38px;
    box-sizing: border-box;
}
.header__search:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
.header__search input {
    background: none; border: none; outline: none;
    padding: 0 4px 0 14px;
    font-size: 13px; font-family: inherit; color: var(--ink);
    width: 140px; height: 100%;
}
.header__search input::placeholder { color: var(--muted); }
.header__search button {
    background: none; border: none;
    padding: 0 12px;
    cursor: pointer; color: var(--muted);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; height: 100%;
}
.header__search button:hover { color: var(--gold); }

@media (max-width: 920px) {
    .header__search { max-width: 160px; }
    .header__search input { width: 90px; }
}
@media (max-width: 768px) {
    .header__search { display: none; }
}

/* HAMBÚRGUER */
.nav-toggle {
    display: none; flex-direction: column;
    justify-content: center; gap: 5px;
    width: 40px; height: 40px; padding: 6px;
    background: none; border: 1px solid var(--line);
    border-radius: var(--radius); cursor: pointer; flex-shrink: 0;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO / BANNER SLIDER
   As imagens do banner já vêm prontas (com texto embutido na própria arte),
   então o hero não desenha nenhum texto por cima — só exibe a imagem de fundo. */
.hero { position: relative; overflow: hidden; background: var(--ink); }
.hero__slides { display: flex; width: 100%; height: 100%; }
.hero__slide {
    min-width: 100%; position: relative;
    aspect-ratio: 1920 / 550;
    display: flex; align-items: center;
    background-size: cover; background-position: center;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: background .2s, transform .2s; }
.hero__dot.is-active { background: var(--gold); transform: scale(1.3); }

.hero__prev, .hero__next {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; width: 44px; height: 44px;
    background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; transition: background .2s;
}
.hero__prev:hover, .hero__next:hover { background: var(--gold); border-color: var(--gold); }
.hero__prev { left: 20px; }
.hero__next { right: 20px; }

/* FEATURES BAR */
.features { background: var(--soft); border-bottom: 1px solid var(--line); }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.features__item {
    background: var(--soft); padding: 22px 28px;
    display: flex; align-items: center; justify-content: center; gap: 14px;
    transition: background .2s;
}
.features__item:hover { background: #fff; }
.features__icon {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--gold); color: #fff;
    border-radius: var(--radius); font-size: 18px;
}
.features__text strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.features__text span   { font-size: 12px; color: var(--muted); }

/* SEÇÕES GENÉRICAS */
.section { padding: 80px 0; }
.section--soft { background: var(--soft); }
.section--dark { background: var(--ink); color: #fff; }
.section--dark p { color: rgba(255,255,255,.65); }
.section--dark h2 { color: #fff; }

.section__head { margin-bottom: 48px; }
.section__head .label {
    display: inline-block; margin-bottom: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--gold);
}
.section__head h2 { margin-bottom: 12px; }
.section__head p  { max-width: 560px; }

.gold-line { display: block; width: 48px; height: 2px; background: var(--gold); margin: 16px 0 0; }

/* PRODUCT CARDS */
.product-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 24px; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s, transform .25s; display: flex; flex-direction: column; }
.product-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.10); transform: translateY(-4px); }
.product-card__image {
    position: relative; padding: 24px;
    background: var(--soft);
    display: flex; align-items: center; justify-content: center;
    min-height: 240px;
}
.product-card__image img { width: 100%; aspect-ratio: 1; object-fit: contain; transition: transform .3s ease; }
.product-card:hover .product-card__image img { transform: scale(1.05); }
.badge {
    position: absolute; top: 12px; left: 12px;
    padding: 5px 10px; font-size: 11px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    background: var(--gold); color: #fff; border-radius: 2px;
}
.product-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card__brand { font-size: 15px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.product-card h3 {
    font-size: 25px;
    line-height: 1.35;
    margin-bottom: 0;
    color: var(--ink);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.price { margin-top: auto; }
.price del { display: block; font-size: 12px; color: var(--muted); }
.price strong { display: block; font-size: 20px; font-weight: 600; color: var(--ink); }

/* CATEGORY GRID */
.category-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 24px; }
.category-card { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; aspect-ratio: 3/4; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 24px;
}
.category-card__overlay h3 { color: #fff; margin-bottom: 6px; font-size: 20px; }
.category-card__overlay span {
    font-size: 12px; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; color: var(--gold-lt);
    display: flex; align-items: center; gap: 6px;
}
.category-card__overlay span::after { content: '→'; }

/* BANNER 3 COLUNAS */
.banner-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.mini-banner { position: relative; overflow: hidden; border-radius: var(--radius); min-height: 220px; display: flex; align-items: flex-end; background: var(--soft); }
.mini-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.mini-banner:hover img { transform: scale(1.05); }
.mini-banner__content {
    position: relative; z-index: 2; padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
    width: 100%;
}
.mini-banner__content h3 { color: #fff; font-size: 20px; margin-bottom: 4px; }
.mini-banner__content p  { color: rgba(255,255,255,.75); font-size: 13px; margin: 0; }

/* MARCAS / LOGOS */
.brands-strip { padding: 48px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brands-strip__grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 32px 48px; }
.brands-strip__grid img { height: 36px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .6; transition: filter .2s, opacity .2s; }
.brands-strip__grid img:hover { filter: grayscale(0); opacity: 1; }

/* FLOATING WHATSAPP */
.floating-whats {
    position: fixed; right: 20px; bottom: 80px; z-index: 300;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 20px;
    background: var(--whats); color: #fff;
    border-radius: 50px;
    font-size: 14px; font-weight: 700;
    box-shadow: 0 8px 24px rgba(29,175,90,.4);
    transition: transform .2s, box-shadow .2s;
}
.floating-whats:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(29,175,90,.45); }
.floating-whats svg { width: 22px; height: 22px; }

/* BANNER COOKIES */
.cookie-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
    background: var(--ink); color: #ddd;
    padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform .4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar p { margin: 0; font-size: 13px; line-height: 1.6; color: #ccc; flex: 1; min-width: 240px; }
.cookie-bar a { color: var(--gold-lt); }
.cookie-bar__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-bar .btn { padding: 10px 20px; font-size: 12px; min-width: 0; }

/* FOOTER */
.footer { background: #0D0D0D; color: #aaa; padding: 64px 0 24px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid #2a2a2a; }
.footer__logo { height: 44px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer__about p { font-size: 13px; line-height: 1.7; color: #888; max-width: 280px; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
    width: 36px; height: 36px;
    background: #1e1e1e; border: 1px solid #333;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: #888; font-size: 16px;
    transition: background .2s, color .2s, border-color .2s;
}
.footer__social a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: #fff; margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 13px; color: #888; transition: color .2s; }
.footer__links a:hover { color: var(--gold); }
.footer__contact-item { font-size: 13px; color: #888; margin-bottom: 10px; display: flex; gap: 8px; align-items: flex-start; }
.footer__bottom {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; padding-top: 24px;
    font-size: 12px; color: #555; flex-wrap: wrap;
}
.footer__bottom a { color: #666; transition: color .2s; }
.footer__bottom a:hover { color: var(--gold); }

/* PAGE INTERIOR */
.page-title { background: var(--soft); padding: 56px 0; border-bottom: 1px solid var(--line); }
.page-title .label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.page-title h1 { margin-bottom: 0; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }

.product-page { padding: 40px 0 80px; }
.product-page__grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,.9fr); gap: 48px; align-items: start; }
.product-page__gallery {
    border: 1px solid var(--line); border-radius: var(--radius);
    background: var(--soft);
    display: flex; align-items: center; justify-content: center;
    min-height: 420px; padding: 32px;
}
.product-page__gallery img { width: 100%; max-height: 420px; object-fit: contain; }
.product-page__info h1 { margin-bottom: 10px; }
.product-page__price { margin: 24px 0; }
.product-page__price del { font-size: 14px; color: var(--muted); }
.product-page__price strong { display: block; font-size: 32px; font-weight: 600; }
.product-description { color: var(--muted); line-height: 1.8; font-size: 15px; }

/* GALERIA DO PRODUTO */
.gallery { display: flex; flex-direction: column; gap: 16px; }
.gallery__main {
    border: 1px solid var(--line); border-radius: var(--radius);
    background: var(--soft);
    display: flex; align-items: center; justify-content: center;
    min-height: 420px; padding: 24px;
    position: relative; overflow: hidden;
}
.gallery__main img { max-width: 100%; max-height: 420px; object-fit: contain; transition: opacity .2s ease; cursor: zoom-in; }
.gallery__thumbs { display: flex; flex-wrap: wrap; gap: 10px; }
.gallery__thumb {
    width: 80px; height: 80px;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    overflow: hidden; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: border-color .2s;
    flex-shrink: 0;
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.gallery__thumb.is-active { border-color: var(--gold); }
.gallery__thumb:hover { border-color: var(--gold); }

.lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.9); align-items: center; justify-content: center; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox__close { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 36px; cursor: pointer; background: none; border: none; line-height: 1; }
.lightbox__prev, .lightbox__next {
    position: absolute; top: 50%; transform: translateY(-50%);
    color: #fff; font-size: 48px; cursor: pointer;
    background: rgba(255,255,255,.1); border: none;
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.2); }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

/* Contato */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info-item__icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--soft); border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 18px;
}
.contact-info-item strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-info-item span  { font-size: 13px; color: var(--muted); }

/* RESPONSIVO */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .footer__grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav {
        display: none; position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        border-top: 1px solid var(--line);
        border-bottom: 3px solid var(--gold);
        flex-direction: column; align-items: stretch;
        padding: 12px 20px; gap: 0;
        box-shadow: 0 12px 32px rgba(0,0,0,.08);
    }
    .nav.is-open { display: flex; }
    .nav__link, .nav__dropdown-trigger, .nav__all-btn {
        width: 100%; text-align: left; justify-content: space-between;
        padding: 12px 0; border-radius: 0;
        border-bottom: 1px solid var(--line);
        font-size: 14px;
    }
    .nav__all-btn { background: none; color: var(--ink); font-size: 14px; text-transform: none; letter-spacing: 0; }
    .nav__all-btn:hover, .nav__all.is-open .nav__all-btn { background: none; color: var(--gold); }
    .nav__all, .nav__dropdown { width: 100%; padding-bottom: 0; margin-bottom: 0; }
    .nav__submenu, .nav__submenu--all {
        position: static; transform: none !important;
        box-shadow: none; border: none; border-top: none;
        background: var(--soft); border-radius: 0;
        max-height: 0; overflow: hidden; opacity: 1;
        visibility: visible; pointer-events: auto;
        transition: max-height .3s ease;
        min-width: 0; padding: 0;
    }
    .nav__dropdown.is-open .nav__submenu,
    .nav__all.is-open .nav__submenu { max-height: 800px; }
    .nav__submenu li { opacity: 1 !important; transform: none !important; transition-delay: 0ms !important; }
    .nav__submenu a { padding: 10px 16px; border-bottom: 1px solid var(--line); }
    .nav__submenu a::before { display: none; }
    .header__whats span { display: none; }

    .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
    .category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .banner-grid { grid-template-columns: 1fr; }
    .features__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .product-page__grid, .contact-grid, .gallery { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .gallery__main { min-height: 280px; }
    .gallery__thumb { width: 64px; height: 64px; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: 1fr; }
    .topbar__inner { flex-direction: column; align-items: flex-start; padding: 8px 0; min-height: auto; gap: 4px; }
}

/* ============================================================
   HEADER DUAS LINHAS — Topo (logo+busca+whats) + Nav (menu)
   ============================================================ */

/* ── Topo ── */
.header-top {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
}
.header-top__inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo img { height: 52px; width: auto; }

/* ── Barra de busca central ── */
.header-search {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f7f5f2;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    height: 44px;
    transition: border-color .2s, box-shadow .2s;
    max-width: 680px;
}
.header-search:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,.12);
    background: #fff;
}
.header-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 0 16px;
    font-size: 14px;
    font-family: inherit;
    color: var(--ink);
    height: 100%;
}
.header-search input::placeholder { color: var(--muted); }
.header-search button {
    background: none;
    border: none;
    padding: 0 18px;
    cursor: pointer;
    color: var(--muted);
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
    transition: color .2s;
}
.header-search button:hover { color: var(--gold); }

/* ── WhatsApp topo ── */
.header-top__whats {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--whats);
    color: #fff;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    transition: background .2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.header-top__whats:hover { background: #17964d; }

/* ── BOTÃO FRANQUEADOS ── */
.header-top__franchise {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: var(--ink);
    color: var(--gold);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, color .2s;
    text-decoration: none;
    border: 2px solid var(--gold);
    letter-spacing: .02em;
}
.header-top__franchise:hover {
    background: var(--gold);
    color: #fff;
}
.header-top__franchise svg { flex-shrink: 0; }

/* ── Header Nav (menu) ── */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--ink);
    border-bottom: none;
    backdrop-filter: none;
}
.header .nav {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
    min-height: 48px;
}
.header .nav__link {
    color: rgba(255,255,255,.85);
    padding: 14px 16px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    transition: color .2s, background .2s;
}
.header .nav__link:hover { color: var(--gold); background: rgba(255,255,255,.05); }

.header .nav__all-btn {
    background: var(--gold);
    color: #fff;
    border-radius: 0;
    padding: 14px 18px;
    font-size: 12px;
    height: 48px;
}
.header .nav__all-btn:hover,
.header .nav__all.is-open .nav__all-btn { background: #b8933e; }

.header .nav__dropdown-trigger {
    color: rgba(255,255,255,.85);
    padding: 14px 16px;
    border-radius: 0;
    font-size: 13px;
    height: 48px;
    transition: color .2s, background .2s;
}
.header .nav__dropdown-trigger:hover,
.header .nav__dropdown:hover .nav__dropdown-trigger,
.header .nav__dropdown.is-open .nav__dropdown-trigger {
    color: var(--gold);
    background: rgba(255,255,255,.05);
}

/* ── RESPONSIVO (header duas linhas) ── */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .header-top__whats span { display: none; }
    .header-search { max-width: none; }

    .header .nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--ink);
        flex-direction: column;
        align-items: stretch;
        padding: 8px 0;
        gap: 0;
        box-shadow: 0 12px 32px rgba(0,0,0,.3);
        z-index: 200;
    }
    .header .nav.is-open { display: flex; }

    .header .nav__link,
    .header .nav__dropdown-trigger,
    .header .nav__all-btn {
        width: 100%; text-align: left;
        justify-content: space-between;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        border-radius: 0;
        height: auto;
        font-size: 14px;
    }
    .header .nav__all-btn {
        background: none;
        color: var(--gold-lt);
        text-transform: none;
        letter-spacing: 0;
        font-size: 14px;
    }
    .nav__all, .nav__dropdown { width: 100%; padding-bottom: 0; margin-bottom: 0; }
    .nav__submenu, .nav__submenu--all {
        position: static; transform: none !important;
        box-shadow: none; border: none;
        background: rgba(255,255,255,.05);
        border-radius: 0; max-height: 0;
        overflow: hidden; opacity: 1;
        visibility: visible; pointer-events: auto;
        transition: max-height .3s ease;
        min-width: 0; padding: 0;
    }
    .nav__dropdown.is-open .nav__submenu,
    .nav__all.is-open .nav__submenu { max-height: 800px; }
    .nav__submenu li { opacity: 1 !important; transform: none !important; transition-delay: 0ms !important; }
    .nav__submenu a { padding: 10px 28px; border-bottom: 1px solid rgba(255,255,255,.05); color: rgba(255,255,255,.7); }
    .nav__submenu a:hover { color: var(--gold); background: rgba(255,255,255,.05); padding-left: 32px; }
    .nav__submenu a::before { display: none; }
}

/* ============================================================
   MOBILE FIXES
   ============================================================ */
@media (max-width: 768px) {

    /* Esconder barra de busca no mobile */
    .header-search { display: none !important; }

    /* Header topo compacto */
    .header-top__inner { gap: 12px; padding: 10px 0; }
    .logo img { height: 40px; }

    /* Botão WhatsApp menor no mobile */
    .header-top__whats {
        padding: 8px 12px;
        font-size: 12px;
    }

    /* Botão Franqueados escondido no mobile (o menu já tem o link) */
    .header-top__franchise { display: none; }

    /* Cookie bar compacta */
    .cookie-bar {
        padding: 12px 16px;
        flex-direction: column;
        gap: 10px;
    }
    .cookie-bar p { font-size: 12px; min-width: 0; }
    .cookie-bar__actions { width: 100%; justify-content: flex-end; }
    .cookie-bar .btn { padding: 8px 16px; font-size: 12px; }

    /* Grid de produtos 2 colunas no mobile */
    .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
    .product-card__image { min-height: 160px; padding: 12px; }
    .product-card__body { padding: 12px; min-height: auto; gap: 8px; }
    .product-card h3 { font-size: 12px; }

    /* Topbar empilhado */
    .topbar__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 6px 0;
        min-height: auto;
        gap: 2px;
        font-size: 11px;
    }

    /* Features 1 coluna */
    .features__grid { grid-template-columns: 1fr; }

    /* Footer 1 coluna */
    .footer__grid { grid-template-columns: 1fr; gap: 24px; }
    .footer { padding: 40px 0 16px; }

    /* Galeria produto */
    .product-page__grid { grid-template-columns: 1fr; gap: 24px; }
    .gallery__main { min-height: 260px; padding: 16px; }
    .gallery__thumb { width: 60px; height: 60px; }

    /* Seção padding menor */
    .section { padding: 40px 0; }
    .section__head { margin-bottom: 28px; }

    /* Categoria grid 2 colunas */
    .category-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }

    /* Banner grid 1 coluna */
    .banner-grid { grid-template-columns: 1fr; }

    /* Related products */
    .related { padding: 36px 0; }
}

@media (max-width: 380px) {
    .product-grid { grid-template-columns: 1fr; }
    .header-top__whats { display: none; }
}

/* BOTÃO WHATS ALINHADO NO CARD */
.product-card .btn--whats { margin-top: auto; }

/* ============================================================
   CORREÇÕES — CARD DE PRODUTO
   ============================================================ */

/* Nome do produto no card — corrige estilo do link sobrepondo o h3 */
.product-card__name-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card__name-link:hover {
    color: var(--gold);
}

/* Categoria do produto no card — aumenta tamanho */
.product-card__brand {
    font-size: 13px !important;
    font-weight: 700;
    letter-spacing: .06em;
}

/* ============================================================
   RODAPÉ — LOGO (versão usada no includes/footer.php)
   ============================================================ */
img.footer__logo {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}