/* =========================================================
   DTRONE KIMONOS — Estilo principal (mobile-first)
   Layout claro/limpo inspirado em referências de e-commerce
   de artigos de combate. Mesmos nomes de classes de sempre —
   só a aparência mudou.
========================================================= */

:root {
    --red: #b8892f;
    --red-dark: #8f6a20;
    --black: #16171b;
    --ink: #1c1d21;
    --gray-900: #2b2c31;
    --gray-700: #6b6d75;
    --gray-400: #9497a1;
    --gray-200: #e7e8ec;
    --gray-100: #f4f4f6;
    --surface: #f6f6f8;
    --white: #ffffff;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 14px 34px rgba(20,20,30,.08);
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --header-h: 70px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 46px); }
body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--white);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 62px;
}
h1,h2,h3,h4,h5 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .3px; margin: 0 0 .5em; color: var(--black); font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: var(--font-body); cursor: pointer; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 18px; }
.section { padding: 44px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 30px; }
.section-header h2 { font-size: 1.5rem; letter-spacing: .5px; }
.section-header h2 span { color: var(--red); }
.section-header p { color: var(--gray-700); }
.text-red { color: var(--red); }
.bg-soft { background: var(--surface); }

/* ---------- Botões ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px; border-radius: 3px; border: 1.5px solid transparent;
    font-weight: 700; text-transform: uppercase; font-size: .76rem; letter-spacing: .8px;
    transition: all .2s ease; cursor: pointer; white-space: nowrap; font-family: var(--font-body);
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { border-color: var(--black); color: var(--black); background: transparent; }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--gray-900); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: .68rem; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- Barra de anúncio (topo, com animação) ---------- */
.announce-bar { background: var(--black); color: var(--white); overflow: hidden; white-space: nowrap; height: 38px; display: flex; align-items: center; }
.announce-track { display: inline-flex; align-items: center; gap: 40px; animation: scrollAnnounce 22s linear infinite; padding-left: 100%; }
.announce-track span { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; display: inline-flex; align-items: center; gap: 8px; }
.announce-track i { color: var(--red); font-size: .7rem; }
@keyframes scrollAnnounce { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}
.header-inner { display: flex; align-items: center; gap: 14px; height: var(--header-h); }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 56px; width: auto; display: block; }

/* ---------- Página de detalhe do evento ---------- */
.event-hero { margin-bottom: 30px; }
.event-hero-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/7; background: var(--surface); border: 1px solid var(--gray-200); margin-bottom: 20px; }
.event-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.event-hero-info { display: flex; gap: 18px; align-items: flex-start; }
.event-date-box-lg { width: 78px; height: 78px; flex-shrink: 0; }
.event-date-box-lg strong { font-size: 1.6rem; }
.event-hero-info h1 { font-size: 1.5rem; margin-bottom: 10px; }
.event-meta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.event-meta-row span { font-size: .82rem; color: var(--gray-700); font-weight: 600; }
.event-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.event-detail-grid { align-items: flex-start; margin-top: 10px; }
.event-block { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; }
.event-block h3 { font-size: .92rem; margin-bottom: 12px; }
.event-map { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--gray-200); }
.event-map iframe { width: 100%; height: 100%; border: 0; }
.event-summary-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--gray-100); font-size: .84rem; color: var(--gray-900); font-weight: 600; }
.event-summary-list li:last-child { border-bottom: none; }
@media (min-width: 992px) {
    .event-detail-grid { grid-template-columns: 2fr 1fr; gap: 30px; }
}
.header-search { display: none; flex: 1; position: relative; max-width: 480px; margin: 0 auto; }
.header-search input { width: 100%; padding: 10px 42px 10px 16px; border: 1.5px solid var(--gray-200); border-radius: 50px; font-size: .84rem; background: var(--surface); font-family: var(--font-body); }
.header-search input:focus { outline: none; border-color: var(--black); background: var(--white); }
.header-search button { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); background: var(--black); color: #fff; border: none; width: 32px; height: 32px; border-radius: 50%; }
.header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.icon-btn { position: relative; font-size: 1.05rem; color: var(--black); width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .2s; }
.icon-btn:hover { background: var(--gray-100); }
.cart-count {
    position: absolute; top: -1px; right: -1px; background: var(--red); color: #fff;
    font-size: .6rem; font-weight: 700; border-radius: 50%; width: 17px; height: 17px;
    display: flex; align-items: center; justify-content: center;
}
.burger { display: flex; flex-direction: column; gap: 5px; width: 22px; background: none; border: none; flex-shrink: 0; }
.burger span { display: block; height: 2px; background: var(--black); border-radius: 2px; }

/* Faixa de categorias por baixo do header */
.main-nav { border-top: 1px solid var(--gray-100); display: none; }
.category-track { display: flex; gap: 26px; overflow-x: auto; padding: 12px 18px; scrollbar-width: none; }
.category-track::-webkit-scrollbar { display: none; }
.category-track a { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--gray-900); white-space: nowrap; position: relative; padding-bottom: 3px; transition: color .2s; }
.category-track a:hover, .category-track a.active { color: var(--red); }

/* Mobile nav drawer */
.mobile-nav {
    position: fixed; top: 0; right: -100%; width: 82%; max-width: 340px;
    height: 100dvh; background: var(--white); z-index: 1400;
    transition: right .3s ease; overflow-y: auto; padding: 22px 20px;
    box-shadow: -10px 0 30px rgba(0,0,0,.12);
}
.mobile-nav.open { right: 0; }
.mobile-nav a { display: block; padding: 14px 2px; font-size: .92rem; text-transform: uppercase; font-weight: 600; letter-spacing: .3px; border-bottom: 1px solid var(--gray-100); color: var(--ink); }
.mobile-search { display: flex; gap: 8px; margin-bottom: 10px; }
.mobile-search input { flex: 1; padding: 10px 14px; border-radius: 50px; border: 1.5px solid var(--gray-200); font-size: .84rem; }
.mobile-search button { background: var(--black); color: #fff; border: none; width: 40px; border-radius: 50%; }
.nav-overlay { position: fixed; inset: 0; background: rgba(15,15,20,.5); z-index: 1300; opacity: 0; pointer-events: none; transition: opacity .3s; }
.nav-overlay.open { opacity: 1; pointer-events: auto; }

/* ---------- Bottom mobile nav ---------- */
.bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
    background: var(--white); border-top: 1px solid var(--gray-200);
    display: flex; justify-content: space-around; padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
}
.bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: .6rem; color: var(--gray-400); text-transform: uppercase; font-weight: 700; position: relative; }
.bottom-nav a i { font-size: 1.1rem; }
.bottom-nav a.active { color: var(--red); }
@media (min-width: 992px) { .bottom-nav { display: none; } }

/* ---------- Hero ---------- */
.hero {
    position: relative; min-height: 68vh; display: flex; align-items: center;
    background: linear-gradient(100deg, rgba(15,15,20,.82) 30%, rgba(15,15,20,.35)), url('../img/hero-bg.jpg') center/cover no-repeat;
    margin-bottom: 4px;
}
.hero-content { max-width: 600px; }
.hero-tag { display: inline-block; color: var(--red); font-weight: 700; letter-spacing: 2.5px; font-size: .72rem; margin-bottom: 14px; text-transform: uppercase; }
.hero h1 { font-size: 2rem; line-height: 1.15; margin-bottom: 16px; color: #fff; font-weight: 800; }
.hero h1 span { color: var(--red); }
.hero p { color: rgba(255,255,255,.78); margin-bottom: 26px; font-size: .96rem; max-width: 460px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-actions .btn-outline { border-color: #fff; color: #fff; }
.hero-actions .btn-outline:hover { background: #fff; color: var(--black); }
.hero-badges { display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
.hero-badges div { text-align: left; }
.hero-badges strong { display: block; font-family: var(--font-head); font-size: 1.3rem; color: #fff; }
.hero-badges span { font-size: .68rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .3px; }

/* ---------- Slideshow da Home ---------- */
.hero-slideshow { position: relative; overflow: hidden; background: var(--black); padding: 0; }
.hero-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    display: flex; align-items: center; opacity: 0; visibility: hidden;
    transition: opacity 1s ease; z-index: 1;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(15,15,20,.82) 30%, rgba(15,15,20,.35)); }
.hero-slide .container { position: relative; z-index: 2; width: 100%; }
.hero-dots { position: absolute; bottom: 20px; left: 0; right: 0; z-index: 5; display: flex; justify-content: center; gap: 8px; }
.hero-dot { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.6); background: transparent; padding: 0; transition: .2s; }
.hero-dot.active { background: var(--red); border-color: var(--red); width: 22px; border-radius: 5px; }
.hero-arrows { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: none; justify-content: space-between; padding: 0 16px; z-index: 5; pointer-events: none; }
.hero-arrow { pointer-events: auto; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; border: none; backdrop-filter: blur(4px); transition: background .2s; }
.hero-arrow:hover { background: rgba(255,255,255,.3); }
@media (min-width: 768px) { .hero-arrows { display: flex; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .5s ease, transform .5s ease; }
.reveal-scale.in-view { opacity: 1; transform: scale(1); }
[data-delay="1"] { transition-delay: .07s; }
[data-delay="2"] { transition-delay: .14s; }
[data-delay="3"] { transition-delay: .21s; }
[data-delay="4"] { transition-delay: .28s; }

/* ---------- Categorias ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.cat-card {
    position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1;
    background: var(--surface); display: flex; align-items: flex-end; padding: 0;
    border: 1px solid var(--gray-200); transition: box-shadow .25s, transform .25s;
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.cat-card span {
    position: relative; width: 100%; font-family: var(--font-head); text-transform: uppercase; font-weight: 700;
    font-size: .8rem; color: var(--white); letter-spacing: .3px; padding: 14px 12px;
    background: linear-gradient(0deg, rgba(0,0,0,.62), transparent);
}

/* ---------- Produtos ---------- */
.product-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { padding: 8px 16px; border-radius: 50px; border: 1.5px solid var(--gray-200); font-size: .72rem; text-transform: uppercase; font-weight: 700; color: var(--gray-700); transition: .2s; }
.chip:hover, .chip.active { border-color: var(--black); color: var(--white); background: var(--black); }
select.sort-select { background: var(--white); color: var(--ink); border: 1.5px solid var(--gray-200); padding: 10px 14px; border-radius: 6px; font-size: .78rem; }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
.product-card {
    background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
    overflow: hidden; transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.product-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--surface); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; mix-blend-mode: multiply; }
.product-card:hover .product-thumb img { transform: scale(1.06); }
.badge { position: absolute; top: 10px; left: 10px; background: var(--red); color: #fff; font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; padding: 5px 10px; border-radius: 3px; }
.badge-out { background: var(--gray-700); }
.product-info { padding: 14px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.product-cat { font-size: .64rem; text-transform: uppercase; color: var(--gray-400); font-weight: 700; letter-spacing: .6px; }
.product-name { font-size: .86rem; font-weight: 600; color: var(--ink); text-transform: none; margin: 0; line-height: 1.35; font-family: var(--font-body); }
.product-price { margin-top: auto; display: flex; align-items: baseline; gap: 8px; padding-top: 6px; }
.price-now { font-family: var(--font-head); color: var(--black); font-size: 1.02rem; font-weight: 700; }
.product-card .price-now { color: var(--red); }
.price-old { text-decoration: line-through; color: var(--gray-400); font-size: .76rem; }
.product-add { margin-top: 10px; }

/* ---------- Página de produto ---------- */
.product-page { padding-top: 30px; }
.product-gallery-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; background: var(--surface); margin-bottom: 12px; border: 1px solid var(--gray-200); }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.thumb-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
.thumb-row img { width: 66px; height: 66px; object-fit: cover; border-radius: var(--radius-sm); border: 2px solid var(--gray-200); cursor: pointer; flex-shrink: 0; background: var(--surface); }
.thumb-row img.active { border-color: var(--red); }
.product-detail h1 { font-size: 1.35rem; margin-bottom: 6px; letter-spacing: 0; }
.product-detail .product-price { font-size: 1.4rem; margin-bottom: 14px; padding-top: 0; }
.stock-info { font-size: .8rem; margin-bottom: 16px; font-weight: 600; }
.stock-ok { color: #1e9e52; }
.stock-low { color: #c07800; }
.stock-out { color: var(--gray-400); }
.variation-group { margin-bottom: 18px; }
.variation-group label.group-label { display: block; font-size: .72rem; text-transform: uppercase; font-weight: 700; color: var(--gray-700); margin-bottom: 8px; letter-spacing: .4px; }
.variation-options { display: flex; gap: 8px; flex-wrap: wrap; }
.variation-options input { display: none; }
.variation-options span {
    display: inline-block; padding: 9px 15px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
    font-size: .78rem; font-weight: 700; transition: .2s; background: var(--white);
}
.variation-options input:checked + span { border-color: var(--black); background: var(--black); color: var(--white); }
.qty-selector { display: inline-flex; align-items: center; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; }
.qty-selector button { background: var(--surface); border: none; color: var(--ink); width: 38px; height: 44px; font-size: 1.1rem; }
.qty-selector input { width: 44px; text-align: center; background: transparent; border: none; color: var(--ink); font-size: .95rem; }
.buy-row { display: flex; gap: 12px; margin: 20px 0; flex-wrap: wrap; }
.product-description { margin-top: 30px; border-top: 1px solid var(--gray-200); padding-top: 22px; color: var(--gray-900); }
.trust-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--gray-100); }
.trust-row div { display: flex; align-items: center; gap: 8px; font-size: .74rem; color: var(--gray-700); font-weight: 600; }
.trust-row i { color: var(--red); }

/* ---------- Carrinho ---------- */
.cart-page { padding-top: 30px; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--gray-200); align-items: center; }
.cart-item img { width: 74px; height: 74px; object-fit: cover; border-radius: var(--radius-sm); background: var(--surface); mix-blend-mode: multiply; border: 1px solid var(--gray-200); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 { font-family: var(--font-body); text-transform: none; font-size: .88rem; margin: 0 0 4px; font-weight: 600; }
.cart-item-info small { color: var(--gray-400); }
.cart-item-remove { color: var(--gray-400); font-size: 1rem; }
.cart-item-remove:hover { color: var(--red); }
.summary-box { background: var(--surface); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: .86rem; color: var(--gray-700); }
.summary-row.total { color: var(--black); font-weight: 700; font-size: 1.05rem; border-top: 1px solid var(--gray-200); margin-top: 8px; padding-top: 14px; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--gray-700); }
.empty-state i { font-size: 2.6rem; color: var(--gray-200); margin-bottom: 16px; display: block; }

/* ---------- Formulários ---------- */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .72rem; text-transform: uppercase; font-weight: 700; color: var(--gray-700); margin-bottom: 6px; letter-spacing: .4px; }
.form-control {
    width: 100%; padding: 12px 15px; background: var(--white); border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm); color: var(--ink); font-size: .9rem; font-family: var(--font-body);
    transition: border-color .2s;
}
.form-control:focus { outline: none; border-color: var(--black); }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
.auth-card { max-width: 440px; margin: 0 auto; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow); }
.payment-options { display: grid; gap: 10px; }
.payment-option { display: flex; align-items: center; gap: 12px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); padding: 14px; cursor: pointer; }
.payment-option input { accent-color: var(--red); }
.payment-option i { font-size: 1.2rem; color: var(--red); width: 24px; text-align: center; }
.payment-note { font-size: .76rem; color: var(--gray-700); margin-top: 4px; }

/* ---------- Alertas ---------- */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .86rem; border: 1px solid transparent; }
.alert-success { background: #e9f8ef; color: #1e9e52; border-color: #c7ecd6; }
.alert-error { background: #fdecec; color: #c31c1c; border-color: #f6c9c9; }
.alert-info { background: var(--gray-100); color: var(--ink); }

/* ---------- Galeria ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.gallery-grid img { aspect-ratio: 1/1; object-fit: cover; width: 100%; height: 100%; border-radius: var(--radius-sm); transition: transform .3s, filter .3s; cursor: zoom-in; background: var(--surface); }
.gallery-grid img:hover { transform: scale(1.02); filter: brightness(1.04); }
.lightbox { position: fixed; inset: 0; background: rgba(10,10,14,.94); z-index: 1200; display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius-sm); }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 2rem; z-index: 2; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); color: #fff; border: none; width: 46px; height: 46px; border-radius: 50%; font-size: 1.05rem; backdrop-filter: blur(4px); transition: background .2s; z-index: 2; display: flex; align-items: center; justify-content: center; }
.lightbox-nav:hover { background: rgba(255,255,255,.28); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.7); font-size: .78rem; font-weight: 600; letter-spacing: .3px; }
@media (min-width: 640px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (min-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Eventos ---------- */
.event-card { display: flex; gap: 16px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 16px; margin-bottom: 16px; align-items: center; transition: box-shadow .2s; }
.event-card:hover { box-shadow: var(--shadow); }
.event-date-box { flex-shrink: 0; width: 64px; height: 64px; background: var(--black); border-radius: var(--radius-sm); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.event-date-box strong { font-family: var(--font-head); font-size: 1.3rem; line-height: 1; color: #fff; }
.event-date-box span { font-size: .62rem; text-transform: uppercase; color: var(--red); font-weight: 700; }
.event-info h3 { font-size: .96rem; margin-bottom: 4px; }
.event-info p { font-size: .8rem; color: var(--gray-700); margin: 2px 0; }

/* ---------- Sobre ---------- */
.about-hero { padding-top: 40px; text-align: center; }
.value-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 30px; }
.value-card { background: var(--surface); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 22px 16px; text-align: center; }
.value-card i { font-size: 1.6rem; color: var(--red); margin-bottom: 10px; display: block; }
.value-card h4 { font-size: .84rem; }
.value-card p { font-size: .78rem; color: var(--gray-700); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--white); border-top: 1px solid var(--gray-200); padding: 44px 0 24px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 30px; }
.footer-col .logo { display: inline-block; }
.footer-col h5 { font-size: .8rem; color: var(--black); margin-bottom: 14px; letter-spacing: .4px; }
.footer-col p, .footer-col a { color: var(--gray-700); font-size: .84rem; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a:hover { color: var(--red); }
.social-row { display: flex; gap: 10px; margin-top: 14px; }
.social-row a { width: 36px; height: 36px; border-radius: 50%; background: var(--surface); border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; transition: .2s; color: var(--black); }
.social-row a:hover { background: var(--black); color: #fff; border-color: var(--black); }
.footer-bottom { text-align: center; border-top: 1px solid var(--gray-200); padding-top: 20px; font-size: .76rem; color: var(--gray-400); }

/* ---------- WhatsApp flutuante ---------- */
.float-wpp {
    position: fixed; bottom: 78px; right: 18px; background: #25d366; color: #fff; width: 52px; height: 52px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
    box-shadow: 0 8px 22px rgba(0,0,0,.22); z-index: 996; transition: transform .2s;
}
.float-wpp:hover { transform: scale(1.07); color: #fff; }
@media (min-width: 992px) { .float-wpp { bottom: 26px; } }

/* ---------- Utilitários ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.mt-1{margin-top:8px;} .mt-2{margin-top:16px;} .mt-3{margin-top:24px;} .mt-4{margin-top:32px;}
.mb-1{margin-bottom:8px;} .mb-2{margin-bottom:16px;} .mb-3{margin-bottom:24px;}
.text-center{text-align:center;}
.d-flex{display:flex;} .align-center{align-items:center;} .justify-between{justify-content:space-between;} .gap-2{gap:16px;}
.table-responsive { overflow-x: auto; }
table.data-table { width: 100%; border-collapse: collapse; font-size: .84rem; background: var(--white); }
table.data-table th, table.data-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--gray-200); }
table.data-table th { color: var(--gray-700); text-transform: uppercase; font-size: .66rem; letter-spacing: .4px; background: var(--surface); }
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 24px; }
.pagination a, .pagination span { padding: 8px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-200); font-size: .8rem; color: var(--ink); }
.pagination a:hover, .pagination .active { background: var(--black); border-color: var(--black); color: #fff; }

/* =========================================================
   TABLET / DESKTOP
========================================================= */
@media (min-width: 768px) {
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .form-row.cols-2 { grid-template-columns: 1fr 1fr; }
    .value-grid { grid-template-columns: repeat(4,1fr); }
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
    .header-search { display: flex; }
}

@media (min-width: 992px) {
    :root { --header-h: 76px; }
    body { padding-bottom: 0; }
    .main-nav { display: block; }
    .burger { display: none; }
    .hero h1 { font-size: 2.9rem; }
    .hero { min-height: 74vh; }
    .product-grid { grid-template-columns: repeat(4, 1fr); }
    .cat-grid { grid-template-columns: repeat(6, 1fr); }
    .product-page .grid-2 { grid-template-columns: 1fr 1fr; gap: 50px; }
    .cart-page .grid-2 { grid-template-columns: 2fr 1fr; gap: 40px; align-items: flex-start; }
}
