
:root {
    --primary: #1677ff;
    --secondary: #081225;
    --surface: #ffffff;
    --bg: #f3f6fb;
    --border: rgba(9, 18, 37, 0.1);
    --text: #0f172a;
    --muted: #5f6c85;
    --muted-2: #7b879c;
    --success: #16a34a;
    --shadow: 0 18px 45px rgba(8, 18, 37, 0.08);
    --radius-lg: 28px;
    --radius-md: 22px;
    --radius-sm: 16px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
}

a {
    transition: .2s ease;
}

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

.bg-site {
    background:
        radial-gradient(circle at top right, rgba(22, 119, 255, .12), transparent 24%),
        radial-gradient(circle at top left, rgba(80, 201, 255, .12), transparent 18%),
        linear-gradient(180deg, #f5f7fc 0%, #edf2fb 100%);
}

.container {
    position: relative;
    z-index: 1;
}

.glass-nav {
    background: rgba(8, 18, 37, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.navbar-brand,
.navbar .nav-link {
    color: #fff !important;
}

.navbar .nav-link {
    font-size: .95rem;
    font-weight: 500;
    opacity: .92;
}

.navbar .nav-link:hover {
    opacity: 1;
    color: #fff !important;
}

.navbar-toggler {
    border-color: rgba(255,255,255,.16);
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: .8rem;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    color: #fff;
    font-weight: 800;
    font-size: .82rem;
    box-shadow: 0 12px 24px rgba(22, 119, 255, .28);
}

.btn-tech {
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    border: none;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(22, 119, 255, .28);
}

.btn-tech:hover,
.btn-tech:focus {
    color: #fff;
    transform: translateY(-1px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .42rem .9rem;
    border-radius: 999px;
    background: rgba(22, 119, 255, .10);
    color: var(--primary);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.text-secondary-light {
    color: rgba(255,255,255,.76) !important;
}

.hero-store,
.catalog-hero {
    background:
        radial-gradient(circle at 10% 0%, rgba(124,58,237,.16), transparent 20%),
        radial-gradient(circle at 100% 10%, rgba(14,165,233,.18), transparent 22%),
        linear-gradient(180deg, #081225 0%, #0f1d3a 100%);
    color: #fff;
}

.py-lg-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.hero-main-panel,
.hero-side-panel {
    height: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    box-shadow: 0 30px 60px rgba(0,0,0,.22);
}

.hero-main-panel {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.hero-title {
    margin: 1rem 0;
    font-weight: 800;
    line-height: 1.05;
    font-size: clamp(2rem, 5vw, 3.7rem);
    max-width: 10ch;
}

.hero-text,
.catalog-hero p {
    color: rgba(255,255,255,.78);
    font-size: 1.05rem;
    max-width: 58ch;
}

.catalog-hero h1 {
    margin: 1rem 0 .75rem;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 1.75rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
}

.hero-tag {
    padding: .65rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    color: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    font-size: .9rem;
}

.hero-tag:hover {
    color: #fff;
    border-color: rgba(255,255,255,.24);
    transform: translateY(-1px);
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hero-benefit-item {
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}

.hero-benefit-item strong {
    display: block;
    margin-bottom: .35rem;
    color: #fff;
    font-size: .95rem;
}

.hero-benefit-item span {
    display: block;
    color: rgba(255,255,255,.72);
    font-size: .88rem;
}

.hero-side-panel {
    padding: 1.35rem;
}

.hero-side-head h2 {
    margin: .85rem 0 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.hero-mini-list {
    display: grid;
    gap: .9rem;
    margin-top: 1.5rem;
}

.hero-mini-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: .9rem;
    align-items: center;
    padding: .9rem;
    border-radius: 22px;
    text-decoration: none;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
}

.hero-mini-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.18);
    color: #fff;
}

.hero-mini-media {
    height: 82px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,.05);
}

.hero-mini-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-mini-content {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.hero-mini-content strong {
    color: #fff;
    line-height: 1.25;
}

.hero-mini-content span {
    color: rgba(255,255,255,.72);
    font-size: .92rem;
}

.hero-mini-meta {
    color: #8ec5ff;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.hero-side-cta {
    margin-top: 1rem;
    display: inline-flex;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.hero-side-cta:hover {
    color: #9ad1ff;
}

.benefit-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.benefit-chip {
    padding: 1.2rem 1.25rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.benefit-chip strong {
    display: block;
    margin-bottom: .4rem;
    font-size: .95rem;
}

.benefit-chip span {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.55;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: .5rem;
}

.section-heading h2 {
    margin: .85rem 0 0;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    line-height: 1.12;
    font-weight: 800;
}

.product-card {
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(8, 18, 37, .09);
    box-shadow: var(--shadow);
}

.product-card a {
    color: var(--text);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(8, 18, 37, .12);
}

.product-media {
    position: relative;
    background:
        linear-gradient(180deg, #edf3ff 0%, #f8fbff 100%);
    min-height: 230px;
    display: grid;
    place-items: center;
    padding: 1.1rem;
    border-bottom: 1px solid rgba(8, 18, 37, .06);
}

.product-media img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.product-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at top right, rgba(22, 119, 255, .24), transparent 35%),
        linear-gradient(180deg, #dce8ff, #eef5ff);
    color: #19457b;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px dashed rgba(25, 69, 123, .16);
}

.product-placeholder.compact {
    height: 82px;
    border-radius: 18px;
    font-size: 1rem;
}

.product-placeholder.xl {
    height: 460px;
    font-size: 2.6rem;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    padding: .45rem .75rem;
    border-radius: 999px;
    background: rgba(22, 119, 255, .12);
    color: #1955a5;
    font-weight: 800;
    font-size: .7rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-body {
    padding: 1.2rem 1.2rem 1.35rem;
}

.product-meta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: .75rem;
}

.product-meta {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #1f67c2;
}

.product-meta.muted {
    color: #7a879e;
}

.product-title {
    margin: 0 0 .55rem;
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 700;
    color: #111827;
}

.product-summary {
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.55;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .75rem;
    margin-top: auto;
}

.price-tag {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0b1325;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: .55rem 1rem;
    border-radius: 999px;
    background: #f3f6fb;
    border: 1px solid rgba(8,18,37,.08);
    font-weight: 700;
    color: #111827;
}

.filter-box,
.catalog-toolbar,
.lead-box,
.detail-panel,
.detail-card,
.contact-panel,
.cta-panel,
.feature-panel,
.empty-box,
.thumb-card,
.promo-banner,
.category-tile {
    background: #fff;
    border: 1px solid rgba(8,18,37,.08);
    box-shadow: var(--shadow);
}

.filter-box,
.lead-box,
.detail-panel,
.contact-panel,
.cta-panel,
.feature-panel,
.empty-box,
.promo-banner {
    border-radius: 28px;
}

.filter-box {
    padding: 1.5rem;
}

.filter-label {
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #64748b;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 20px;
    color: #334155;
}

.pagination-modern {
    gap: .55rem;
}

.pagination-modern .page-link {
    border-radius: 14px;
    border: 1px solid rgba(8,18,37,.08);
    color: #0f172a;
    min-width: 44px;
    text-align: center;
}

.pagination-modern .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    border-color: transparent;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 1.25rem;
}

.promo-banner {
    padding: 2rem;
}

.promo-banner h3 {
    margin: .9rem 0 .7rem;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 800;
    line-height: 1.2;
}

.promo-banner p {
    margin-bottom: 1.2rem;
    color: var(--muted);
    line-height: 1.7;
}

.promo-banner-dark {
    color: #fff;
    background:
        radial-gradient(circle at top left, rgba(108,92,231,.22), transparent 22%),
        linear-gradient(135deg, #081225 0%, #102040 100%);
}

.promo-banner-dark p,
.promo-banner-dark .eyebrow {
    color: rgba(255,255,255,.86);
}

.promo-banner-dark .eyebrow {
    background: rgba(255,255,255,.08);
}

.category-showcase {
    padding: 1rem 0;
}

.category-tile {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    min-height: 160px;
    padding: 1.25rem;
    border-radius: 22px;
    text-decoration: none;
    color: var(--text);
}

.category-tile:hover {
    color: var(--text);
    transform: translateY(-3px);
}

.category-tile-kicker {
    display: inline-flex;
    width: fit-content;
    padding: .4rem .7rem;
    border-radius: 999px;
    background: #edf3ff;
    color: #2f5ec4;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.category-tile strong {
    font-size: 1.05rem;
    font-weight: 700;
}

.category-tile span:last-child {
    margin-top: auto;
    color: var(--muted);
    font-size: .92rem;
}

.cta-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.cta-panel h2 {
    margin: .9rem 0 .65rem;
    font-size: clamp(1.55rem, 2vw, 2rem);
    line-height: 1.18;
    font-weight: 800;
}

.cta-panel p {
    margin: 0;
    color: var(--muted);
    max-width: 60ch;
}

.cta-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.detail-card,
.detail-panel,
.lead-box,
.contact-panel {
    padding: 1.45rem;
}

.detail-panel {
    height: 100%;
}

.detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-bottom: 1rem;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    padding: .45rem .8rem;
    border-radius: 999px;
    background: rgba(22,119,255,.12);
    color: #1d5ab4;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.mini-badge.soft {
    background: #eef2f8;
    color: #475569;
}

.detail-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: .9rem;
}

.detail-price {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0b1325;
    margin-bottom: 1rem;
}

.detail-summary {
    color: #334155;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: .9rem;
}

.detail-copy {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.spec-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
    margin-bottom: 1.4rem;
}

.spec-strip > div {
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: #f8fbff;
    border: 1px solid rgba(22,119,255,.08);
}

.spec-strip strong {
    display: block;
    margin-bottom: .35rem;
    color: #0f172a;
}

.spec-strip span {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.55;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.contact-panel h2,
.lead-box h2 {
    margin: .9rem 0 .7rem;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.18;
    font-weight: 800;
}

.contact-panel p,
.lead-box p {
    color: var(--muted);
    line-height: 1.7;
}

.contact-points {
    display: grid;
    gap: .9rem;
    margin-top: 1.25rem;
}

.contact-points > div {
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: #f8fbff;
    border: 1px solid rgba(8,18,37,.06);
}

.contact-points strong {
    display: block;
    margin-bottom: .35rem;
    color: #111827;
}

.contact-points span {
    color: var(--muted);
    line-height: 1.6;
    font-size: .94rem;
}

.form-control,
.form-select {
    border-radius: 16px;
    border-color: rgba(8,18,37,.12);
    padding-top: .9rem;
    padding-bottom: .9rem;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(22,119,255,.45);
    box-shadow: 0 0 0 .25rem rgba(22,119,255,.12);
}

.empty-box {
    padding: 2rem;
    text-align: center;
    color: var(--muted);
}

.thumb-card {
    padding: .55rem;
    border-radius: 18px;
}

.footer-tech {
    margin-top: 4rem;
    background: linear-gradient(180deg, #081225 0%, #0d1730 100%);
    color: #dbe7ff;
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.footer-copy,
.footer-info {
    color: rgba(219,231,255,.72);
    line-height: 1.7;
}

.footer-title {
    margin-bottom: 1rem;
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-link {
    display: block;
    width: fit-content;
    margin-bottom: .6rem;
    color: rgba(219,231,255,.84);
    text-decoration: none;
}

.footer-link-inline {
    margin-top: .75rem;
}

.footer-link:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: rgba(219,231,255,.72);
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .92rem;
}

.admin-body {
    background: #eef3fb;
}

.sidebar-tech,
.admin-topbar,
.metric-card,
.table-panel,
.panel-card,
.form-panel {
    box-shadow: var(--shadow);
}

.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .benefit-strip,
    .hero-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .hero-title {
        max-width: none;
    }

    .cta-panel,
    .catalog-toolbar,
    .section-heading,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-placeholder.xl {
        height: 320px;
    }
}

@media (max-width: 767px) {
    .hero-benefits,
    .benefit-strip,
    .spec-strip {
        grid-template-columns: 1fr;
    }

    .hero-mini-card {
        grid-template-columns: 72px 1fr;
    }

    .product-media {
        min-height: 210px;
    }

    .product-media img,
    .product-placeholder {
        height: 180px;
    }

    .hero-main-panel,
    .hero-side-panel,
    .filter-box,
    .lead-box,
    .detail-panel,
    .detail-card,
    .contact-panel,
    .cta-panel,
    .promo-banner {
        border-radius: 22px;
    }

    .footer-tech {
        margin-top: 3rem;
    }
}


/* =========================
   V5 public theme - MultiShop inspired
   ========================= */

.topbar-dark {
    background: #0f172a;
    color: rgba(255,255,255,.72);
    font-size: .85rem;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.topbar-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-links a,
.topbar-copy {
    color: rgba(255,255,255,.72);
    text-decoration: none;
}

.topbar-links a:hover {
    color: #fff;
}

.multisite-nav {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%) !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 14px 34px rgba(15,23,42,.18);
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.brand-text {
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
}

.nav-quick-search {
    flex: 1;
    justify-content: center;
    padding: 0 1.25rem;
}

.quick-search-form {
    display: flex;
    width: min(100%, 520px);
    background: #fff;
    border-radius: 999px;
    padding: .3rem;
    box-shadow: 0 12px 24px rgba(15,23,42,.12);
}

.quick-search-form .form-control {
    border: 0;
    border-radius: 999px;
    min-height: 42px;
    padding-inline: 1rem;
    box-shadow: none !important;
}

.btn-search-tech {
    border-radius: 999px;
    min-width: 108px;
    min-height: 42px;
    border: 0;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    color: #fff;
    font-weight: 700;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-action-link {
    color: rgba(255,255,255,.88);
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
}

.nav-action-link:hover {
    color: #fff;
}

.category-bar {
    background: #fff;
    border-bottom: 1px solid rgba(15,23,42,.06);
}

.category-scroll {
    display: flex;
    align-items: center;
    gap: .35rem;
    overflow-x: auto;
    padding: .8rem 0;
    scrollbar-width: thin;
}

.category-link {
    white-space: nowrap;
    padding: .6rem 1rem;
    border-radius: 999px;
    color: #334155;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 700;
}

.category-link.active,
.category-link:hover {
    color: #fff;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.hero-market {
    background: linear-gradient(180deg, #f4f8ff 0%, #eef3fb 100%);
}

.hero-banner-main,
.mini-promo-card,
.offer-panel {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 18px 42px rgba(15,23,42,.12);
}

.hero-banner-main {
    min-height: 360px;
}

.hero-banner-main::before,
.mini-promo-card::before,
.offer-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2,6,23,.74) 0%, rgba(2,6,23,.35) 60%, rgba(2,6,23,.15) 100%);
}

.hero-banner-overlay,
.mini-promo-content,
.offer-content {
    position: relative;
    z-index: 1;
}

.hero-banner-overlay {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
    max-width: 520px;
    color: #fff;
}

.label-sale {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 1rem;
    padding: .45rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-weight: 700;
    font-size: .8rem;
}

.hero-banner-overlay h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -.04em;
}

.hero-banner-overlay p {
    margin: 0 0 1.35rem;
    color: rgba(255,255,255,.84);
    font-size: 1rem;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.btn-hero-primary,
.btn-hero-outline,
.btn-whatsapp-market {
    min-height: 48px;
    border-radius: 999px;
    padding-inline: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-decoration: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    color: #fff;
    border: 0;
    box-shadow: 0 18px 34px rgba(37,99,235,.25);
}

.btn-hero-outline {
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    background: rgba(255,255,255,.08);
}

.btn-hero-primary:hover,
.btn-whatsapp-market:hover {
    color: #fff;
    transform: translateY(-1px);
}

.btn-hero-outline:hover {
    color: #fff;
    background: rgba(255,255,255,.15);
}

.btn-whatsapp-market {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 18px 34px rgba(34,197,94,.22);
}

.hero-side-stack {
    display: grid;
    gap: 1rem;
    height: 100%;
}

.mini-promo-card {
    min-height: 172px;
}

.mini-promo-dark::before {
    background: linear-gradient(90deg, rgba(3,7,18,.82) 0%, rgba(3,7,18,.45) 100%);
}

.mini-promo-light {
    background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
}

.mini-promo-light::before {
    background: linear-gradient(180deg, rgba(255,255,255,.93) 0%, rgba(238,244,255,.95) 100%);
}

.mini-promo-content {
    height: 100%;
    padding: 1.4rem 1.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini-promo-light .mini-promo-content {
    color: #0f172a;
}

.mini-promo-tag,
.section-mini-title {
    display: inline-flex;
    width: fit-content;
    margin-bottom: .8rem;
    color: #06b6d4;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.text-white.section-mini-title,
.mini-promo-dark .mini-promo-tag {
    color: #c7f9ff;
}

.mini-promo-content h3,
.offer-content h3,
.section-title-strong {
    margin: 0;
    color: #0f172a;
    font-weight: 900;
    letter-spacing: -.03em;
}

.mini-promo-dark h3,
.offer-panel.dark h3 {
    color: #fff;
}

.mini-promo-content p,
.offer-content p {
    margin: .7rem 0 0;
    color: #64748b;
}

.mini-promo-dark p,
.offer-panel.dark p {
    color: rgba(255,255,255,.82);
}

.mini-promo-link {
    margin-top: 1rem;
    color: #0ea5e9;
    font-weight: 800;
    text-decoration: none;
}

.benefit-row {
    margin-top: 1rem;
}

.benefit-box {
    height: 100%;
    display: flex;
    gap: 1rem;
    padding: 1.1rem 1rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 28px rgba(15,23,42,.06);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(6,182,212,.12), rgba(37,99,235,.12));
    font-size: 1.3rem;
}

.benefit-box strong {
    display: block;
    margin-bottom: .18rem;
    color: #0f172a;
}

.benefit-box span {
    color: #64748b;
    font-size: .92rem;
}

.catalog-block {
    padding: 3rem 0 0;
}

.section-bar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.section-title-strong {
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    line-height: 1.05;
}

.market-product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 16px 36px rgba(15,23,42,.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.market-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(15,23,42,.12);
}

.market-product-link {
    color: inherit;
    text-decoration: none;
}

.market-product-media {
    position: relative;
    height: 220px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef3fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.market-product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.market-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    padding: .45rem .7rem;
    border-radius: 999px;
    background: rgba(37,99,235,.1);
    color: #2563eb;
    font-size: .72rem;
    font-weight: 800;
}

.market-product-placeholder {
    color: #64748b;
    font-weight: 700;
    font-size: .92rem;
}

.market-product-body {
    padding: 1rem;
}

.market-product-brand {
    margin-bottom: .45rem;
    color: #0ea5e9;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.market-product-title {
    min-height: 52px;
    margin: 0 0 .55rem;
    color: #0f172a;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 800;
}

.market-product-summary {
    min-height: 48px;
    margin: 0 0 .9rem;
    color: #64748b;
    font-size: .9rem;
    line-height: 1.5;
}

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

.market-product-price {
    color: #111827;
    font-size: 1.02rem;
    font-weight: 900;
}

.market-product-cta {
    color: #2563eb;
    font-weight: 800;
    font-size: .88rem;
}

.offer-panel {
    min-height: 280px;
}

.offer-panel.light::before {
    background: linear-gradient(90deg, rgba(255,255,255,.93) 0%, rgba(255,255,255,.75) 100%);
}

.offer-content {
    height: 100%;
    max-width: 410px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-content h3 {
    margin-bottom: .8rem;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.02;
}

.category-spotlight {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 16px 36px rgba(15,23,42,.08);
    text-decoration: none;
}

.category-spotlight-media {
    height: 180px;
    background: #e2e8f0;
}

.category-spotlight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-spotlight-body {
    padding: 1rem 1rem 1.1rem;
}

.category-spotlight-label {
    display: inline-flex;
    margin-bottom: .5rem;
    color: #0ea5e9;
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.category-spotlight h3 {
    margin: 0 0 .4rem;
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 800;
}

.category-spotlight-link {
    color: #2563eb;
    font-weight: 800;
    font-size: .9rem;
}

.brand-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    justify-content: flex-end;
}

.brand-pill {
    padding: .55rem .9rem;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    border: 1px solid rgba(15,23,42,.08);
    text-decoration: none;
    font-size: .84rem;
    font-weight: 700;
}

.final-cta-box,
.filter-shell-market,
.lead-market-box,
.contact-market-shell,
.detail-market-panel,
.detail-media-box {
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 16px 36px rgba(15,23,42,.08);
    border-radius: 20px;
}

.final-cta-box,
.filter-shell-market,
.lead-market-box,
.detail-market-panel,
.detail-media-box,
.contact-market-shell {
    padding: 1.25rem;
}

.empty-state-box {
    padding: 2rem;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    border: 1px dashed rgba(15,23,42,.14);
    color: #64748b;
}

.page-hero {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(15,23,42,.92) 0%, rgba(30,41,59,.88) 100%),
        url("../img/multishop/carousel-3.jpg") center/cover no-repeat;
}

.page-hero h1 {
    margin: 0 0 .7rem;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.02;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.82);
}

.form-label-market {
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #64748b;
}

.form-control-market {
    min-height: 50px;
    border-radius: 14px;
    border-color: rgba(15,23,42,.12);
}

.pagination-market .page-link {
    border-radius: 12px;
    margin: 0 .2rem;
    border: 1px solid rgba(15,23,42,.12);
    color: #334155;
    font-weight: 700;
}

.pagination-market .page-item.active .page-link {
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    border-color: transparent;
}

.detail-main-image {
    width: 100%;
    height: 460px;
    object-fit: contain;
    background: linear-gradient(180deg, #f8fbff 0%, #eef3fb 100%);
    border-radius: 16px;
    padding: 1rem;
}

.detail-no-image {
    min-height: 460px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef3fb 100%);
    color: #64748b;
    font-weight: 700;
}

.detail-thumb-box {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.08);
    background: #f8fbff;
}

.detail-thumb-box img {
    width: 100%;
    height: 110px;
    object-fit: contain;
    padding: .5rem;
}

.detail-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: .8rem;
}

.detail-chip {
    padding: .45rem .8rem;
    border-radius: 999px;
    background: rgba(6,182,212,.12);
    color: #0f766e;
    font-size: .8rem;
    font-weight: 800;
}

.detail-chip.soft {
    background: rgba(37,99,235,.1);
    color: #2563eb;
}

.detail-market-title {
    margin: 0 0 .85rem;
    color: #0f172a;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.06;
    font-weight: 900;
}

.detail-market-price {
    margin-bottom: 1rem;
    color: #111827;
    font-size: 1.7rem;
    font-weight: 900;
}

.detail-market-description {
    color: #475569;
    line-height: 1.7;
}

.detail-action-stack {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.25rem;
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.detail-info-card {
    padding: 1rem;
    border-radius: 16px;
    background: #f8fbff;
    border: 1px solid rgba(15,23,42,.08);
}

.detail-info-card strong {
    display: block;
    margin-bottom: .25rem;
    color: #0f172a;
}

.detail-info-card span {
    color: #64748b;
    font-size: .92rem;
}

.contact-market-side {
    height: 100%;
    padding: 1.5rem;
    border-radius: 18px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(15,23,42,.86) 0%, rgba(30,41,59,.92) 100%),
        url("../img/multishop/carousel-2.jpg") center/cover no-repeat;
}

.contact-market-side h2 {
    margin: 0 0 .8rem;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.08;
}

.contact-market-side p {
    color: rgba(255,255,255,.82);
}

.contact-market-points {
    display: grid;
    gap: 1rem;
    margin-top: 1.2rem;
}

.contact-market-points strong {
    display: block;
    margin-bottom: .25rem;
    color: #fff;
}

.contact-market-points span {
    color: rgba(255,255,255,.76);
    font-size: .94rem;
}

@media (max-width: 991px) {
    .topbar-inner,
    .section-bar,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-quick-search {
        padding: 1rem 0 0;
    }

    .brand-pill-row {
        justify-content: flex-start;
    }

    .detail-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-banner-main {
        min-height: 300px;
    }

    .hero-banner-overlay,
    .offer-content {
        padding: 1.4rem;
    }

    .market-product-media {
        height: 190px;
    }

    .detail-main-image,
    .detail-no-image {
        height: 300px;
        min-height: 300px;
    }

    .quick-search-form {
        width: 100%;
    }
}



/* ===== Admin layout refresh ===== */
.admin-body {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 24%),
        linear-gradient(180deg, #eef3fb 0%, #f7f9fc 100%);
    color: #0f172a;
}

.admin-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
}

.sidebar-tech {
    position: sticky;
    top: 0;
    min-height: 100vh;
    padding: 24px 18px;
    background: linear-gradient(180deg, #0c1324 0%, #10192d 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 18px 0 40px rgba(2, 8, 23, 0.08);
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.sidebar-brand:hover {
    color: #fff;
}

.sidebar-caption {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    line-height: 1.5;
}

.sidebar-nav .nav-link,
.sidebar-tech .nav-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
    transition: 0.2s ease;
}

.sidebar-nav .nav-link:hover,
.sidebar-tech .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.sidebar-nav .nav-link.text-danger,
.sidebar-tech .nav-link.text-danger {
    color: #ffb4b4 !important;
}

.sidebar-nav .nav-link.text-danger:hover,
.sidebar-tech .nav-link.text-danger:hover {
    background: rgba(239, 68, 68, 0.10);
    color: #ffd4d4 !important;
}

.admin-content {
    min-width: 0;
    padding: 28px;
}

.admin-topbar {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.admin-top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-card {
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.admin-content .alert {
    border-radius: 16px;
}

.admin-content .table {
    margin-bottom: 0;
    vertical-align: middle;
}

.admin-content .table thead th {
    padding: 14px 16px;
    border-bottom: 1px solid #dbe3ef;
    background: #f8fbff;
    color: #344054;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-content .table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #edf2f7;
}

.admin-content .table tbody tr:hover {
    background: #fafcff;
}

.admin-content .btn,
.admin-content .form-control,
.admin-content .form-select,
.admin-content textarea {
    min-height: 42px;
    border-radius: 14px;
}

.admin-content .btn {
    font-weight: 700;
}

.admin-content .text-secondary,
.admin-content .text-muted,
.admin-content small {
    color: #667085 !important;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.admin-stat-card {
    padding: 20px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.admin-stat-card--primary {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-color: transparent;
    box-shadow: 0 18px 40px rgba(79, 70, 229, 0.24);
}

.admin-stat-card--primary .label,
.admin-stat-card--primary .value,
.admin-stat-card--primary .meta {
    color: #fff;
}

.admin-stat-card .label {
    display: block;
    margin-bottom: 8px;
    color: #667085;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-stat-card .value {
    display: block;
    color: #0f172a;
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
}

.admin-stat-card .meta {
    display: block;
    margin-top: 8px;
    color: #667085;
    font-size: 0.9rem;
}

.admin-section-title {
    margin-bottom: 14px;
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 800;
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-list-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid #e7edf5;
    border-radius: 18px;
    background: #fbfdff;
    text-decoration: none;
    transition: 0.2s ease;
}

.admin-list-item:hover {
    transform: translateY(-1px);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.admin-list-item__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.admin-list-item__content strong {
    color: #0f172a;
    font-size: 0.96rem;
    line-height: 1.3;
}

.admin-list-item__content span {
    color: #667085;
    font-size: 0.9rem;
    line-height: 1.45;
}

.summary-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
    border: 1px solid #e7edf5;
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfdff 0%, #f7faff 100%);
}

.summary-item strong {
    color: #0f172a;
    font-size: 1.7rem;
    line-height: 1;
    font-weight: 900;
}

.summary-item span {
    color: #667085;
    font-size: 0.92rem;
    line-height: 1.45;
}

.empty-box,
.empty-state-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    padding: 24px;
    border: 1px dashed #d6deea;
    border-radius: 18px;
    background: #fbfdff;
    color: #667085;
    text-align: center;
}

/* ===== Admin content form ===== */
.content-admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.content-admin-tab {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: #eef4ff;
    color: #1d4ed8;
    font-weight: 700;
    text-decoration: none;
}

.content-admin-tab:hover {
    color: #1e40af;
    background: #e2ecff;
}

.content-admin-section + .content-admin-section {
    margin-top: 32px;
}

.content-admin-section__header {
    margin-bottom: 18px;
}

.content-admin-section__header h3 {
    margin: 0 0 6px;
    font-size: 1.35rem;
    font-weight: 800;
}

.content-admin-section__header p {
    margin: 0;
    color: #667085;
}

.content-admin-card {
    padding: 20px;
    border: 1px solid #e7edf5;
    border-radius: 20px;
    background: #fbfdff;
}

.content-admin-card__title {
    margin-bottom: 16px;
    color: #0f172a;
    font-weight: 800;
    font-size: 1rem;
}

.content-admin-preview {
    margin-top: 12px;
    padding: 12px;
    border: 1px dashed #d6deea;
    border-radius: 16px;
    background: #fff;
}

.content-admin-preview img {
    width: 100%;
    max-width: 320px;
    border-radius: 14px;
    object-fit: cover;
}

.content-admin-form .form-label {
    margin-bottom: 8px;
}

.content-admin-form textarea.form-control {
    min-height: 120px;
}

/* ===== Login ===== */
.login-page {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 28%),
        linear-gradient(135deg, #eef3fb 0%, #f7f9fc 100%);
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.login-box {
    width: 100%;
    max-width: 520px;
    padding: 32px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.login-box .alert {
    border-radius: 14px;
}

/* ===== Mobile header ===== */
.mobile-menu-wrap {
    background: linear-gradient(90deg, #111a2e 0%, #1b2b4a 100%);
}

.mobile-menu-panel {
    padding: 16px 0 18px;
}

.mobile-menu-panel .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.mobile-menu-panel .nav-link:hover {
    color: #fff;
}

.navbar-toggler {
    display: none;
}

@media (max-width: 1199px) {
    .admin-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: inline-flex;
    }

    .nav-quick-search,
    .nav-actions {
        display: none !important;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .sidebar-tech {
        position: relative;
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .admin-content {
        padding: 18px;
    }

    .admin-topbar {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 767px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-card,
    .admin-topbar {
        padding: 18px;
        border-radius: 20px;
    }

    .login-box {
        padding: 22px;
        border-radius: 20px;
    }

    .admin-content .table thead {
        display: none;
    }

    .admin-content .table,
    .admin-content .table tbody,
    .admin-content .table tr,
    .admin-content .table td {
        display: block;
        width: 100%;
    }

    .admin-content .table tr {
        margin-bottom: 14px;
        border: 1px solid #e7edf5;
        border-radius: 16px;
        overflow: hidden;
        background: #fff;
    }

    .admin-content .table td {
        padding: 10px 14px;
        border-bottom: 1px solid #edf2f7;
    }

    .admin-content .table td:last-child {
        border-bottom: 0;
    }
}

/* =============================================================================
FILE: /public/assets/css/app.css
ADICIONE NO FINAL
============================================================================= */

.content-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.content-tab-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #dbe3ef;
    background: #ffffff;
    color: #344054;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.content-tab-link:hover {
    background: #f8fbff;
    color: #101828;
}

.content-tab-link.is-active {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(79, 70, 229, 0.18);
}

/* ============================================================================
FILE: /public/assets/css/app.css
ADICIONE NO FINAL DO ARQUIVO
============================================================================ */

.content-tabs-wrap {
    margin-bottom: 1.5rem;
}

.content-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.content-tab-link,
.content-tab-link:link,
.content-tab-link:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid #d9e2f0;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    color: #23314f !important;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.22s ease;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}

.content-tab-link:hover,
.content-tab-link:focus {
    color: #0f172a !important;
    text-decoration: none !important;
    border-color: #8fb4ff;
    background: linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.14);
}

.content-tab-link.is-active,
.content-tab-link.is-active:link,
.content-tab-link.is-active:visited,
.content-tab-link.is-active:hover,
.content-tab-link.is-active:focus {
    border-color: transparent;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 14px 28px rgba(79, 70, 229, 0.28);
}

.content-tab-label {
    display: inline-block;
}

@media (max-width: 768px) {
    .content-tabs-nav {
        gap: 10px;
        padding: 12px;
    }

    .content-tab-link,
    .content-tab-link:link,
    .content-tab-link:visited {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 16px;
        min-height: 44px;
        white-space: normal;
    }
}

/* =============================================================================
FILE: /public/assets/css/app.css
ADICIONE NO FINAL
============================================================================= */
.site-body {
    background: #eef3fb;
    color: #0f172a;
}

.site-main {
    min-height: 40vh;
}

.site-header-market {
    position: relative;
    z-index: 50;
    background: linear-gradient(135deg, #071225 0%, #0c1830 100%);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-topbar-market {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.12);
    font-size: 13px;
}

.site-topbar-market .container {
    min-height: 28px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.site-topbar-text {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
}

.site-topbar-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.site-topbar-links a:hover {
    color: #8fd4ff;
}

.site-mainbar-market {
    padding: 14px 0;
}

.site-mainbar-grid {
    display: grid;
    grid-template-columns: 210px minmax(320px, 1fr) auto;
    gap: 20px;
    align-items: center;
}

.site-brand-market {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #5b5cf0 0%, #1ea7ff 100%);
    box-shadow: 0 10px 24px rgba(30, 167, 255, 0.22);
}

.site-brand-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-search-market {
    display: flex;
    align-items: center;
    gap: 0;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.site-search-input {
    flex: 1;
    min-width: 0;
    height: 44px;
    border: 0;
    outline: none;
    background: transparent;
    padding: 0 16px;
    color: #111827;
    font-size: 15px;
}

.site-search-input::placeholder {
    color: #6b7280;
}

.site-search-button {
    height: 44px;
    border: 0;
    border-radius: 999px;
    padding: 0 24px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, #1ea7ff 0%, #4f46e5 100%);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.25);
}

.site-nav-market {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.site-nav-market a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.2s ease;
}

.site-nav-market a:hover,
.site-nav-market a.is-active {
    color: #ffffff;
}

.site-admin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff !important;
    background: transparent;
}

.site-admin-button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hero-market--home {
    padding-top: 0;
}

.hero-market--home .container {
    margin-top: 0;
}

@media (max-width: 1199px) {
    .site-mainbar-grid {
        grid-template-columns: 1fr;
    }

    .site-nav-market {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .site-search-market {
        width: 100%;
    }

    .site-search-button {
        padding: 0 18px;
    }

    .site-nav-market {
        gap: 14px;
    }

    .site-brand-name {
        font-size: 15px;
    }
}

/* Cole este conteúdo no final do public/assets/css/app.css */

.site-body {
    background: #eef3fb;
    color: #0f172a;
}

.site-main {
    min-height: 40vh;
}

.site-header-market {
    position: relative;
    z-index: 50;
    background: linear-gradient(135deg, #071225 0%, #0c1830 100%);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-topbar-market {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.12);
    font-size: 13px;
}

.site-topbar-market .container {
    min-height: 28px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.site-topbar-text {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
}

.site-topbar-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.site-topbar-links a:hover {
    color: #8fd4ff;
}

.site-mainbar-market {
    padding: 14px 0;
}

.site-mainbar-grid {
    display: grid;
    grid-template-columns: 210px minmax(320px, 1fr) auto;
    gap: 20px;
    align-items: center;
}

.site-brand-market {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #5b5cf0 0%, #1ea7ff 100%);
    box-shadow: 0 10px 24px rgba(30, 167, 255, 0.22);
}

.site-brand-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-search-market {
    display: flex;
    align-items: center;
    gap: 0;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.site-search-input {
    flex: 1;
    min-width: 0;
    height: 44px;
    border: 0;
    outline: none;
    background: transparent;
    padding: 0 16px;
    color: #111827;
    font-size: 15px;
}

.site-search-input::placeholder {
    color: #6b7280;
}

.site-search-button {
    height: 44px;
    border: 0;
    border-radius: 999px;
    padding: 0 24px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, #1ea7ff 0%, #4f46e5 100%);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.25);
}

.site-nav-market {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.site-nav-market a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.2s ease;
}

.site-nav-market a:hover,
.site-nav-market a.is-active {
    color: #ffffff;
}

.site-admin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff !important;
    background: transparent;
}

.site-admin-button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hero-market--home {
    padding-top: 0;
}

.hero-market--home .container {
    margin-top: 0;
}

@media (max-width: 1199px) {
    .site-mainbar-grid {
        grid-template-columns: 1fr;
    }

    .site-nav-market {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .site-search-market {
        width: 100%;
    }

    .site-search-button {
        padding: 0 18px;
    }

    .site-nav-market {
        gap: 14px;
    }

    .site-brand-name {
        font-size: 15px;
    }
}

/* FILE: /public/assets/css/app.css */
/* Adicione ou substitua estas regras */

.page-hero-market {
    padding: 0 0 18px;
}

.page-hero-market-box {
    width: 100%;
    min-height: 320px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.page-hero-market-overlay {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 18px 34px;
    color: #fff;
    background: linear-gradient(
        90deg,
        rgba(7, 18, 37, 0.88) 0%,
        rgba(7, 18, 37, 0.62) 48%,
        rgba(7, 18, 37, 0.28) 100%
    );
}

.page-hero-title {
    margin: 10px 0 12px;
    max-width: 920px;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.page-hero-text {
    max-width: 760px;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.catalog-search-panel {
    margin-top: -8px;
    padding: 0 0 22px;
}

.catalog-search-form-box {
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

@media (max-width: 991px) {
    .page-hero-market-box,
    .page-hero-market-overlay {
        min-height: 280px;
    }

    .page-hero-title {
        max-width: 100%;
        font-size: clamp(2rem, 7vw, 3rem);
    }
}

@media (max-width: 767px) {
    .page-hero-market-box,
    .page-hero-market-overlay {
        min-height: 240px;
    }

    .page-hero-market-overlay {
        padding: 28px 16px;
    }

    .page-hero-text {
        font-size: 0.98rem;
    }
}