/* =========================================
   WEBZON OFERTAS — front.css
   Tema: Dark-first, moderno, premium
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

/* ── VARIÁVEIS ── */
:root {
    /* ── Paleta Webzon Oficial ──────────────────
       Verde:       #1a9e3f  (globo / ZON)
       Azul escuro: #1a2f6b  (WEB / bordas)
       Laranja:     #f47820  (nuvem / accent)
       Amarelo:     #f5d800  (detalhe)
    ──────────────────────────────────────────── */
    --bg:           #f0f4f0;
    --bg2:          #ffffff;
    --text:         #0e1f12;
    --text-muted:   #5a6e5e;
    --card:         #ffffff;
    --card-border:  rgba(26,47,107,0.09);
    --accent:       #f47820;        /* laranja — CTA principal */
    --accent-dark:  #d4620e;        /* laranja escuro hover    */
    --accent2:      #1a9e3f;        /* verde — secundário      */
    --accent3:      #1a2f6b;        /* azul escuro — nav/texto */
    --nav-bg:       #ffffff;
    --nav-shadow:   0 2px 20px rgba(26,47,107,0.10);
    --top-bar:      #1a2f6b;
    --pill-bg:      #e8f5ee;
    --pill-active:  #1a9e3f;
    --pill-text:    #0e1f12;
    --footer-bg:    #1a2f6b;
    --footer-text:  #a8b8cc;
    --stat-bg:      #1a2f6b;
    --input-bg:     #eef5f0;
    --input-border: #c0d8c8;
    --overlay:      rgba(26,47,107,0.82);
    --radius:       14px;
    --radius-sm:    8px;
    --shadow:       0 4px 24px rgba(26,47,107,0.09);
    --shadow-hover: 0 12px 40px rgba(244,120,32,0.20);
    --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg:           #07100a;
    --bg2:          #0d1a10;
    --text:         #d8f0de;
    --text-muted:   #6a8c72;
    --card:         #0d1a10;
    --card-border:  rgba(26,158,63,0.10);
    --nav-bg:       #07100a;
    --nav-shadow:   0 2px 20px rgba(0,0,0,0.5);
    --top-bar:      #040c06;
    --pill-bg:      #0d1a10;
    --pill-text:    #9abfa0;
    --footer-bg:    #040c06;
    --footer-text:  #3a5442;
    --stat-bg:      #040c06;
    --input-bg:     #0d1a10;
    --input-border: rgba(26,158,63,0.15);
    --overlay:      rgba(4,12,6,0.92);
    --shadow:       0 4px 24px rgba(0,0,0,0.4);
    --shadow-hover: 0 12px 40px rgba(244,120,32,0.22);
}

/* ── RESET BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: background var(--transition), color var(--transition);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Syne', sans-serif;
    color: var(--text);
}

a { text-decoration: none; color: inherit; }

/* ── TOP BAR ── */
.top-bar {
    background: var(--top-bar);
    color: #8892a4;
    padding: 7px 0;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ── NAVBAR ── */
.main-nav {
    background: var(--nav-bg);
    box-shadow: var(--nav-shadow);
    padding: 10px 0;
    transition: background var(--transition);
    z-index: 1000;
}

.logo {
    height: auto;
    width: 100px;
    object-fit: contain;
    transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }

.navbar-toggler {
    border: none;
    background: var(--pill-bg);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    color: var(--text);
    font-size: 20px;
}
.navbar-toggler:focus { box-shadow: none; }

/* ── BUSCA ── */
.search-wrap { flex: 1; max-width: 460px; }

.search-box {
    display: flex;
    align-items: center;
    background: var(--input-bg);
    border: 1.5px solid var(--input-border);
    border-radius: 50px;
    padding: 6px 6px 6px 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.search-box:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(244,120,32,0.12);
}
.search-icon {
    color: var(--text-muted);
    font-size: 15px;
    margin-right: 8px;
}
.search-input {
    border: none;
    background: transparent;
    outline: none;
    color: var(--text);
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    flex: 1;
    min-width: 0;
}
.search-input::placeholder { color: var(--text-muted); }
.search-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Syne', sans-serif;
    cursor: pointer;
    transition: background var(--transition), transform 0.1s;
}
.search-btn:hover { background: var(--accent-dark); transform: scale(1.03); }

/* Badge ofertas */
.badge-ofertas {
    background: rgba(244,120,32,0.12);
    color: var(--accent);
    border: 1px solid rgba(244,120,32,0.25);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    white-space: nowrap;
}

/* Theme toggle */
.theme-toggle {
    background: var(--pill-bg);
    border: 1.5px solid var(--input-border);
    color: var(--text);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all var(--transition);
    padding: 0;
}
.theme-toggle:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ── HERO CARROSSEL ── */
.hero-section {
    background: #07100a;
    overflow: hidden;
}

.carousel-item { transition: opacity 0.8s ease; }

.hero-slide {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(24px) scale(1.1);
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7,16,10,0.93) 40%, rgba(26,158,63,0.08) 100%);
}

.hero-content { position: relative; z-index: 2; padding: 50px 0; }

.hero-cat-badge {
    display: inline-block;
    background: rgba(244,120,32,0.15);
    color: var(--accent);
    border: 1px solid rgba(244,120,32,0.3);
    border-radius: 50px;
    padding: 3px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: 'Syne', sans-serif;
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-date {
    color: #8892a4;
    font-size: 13px;
    margin-bottom: 24px;
}

.hero-cta {
    background: var(--accent);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(244,120,32,0.35);
}
.hero-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(244,120,32,0.5);
    color: #fff;
}

.hero-img-wrap {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 24px;
    width: 280px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.carousel-ctrl {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: background var(--transition);
}
.carousel-ctrl:hover { background: var(--accent); border-color: var(--accent); }

.carousel-control-prev-icon,
.carousel-control-next-icon { display: none; }
.carousel-control-prev, .carousel-control-next { width: auto; padding: 0 20px; }

/* ── STATS BAR ── */
.stats-bar {
    background: var(--stat-bg);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.stat-item {
    padding: 6px 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 3px;
}

/* ── FILTROS DE CATEGORIA ── */
.filter-section {
    padding: 48px 0 32px;
}

.section-header { margin-bottom: 28px; }

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.section-sub {
    color: var(--text-muted);
    font-size: 14px;
}

.cat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--pill-bg);
    color: var(--pill-text);
    border: 1.5px solid var(--card-border);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13.5px;
    font-weight: 600;
    font-family: 'Syne', sans-serif;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}
.cat-pill:hover {
    border-color: var(--accent2);
    color: var(--accent2);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(244,120,32,0.15);
}
.cat-pill.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 18px rgba(244,120,32,0.3);
}
.cat-count {
    background: rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 1px 7px;
    font-size: 11px;
    font-weight: 700;
}
.cat-pill:not(.active) .cat-count {
    background: rgba(0,0,0,0.08);
    color: var(--text-muted);
}

/* ── PRODUCTS SECTION ── */
.products-section {
    padding: 10px 0 64px;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 14px 18px;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
}

.results-info {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 500;
}
.results-info strong { color: var(--text); }

.sort-select {
    background: var(--input-bg);
    border: 1.5px solid var(--input-border);
    color: var(--text);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    outline: none;
    transition: border-color var(--transition);
}
.sort-select:focus { border-color: var(--accent); }

/* ── PRODUCT CARD ── */
.product-link { display: block; height: 100%; }

.product-card {
    background: var(--card);
    border: 1.5px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    transition: all var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(244,120,32,0.25);
}

.product-img-wrap {
    position: relative;
    background: var(--bg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform var(--transition);
}
.product-card:hover .product-img { transform: scale(1.05); }

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,47,107,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }

.overlay-btn {
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13px;
    background: rgba(0,0,0,0.2);
    border-radius: 50px;
    padding: 8px 18px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
}

.product-cat-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(26,26,46,0.8);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    padding: 3px 9px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    backdrop-filter: blur(4px);
}

.product-body {
    padding: 12px 14px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.45;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-time {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-arrow {
    font-size: 18px;
    color: var(--accent2);
    transition: transform var(--transition);
}
.product-card:hover .product-arrow { transform: translateX(3px) translateY(-3px); }

/* ── EMPTY STATE ── */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}
.empty-state h4 {
    margin-top: 16px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--footer-bg);
    padding: 48px 0 0;
    color: var(--footer-text);
    margin-top: 40px;
}

.footer-logo {
    height: auto;
    width: 80px;
    object-fit: contain;
    opacity: 0.85;
}

.footer-desc {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
    line-height: 1.6;
}

.footer-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.footer-cat-link {
    background: rgba(255,255,255,0.05);
    color: #6b7280;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 12px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'DM Sans', sans-serif;
}
.footer-cat-link:hover {
    background: var(--accent2);
    color: #fff;
    border-color: var(--accent2);
}

.footer-copy {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #c4c9db;
    margin-bottom: 4px;
}

.footer-sub {
    font-size: 12px;
    color: #4b5563;
    margin-bottom: 2px;
}

.footer-bar {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 14px 0;
    margin-top: 36px;
    color: #4b5563;
    font-size: 12px;
}

/* ── BACK TO TOP ── */
.back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(244,120,32,0.4);
    opacity: 0;
    transform: translateY(12px);
    transition: all var(--transition);
    z-index: 999;
}
.back-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.back-top:hover { background: var(--accent-dark); transform: translateY(-3px); }

/* ── ANIMAÇÕES DE ENTRADA ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.item {
    animation: fadeUp 0.4s ease both;
}
.item:nth-child(1) { animation-delay: 0.05s; }
.item:nth-child(2) { animation-delay: 0.10s; }
.item:nth-child(3) { animation-delay: 0.15s; }
.item:nth-child(4) { animation-delay: 0.20s; }
.item:nth-child(5) { animation-delay: 0.25s; }
.item:nth-child(6) { animation-delay: 0.30s; }
.item:nth-child(7) { animation-delay: 0.35s; }
.item:nth-child(8) { animation-delay: 0.40s; }

/* ── UTILITÁRIOS ── */
.monospace { font-family: 'Courier New', monospace; font-size: 12px; }

/* ── RESPONSIVO ── */
@media (max-width: 576px) {
    .hero-content { padding: 36px 0; }
    .hero-title { font-size: 1.1rem; }
    .stat-number { font-size: 1.3rem; }
    .cat-pill { font-size: 12px; padding: 7px 14px; }
    .back-top { bottom: 16px; right: 16px; width: 40px; height: 40px; font-size: 16px; }
}

/* ── BOTÃO WHATSAPP ── */
.product-card {
    position: relative;
}

.wpp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: calc(100% - 28px);
    margin: 0 14px 14px;
    padding: 8px 0;
    background: #25d366;
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 3px 12px rgba(37,211,102,0.25);
    letter-spacing: 0.01em;
}

.wpp-btn i {
    font-size: 16px;
}

.wpp-btn:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.wpp-btn:active {
    transform: scale(0.97);
}

/* Animação de pulso sutil no hover do card */
.product-card:hover .wpp-btn {
    animation: wppPulse 1.5s ease infinite;
}

@keyframes wppPulse {
    0%, 100% { box-shadow: 0 3px 12px rgba(37,211,102,0.25); }
    50%       { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
}

/* ── SHARE BAR (WhatsApp + Facebook + Instagram) ── */
.share-bar {
    display: flex;
    gap: 6px;
    padding: 0 14px 14px;
}

.share-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 4px;
    border-radius: var(--radius-sm);
    font-size: 11.5px;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.share-btn i { font-size: 14px; }

/* WhatsApp */
.share-wpp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 2px 10px rgba(37,211,102,0.22);
}
.share-wpp:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(37,211,102,0.38);
}

/* Facebook */
.share-fb {
    background: #1877f2;
    color: #fff;
    box-shadow: 0 2px 10px rgba(24,119,242,0.22);
}
.share-fb:hover {
    background: #0f5ec4;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(24,119,242,0.38);
}

/* Instagram */
.share-ig {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    color: #fff;
    box-shadow: 0 2px 10px rgba(221,42,123,0.22);
}
.share-ig:hover {
    filter: brightness(1.1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(221,42,123,0.38);
}
.share-ig--copied {
    background: #1a9e3f !important;
    filter: none !important;
}

/* Pulso ao hover do card */
.product-card:hover .share-wpp { animation: wppPulse 1.8s ease infinite; }

@keyframes wppPulse {
    0%, 100% { box-shadow: 0 2px 10px rgba(37,211,102,0.22); }
    50%       { box-shadow: 0 5px 20px rgba(37,211,102,0.48); }
}

/* Remove wpp-btn legado se existir */
.wpp-btn { display: none !important; }

/* ── REDES SOCIAIS — NAVBAR ── */
.nav-social {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 15px;
    background: var(--pill-bg);
    border: 1.5px solid var(--input-border);
    transition: all var(--transition);
    text-decoration: none;
}
.nav-social-link:hover {
    transform: translateY(-2px);
    color: #fff;
}
.nav-social-link:nth-child(1):hover { background: #1877f2; border-color: #1877f2; } /* Facebook */
.nav-social-link:nth-child(2):hover { background: #000;    border-color: #000; }    /* X */
.nav-social-link:nth-child(3):hover { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); border-color: #dd2a7b; } /* Instagram */
.nav-social-link:nth-child(4):hover { background: #0077b5; border-color: #0077b5; } /* LinkedIn */

/* ── REDES SOCIAIS — FOOTER ── */
.footer-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.footer-social { justify-content: center; }
@media (min-width: 768px) { .footer-social { justify-content: flex-start; } }

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: #a8b8cc;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.10);
    transition: all var(--transition);
    text-decoration: none;
}
.footer-social-link:hover {
    transform: translateY(-3px);
    color: #fff;
}
.footer-social-link:nth-child(1):hover { background: #1877f2; border-color: #1877f2; }
.footer-social-link:nth-child(2):hover { background: #111;    border-color: #555; }
.footer-social-link:nth-child(3):hover { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); border-color: #dd2a7b; }
.footer-social-link:nth-child(4):hover { background: #0077b5; border-color: #0077b5; }

/* Footer heading */
.footer-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 14px;
}

/* Remove share-ig do CSS antigo (já não usado nos cards) */
.share-ig { display: none !important; }
