/* ============================================================
   ADM BRINDES — Identidade Editorial Corporativa
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Paleta */
    --bg: #F7F3EC;               /* cream quente */
    --bg-deep: #EDE6D6;          /* cream mais escuro */
    --ink: #13121A;              /* preto profundo com toque violeta */
    --ink-soft: #3A3843;         /* cinza escuro quente */
    --ink-mute: #8A8591;         /* cinza morno médio */
    --line: #D8CFBE;             /* linha divisória cream */
    --accent: #E94F1D;           /* laranja vibrante */
    --accent-deep: #C43D10;      /* laranja mais escuro hover */
    --gold: #C89B3C;             /* dourado sutil */
    --whatsapp: #25D366;
    --whatsapp-deep: #1EAD54;

    /* Tipografia */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(19, 18, 26, .06);
    --shadow-md: 0 10px 30px -12px rgba(19, 18, 26, .18);
    --shadow-lg: 0 30px 60px -20px rgba(19, 18, 26, .25);
    --shadow-card: 0 2px 8px rgba(19, 18, 26, .04), 0 20px 40px -24px rgba(19, 18, 26, .12);

    /* Timing */
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;

    /* Textura grão sutil */
    background-image:
        radial-gradient(at 0% 0%, rgba(232, 79, 29, .04) 0, transparent 50%),
        radial-gradient(at 100% 100%, rgba(200, 155, 60, .05) 0, transparent 50%);
    background-attachment: fixed;
}

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

a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent); }

button { font-family: inherit; border: none; background: none; cursor: pointer; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }
@media (max-width: 380px) { .container { padding: 0 16px; } }

/* ==========  TOPBAR  ========== */
.topbar {
    background: var(--ink);
    color: var(--bg);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 10px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.topbar .tb-left { opacity: .8; }
.topbar .tb-right { display: flex; gap: 24px; }
.topbar .tb-right a { display: inline-flex; align-items: center; gap: 6px; }
.topbar .tb-right a:hover { color: var(--accent); }
@media (max-width: 768px) {
    .topbar .tb-left { display: none; }
    .topbar .container { justify-content: center; }
}
@media (max-width: 480px) {
    .topbar { font-size: 11px; padding: 8px 0; }
    .topbar .tb-right { gap: 14px; flex-wrap: wrap; justify-content: center; }
}

/* ==========  HEADER  ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 243, 236, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    gap: 40px;
}
.brand {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 28px;
    letter-spacing: -.02em;
    line-height: 1;
    color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand em {
    font-style: italic;
    color: var(--accent);
    font-variation-settings: "opsz" 144;
}
.brand .dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 4px;
}

.nav-main {
    display: flex;
    gap: 36px;
    font-size: 14px;
    font-weight: 500;
}
.nav-main a {
    position: relative;
    padding: 8px 0;
    letter-spacing: .01em;
}
.nav-main a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    height: 1px;
    width: 0;
    background: var(--accent);
    transition: width .35s var(--ease);
}
.nav-main a:hover::after, .nav-main a.active::after { width: 100%; }

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--bg);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: all .25s var(--ease);
}
.header-cta:hover {
    background: var(--ink);
    color: var(--bg);
    transform: translateY(-1px);
}
.header-cta svg { width: 14px; height: 14px; }

.burger {
    display: none;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
}
.burger span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--ink);
    position: relative;
}
.burger span::before, .burger span::after {
    content: '';
    position: absolute;
    width: 22px; height: 1.5px;
    background: var(--ink);
    left: 0;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

@media (max-width: 960px) {
    .nav-main { display: none; }
    .burger { display: flex; }
}
@media (max-width: 520px) {
    .header-cta { display: none; }
    .header-inner { gap: 20px; }
    .brand { font-size: 24px; }
}

/* ==========  HERO  ========== */
.hero {
    position: relative;
    padding: 90px 0 120px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 10%; right: -150px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(232, 79, 29, .1), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
}
.hero-num {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 13px;
    letter-spacing: .3em;
    color: var(--ink-mute);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-num::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--ink-mute);
}
.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-variation-settings: "opsz" 144;
    font-size: clamp(48px, 8vw, 112px);
    line-height: .95;
    letter-spacing: -.03em;
    color: var(--ink);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.hero-title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 300;
}
.hero-title .underline {
    position: relative;
    display: inline-block;
}
.hero-title .underline::after {
    content: '';
    position: absolute;
    bottom: .1em; left: 0;
    width: 100%; height: 8px;
    background: var(--gold);
    opacity: .4;
    z-index: -1;
}
.hero-sub {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 420px;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .02em;
    transition: all .25s var(--ease);
    cursor: pointer;
}
.btn-primary {
    background: var(--ink);
    color: var(--bg);
}
.btn-primary:hover {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-ghost {
    color: var(--ink);
    border: 1px solid var(--line);
    background: transparent;
}
.btn-ghost:hover {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
.btn svg { width: 16px; height: 16px; }

.hero-stats {
    padding-top: 60px;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 56px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -.03em;
    display: block;
}
.stat-num em {
    font-style: italic;
    color: var(--accent);
}
.stat-label {
    font-size: 12px;
    color: var(--ink-mute);
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-top: 8px;
}

@media (max-width: 960px) {
    .hero { padding: 60px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-stats { gap: 32px; padding-top: 40px; }
    .stat-num { font-size: 42px; }
}
@media (max-width: 480px) {
    .hero { padding: 48px 0 60px; }
    .hero-stats { gap: 24px 28px; padding-top: 32px; }
    .stat-num { font-size: 36px; }
    .stat-label { font-size: 11px; }
    .hero-sub { font-size: 16px; }
}

/* ==========  SECTION HEADER  ========== */
.section {
    padding: 120px 0;
}
.section-deep { background: var(--ink); color: var(--bg); }
.section-deep .section-num, .section-deep .section-kicker { color: rgba(247, 243, 236, .55); }
.section-deep .section-title { color: var(--bg); }

.section-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 40px;
    margin-bottom: 64px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
}
.section-deep .section-head { border-bottom-color: rgba(247, 243, 236, .15); }
.section-num {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: .25em;
    color: var(--ink-mute);
    text-transform: uppercase;
    font-weight: 300;
    white-space: nowrap;
}
.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-variation-settings: "opsz" 144;
    font-size: clamp(30px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -.03em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-action {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
    .section-action { justify-self: start; }
}

/* ==========  CATEGORY GRID (home)  ========== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.cat-card {
    background: var(--bg);
    color: var(--ink);
    padding: 40px 28px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all .4s var(--ease);
    overflow: hidden;
}
.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ink);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .4s var(--ease);
    z-index: 0;
}
.cat-card:hover::before { transform: scaleY(1); }
.cat-card > * { position: relative; z-index: 1; }
.cat-card:hover { color: var(--bg); }
.cat-card:hover .cat-index { color: var(--accent); }
.cat-card:hover .cat-name { color: var(--bg); }
.cat-card:hover .cat-arrow { transform: translateX(6px); color: var(--accent); }
.cat-index {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--ink-mute);
    letter-spacing: .15em;
    transition: color .4s var(--ease);
}
.cat-name {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -.015em;
    margin-top: 20px;
    color: var(--ink);
}
.cat-arrow {
    margin-top: 16px;
    display: inline-block;
    font-size: 20px;
    transition: all .3s var(--ease);
    color: var(--ink-mute);
}
.section-deep .cat-card { color: var(--ink); }
.section-deep .cat-card .cat-name { color: var(--ink); }
.section-deep .cat-card .cat-index { color: var(--ink-mute); }
.section-deep .cat-card .cat-arrow { color: var(--ink-mute); }
.section-deep .cat-card:hover { color: var(--bg); }
.section-deep .cat-card:hover .cat-name { color: var(--bg); }
.section-deep .cat-card:hover .cat-index { color: var(--accent); }
.section-deep .cat-card:hover .cat-arrow { color: var(--accent); }

@media (max-width: 960px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .cat-grid { grid-template-columns: 1fr; } .cat-card { min-height: 120px; padding: 28px 24px;} }

/* ==========  PRODUCTS GRID  ========== */
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
}
.product {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    transition: transform .35s var(--ease);
}
.product-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #fff;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 4px;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    transition: transform .6s var(--ease);
}
.product:hover .product-img { transform: scale(1.06); }

.product-wa-ico {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all .3s var(--ease);
    z-index: 2;
    color: var(--whatsapp);
}
.product-wa-ico svg { width: 18px; height: 18px; fill: currentColor; }
.product:hover .product-wa-ico {
    background: var(--whatsapp);
    color: #fff;
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--accent);
    color: var(--bg);
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 5px 9px;
    font-weight: 700;
    border-radius: 2px;
    z-index: 2;
}
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(19, 18, 26, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s var(--ease);
    padding: 24px;
}
.product:hover .product-overlay { opacity: 1; }
.product-cta {
    background: var(--whatsapp);
    color: #fff;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .25s var(--ease);
    transform: translateY(10px);
}
.product:hover .product-cta {
    transform: translateY(0);
}
.product-cta:hover {
    background: var(--whatsapp-deep);
    color: #fff;
    transform: translateY(-2px) !important;
}
.product-cta svg { width: 16px; height: 16px; }

.product-info {
    padding: 18px 2px 0;
}
.product-code {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--ink-mute);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 400;
}
.product-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.25;
    margin-top: 6px;
    letter-spacing: -.01em;
}
.product-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

@media (max-width: 960px) { .products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .products { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; } .product-img { padding: 16px; } }
@media (max-width: 420px) { .products { gap: 20px 10px; } .product-name { font-size: 15px; } .product-img { padding: 12px; } }

/* Touch: em dispositivos sem hover, esconder o overlay visual (o clique no card inteiro
   já leva ao WhatsApp via .product-link). Usamos uma indicação discreta no CTA do produto. */
@media (hover: none) {
    .product-overlay { display: none; }
    .product:hover .product-img { transform: none; }
}

/* ==========  WHY STRIP (valores)  ========== */
.why-strip {
    padding: 80px 0;
    background: var(--bg-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}
.why-item { position: relative; padding-left: 24px; }
.why-item::before {
    content: '';
    position: absolute;
    top: 10px; left: 0;
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
}
.why-item h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -.01em;
    margin-bottom: 8px;
}
.why-item p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
}
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

/* ==========  CTA BAND  ========== */
.cta-band {
    background: var(--ink);
    color: var(--bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,79,29,.25), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -.025em;
}
.cta-title em { font-style: italic; color: var(--accent); }
.cta-sub {
    margin-top: 24px;
    font-size: 17px;
    color: rgba(247, 243, 236, .7);
    max-width: 480px;
    line-height: 1.6;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--whatsapp);
    color: #fff;
    padding: 20px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .02em;
    transition: all .25s var(--ease);
    justify-self: end;
}
.cta-btn:hover {
    background: var(--whatsapp-deep);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(37, 211, 102, .4);
}
.cta-btn svg { width: 22px; height: 22px; }
@media (max-width: 768px) {
    .cta-band { padding: 70px 0; }
    .cta-band-grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-btn { justify-self: start; }
}

/* ==========  FOOTER  ========== */
.footer {
    background: var(--ink);
    color: rgba(247, 243, 236, .7);
    padding: 80px 0 40px;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(247, 243, 236, .1);
}
.footer .brand { color: var(--bg); font-size: 32px; }
.footer-about {
    margin-top: 20px;
    max-width: 360px;
    line-height: 1.7;
    color: rgba(247, 243, 236, .55);
}
.footer h4 {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--bg);
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a:hover { color: var(--accent); }
.footer .copy {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(247, 243, 236, .4);
    flex-wrap: wrap;
    gap: 12px;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ==========  WHATSAPP FLOAT  ========== */
.wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 60px; height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .4);
    z-index: 99;
    transition: all .3s var(--ease);
    animation: wa-pulse 2.5s infinite;
}
.wa-float:hover {
    transform: scale(1.1);
    background: var(--whatsapp-deep);
    color: #fff;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, .6); }
    50% { box-shadow: 0 10px 30px rgba(37, 211, 102, .4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ==========  CATEGORY PAGE  ========== */
.cat-hero {
    padding: 90px 0 60px;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.cat-hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 60%; height: 200%;
    background: radial-gradient(ellipse at center, rgba(232, 79, 29, .06), transparent 60%);
    z-index: 0;
    pointer-events: none;
}
.cat-hero .container { position: relative; z-index: 1; }
.breadcrumb {
    display: flex;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 40px;
    font-weight: 500;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: .4; }
.cat-hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: flex-end;
}
.cat-hero-name {
    font-family: var(--font-display);
    font-variation-settings: "opsz" 144;
    font-size: clamp(48px, 7vw, 96px);
    line-height: .95;
    letter-spacing: -.03em;
    font-weight: 400;
}
.cat-hero-name em { font-style: italic; color: var(--accent); }
.cat-hero-desc {
    max-width: 360px;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.6;
    padding-bottom: 10px;
}
@media (max-width: 768px) {
    .cat-hero { padding: 60px 0 40px; }
    .cat-hero-grid { grid-template-columns: 1fr; gap: 24px; }
    .cat-hero-desc { max-width: none; padding-bottom: 0; }
}

.cat-products-section {
    padding: 80px 0 120px;
}
.cat-count {
    font-family: var(--font-display);
    color: var(--ink-mute);
    font-size: 13px;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

/* Estado vazio */
.empty-state {
    text-align: center;
    padding: 60px 0 80px;
    max-width: 560px;
    margin: 0 auto;
}
.empty-state .ico {
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--accent);
    opacity: .25;
    line-height: 1;
    margin-bottom: 24px;
}
.empty-state h3 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
.empty-state h3 em { font-style: italic; color: var(--accent); }
.empty-state p {
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Outras categorias (rodapé da página de categoria) */
.other-cats {
    padding: 80px 0;
    border-top: 1px solid var(--line);
    background: var(--bg-deep);
}
.other-cats-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}
.other-cats-list a {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    transition: all .2s var(--ease);
    background: var(--bg);
}
.other-cats-list a:hover {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

/* ==========  REVEAL ANIMATIONS (CSS only)  ========== */
@keyframes reveal-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: reveal-up .9s var(--ease) both; }
.reveal-d1 { animation-delay: .1s; }
.reveal-d2 { animation-delay: .2s; }
.reveal-d3 { animation-delay: .3s; }
.reveal-d4 { animation-delay: .4s; }
.reveal-d5 { animation-delay: .5s; }

/* Respeitar preferências de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
