:root {
    --cor-hover: #ff6b6b;
    --bg-sidebar: #1f2a40;
    --bg-produto: #f0f7ff;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f6fa;
    color: #333;
}

/* Sidebar */
.sidebar {
    background: var(--bg-sidebar);
    color: #fff;
    padding: 25px;
    min-height: 100vh;
}

/* Breadcrumb */
.breadcrumb-custom {
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.breadcrumb-custom a {
    color: var(--cor-primaria);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-custom a:hover {
    color: var(--cor-hover);
}

.breadcrumb-custom span {
    color: #666;
}

/* Filtro de categorias */
.filtro-categorias {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.filtro-categorias h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.btn-categoria {
    display: inline-block;
    padding: 8px 16px;
    margin: 5px;
    border-radius: 20px;
    background: #e9ecef;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-categoria:hover {
    background: var(--cor-primaria);
    color: #fff;
    transform: translateY(-2px);
}

.btn-categoria.active {
    background: var(--cor-primaria);
    color: #fff;
    border-color: var(--cor-primaria);
}

/* Barra de busca */
.search-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.search-box .input-group {
    max-width: 600px;
}

.search-box .form-control {
    border-radius: 8px 0 0 8px;
    border: 1px solid #ddd;
    padding: 12px 16px;
}

.search-box .btn {
    border-radius: 0 8px 8px 0;
    padding: 12px 24px;
}

/* Info box */
.info-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.info-box h5 {
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Cards de produtos */
.card-produto {
    background: var(--bg-produto);
    border-radius: 12px;
    border: none;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.card-produto.has-product-flag {
    padding-top: 58px;
}

.card-produto:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.card-produto.is-top-sales {
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.28), transparent 38%),
        linear-gradient(180deg, #f4faff 0%, #e8f2ff 100%);
    border: 1px solid rgba(59, 130, 246, 0.28);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.14);
}

.card-produto.is-top-sales:hover {
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
}

.card-produto h6 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
    text-align: center;
}

.card-produto p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 15px;
}

.promo-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7a45, #ffb347);
    color: #3b1500;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(255, 122, 69, 0.26);
}

.top-sales-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ea5e9, #2563eb 58%, #4338ca);
    color: #f8fbff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.3);
}

.price-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 15px;
}

.preco-antigo {
    font-size: 0.92rem;
    color: #7b8794;
    font-weight: 700;
    text-decoration: line-through;
}

.preco {
    font-size: 1.4rem;
    color: #e74c3c;
    font-weight: 700;
    display: block;
}

.preco-promocional {
    color: #d62828;
}

.preco-economia {
    font-size: 0.82rem;
    color: #b45309;
    font-weight: 700;
}

.btn-comprar {
    background: var(--cor-primaria);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-comprar:hover {
    background: #b9f3ff;
    color: #0b2239;
    transform: scale(1.05);
}

.card-produto.is-top-sales .btn-comprar {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #f8fbff;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

.card-produto.is-top-sales .btn-comprar:hover {
    background: linear-gradient(135deg, #1aaaf0, #315ff2);
    color: #f8fbff;
}

/* Paginação */
.pagination-custom {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination-custom a,
.pagination-custom span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination-custom a {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.pagination-custom a:hover {
    background: var(--cor-primaria);
    color: #fff;
    border-color: var(--cor-primaria);
    transform: translateY(-2px);
}

.pagination-custom .active {
    background: var(--cor-primaria);
    color: #fff;
    border: 1px solid var(--cor-primaria);
}

.pagination-custom .disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    border: 1px solid #ddd;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    margin-top: 50px;
}

footer a {
    color: var(--cor-primaria);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Tema claro alinhado à home */
body.page-produtos.orbital-section-page {
    --portal-line: rgba(22, 32, 43, 0.08);
    --portal-line-strong: rgba(22, 32, 43, 0.14);
    --portal-copy: #50606d;
    --portal-copy-soft: #72818d;
    --portal-white: #16202b;
    background:
        radial-gradient(34rem 24rem at 10% 8%, rgba(255, 122, 47, 0.18), transparent 62%),
        radial-gradient(28rem 18rem at 88% 12%, rgba(89, 216, 255, 0.2), transparent 60%),
        radial-gradient(30rem 22rem at 78% 84%, rgba(216, 255, 143, 0.22), transparent 58%),
        linear-gradient(180deg, #f8f2e8 0%, #f6efe7 44%, #f9f5f0 100%);
    color: #16202b;
}

body.page-produtos.orbital-section-page::before {
    background:
        radial-gradient(12rem 12rem at 16% 16%, rgba(255, 255, 255, 0.72), transparent 66%),
        radial-gradient(16rem 16rem at 80% 24%, rgba(255, 255, 255, 0.45), transparent 70%),
        linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.26) 50%, transparent 58%);
    opacity: 0.78;
    mix-blend-mode: screen;
    mask-image: none;
}

body.page-produtos.orbital-section-page::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.12;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 90%);
}

.page-produtos .portal-breadcrumb,
.page-produtos .portal-panel,
.page-produtos .filtro-categorias,
.page-produtos .search-box {
    background:
        radial-gradient(18rem 12rem at 12% 0%, rgba(255, 122, 47, 0.1), transparent 72%),
        radial-gradient(16rem 11rem at 88% 0%, rgba(89, 216, 255, 0.12), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.66));
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 26px 52px -38px rgba(79, 56, 22, 0.16);
    backdrop-filter: blur(20px) saturate(1.04);
}

.page-produtos .portal-breadcrumb a {
    color: #1598d5;
}

.page-produtos .portal-breadcrumb a:hover {
    color: #ef7a2d;
}

.page-produtos .portal-breadcrumb span {
    color: #71818e;
}

.page-produtos .portal-panel-title,
.page-produtos .filtro-categorias h5,
.page-produtos .search-box h5 {
    color: #16202b;
}

.page-produtos .btn-categoria {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(22, 32, 43, 0.08);
    color: #5a6975;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.page-produtos .btn-categoria:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #16202b;
    border-color: rgba(89, 216, 255, 0.34);
    box-shadow: 0 16px 28px -24px rgba(89, 216, 255, 0.42);
}

.page-produtos .btn-categoria.active {
    background: linear-gradient(135deg, #59d8ff, #ffc68c 88%);
    color: #16202b;
    border-color: transparent;
    box-shadow: 0 16px 30px -24px rgba(255, 122, 47, 0.3);
}

.page-produtos .btn-categoria.active i {
    color: inherit;
}

.page-produtos .card-produto {
    background:
        radial-gradient(20rem 13rem at 100% 0%, rgba(255, 122, 47, 0.08), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(252, 248, 242, 0.78));
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 54px -40px rgba(98, 76, 45, 0.2);
    backdrop-filter: blur(18px);
}

.page-produtos .card-produto:hover {
    border-color: rgba(255, 122, 47, 0.18);
    box-shadow: 0 32px 62px -40px rgba(98, 76, 45, 0.24);
}

.page-produtos .card-produto.is-top-sales {
    background:
        radial-gradient(22rem 14rem at 100% 0%, rgba(96, 165, 250, 0.24), transparent 58%),
        linear-gradient(180deg, #fbfdff 0%, #f3f7ff 100%);
    border-color: rgba(96, 165, 250, 0.28);
    box-shadow:
        0 28px 54px -34px rgba(37, 99, 235, 0.22),
        0 0 0 1px rgba(96, 165, 250, 0.12);
}

.page-produtos .card-produto.is-top-sales:hover {
    box-shadow:
        0 34px 64px -36px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(96, 165, 250, 0.16);
}

.page-produtos .card-produto h6 {
    color: #16202b;
}

.page-produtos .card-produto p {
    color: #5d6d79;
}

.page-produtos .card-produto.is-top-sales h6 {
    color: #16202b;
}

.page-produtos .card-produto.is-top-sales p {
    color: #456485;
}

.page-produtos .preco {
    color: #bb4e19;
}

.page-produtos .card-produto.is-top-sales .preco {
    color: #1656d9;
}

.page-produtos .preco-promocional {
    color: #d43c2f;
}

.page-produtos .preco-antigo {
    color: #7c8a99;
}

.page-produtos .preco-economia {
    color: #a44b11;
}

.page-produtos .btn-comprar {
    background: linear-gradient(135deg, #59d8ff, #ffb25d);
    color: #16202b;
    box-shadow: 0 18px 30px -24px rgba(255, 122, 47, 0.24);
}

.page-produtos .btn-comprar:hover {
    background: linear-gradient(135deg, #6ae0ff, #ffc16f);
    color: #16202b;
    box-shadow: 0 22px 36px -24px rgba(255, 122, 47, 0.3);
}

.page-produtos .card-produto.is-top-sales .btn-comprar {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #f8fbff;
    box-shadow: 0 18px 30px -22px rgba(37, 99, 235, 0.36);
}

.page-produtos .card-produto.is-top-sales .btn-comprar:hover {
    background: linear-gradient(135deg, #1aaaf0, #315ff2);
    color: #f8fbff;
    box-shadow: 0 22px 36px -24px rgba(37, 99, 235, 0.42);
}

.page-produtos .pagination-custom a {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(22, 32, 43, 0.08);
    color: #50606d;
    box-shadow: 0 14px 28px -24px rgba(98, 76, 45, 0.16);
}

.page-produtos .pagination-custom a:hover {
    background: linear-gradient(135deg, #59d8ff, #ffc68c);
    color: #16202b;
    border-color: transparent;
    transform: translateY(-2px);
}

.page-produtos .pagination-custom .active {
    background: linear-gradient(135deg, #59d8ff, #ffc68c);
    color: #16202b;
    border-color: transparent;
    box-shadow: 0 16px 28px -22px rgba(255, 122, 47, 0.26);
}

.page-produtos .pagination-custom .disabled {
    background: rgba(255, 255, 255, 0.58);
    color: #9aa6b2;
    border: 1px solid rgba(22, 32, 43, 0.06);
}

.page-produtos .alert,
.page-produtos .portal-empty {
    border: 1px dashed rgba(22, 32, 43, 0.12);
    background: rgba(255, 255, 255, 0.68);
    color: #5a6975;
    box-shadow: 0 18px 38px -30px rgba(98, 76, 45, 0.12);
}

.page-produtos footer.shared-home-footer {
    margin-top: 1.1rem;
    background:
        radial-gradient(18rem 12rem at 12% 0%, rgba(255, 122, 47, 0.1), transparent 72%),
        radial-gradient(16rem 11rem at 88% 0%, rgba(89, 216, 255, 0.12), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68));
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 26px 52px -38px rgba(79, 56, 22, 0.16);
    color: #50606d;
}

.page-produtos .shared-home-footer .orbital-footer-label {
    color: #16202b;
}

.page-produtos .shared-home-footer p {
    color: #5d6d79;
}

.page-produtos .shared-home-footer .orbital-footer-link {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(22, 32, 43, 0.08);
    color: #50606d;
}

.page-produtos .shared-home-footer .orbital-footer-link.is-soft {
    background: rgba(255, 255, 255, 0.6);
    color: #7d8997;
}

.page-produtos .shared-home-footer .orbital-footer-link:hover {
    border-color: rgba(89, 216, 255, 0.34);
    background: rgba(255, 255, 255, 0.95);
    color: #16202b;
}

.page-produtos .showcase-grid {
    position: relative;
    z-index: 1;
}

.page-produtos .card-wrap {
    height: 100%;
}

.page-produtos .card-modern {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.05rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.84);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.58)),
        radial-gradient(14rem 10rem at 100% 0%, rgba(89, 216, 255, 0.08), transparent 70%);
    box-shadow: 0 20px 48px -34px rgba(77, 59, 36, 0.16);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.page-produtos .card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 58px -34px rgba(77, 59, 36, 0.2);
}

.page-produtos .card-modern::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 28%, transparent 72%, rgba(89, 216, 255, 0.16));
    opacity: 0;
    transition: opacity 0.24s ease;
}

.page-produtos .card-modern:hover::after {
    opacity: 1;
}

.page-produtos .card-product-spotlight {
    --plan-top-bg: linear-gradient(180deg, #f7efff 0%, #f1e8ff 100%);
    --plan-top-border: rgba(120, 103, 167, 0.52);
    --plan-top-shadow: rgba(165, 139, 216, 0.16);
    --plan-badge-bg: rgba(255, 255, 255, 0.92);
    --plan-badge-color: #2e9b63;
    --plan-note-color: #788391;
    padding: 0.7rem;
    border-radius: 32px;
    border: 1px solid #d7dde6;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    box-shadow: 0 20px 44px -34px rgba(96, 74, 45, 0.12);
}

.page-produtos .card-wrap:nth-child(3n+1) .card-product-spotlight {
    --plan-top-bg: linear-gradient(180deg, #f7efff 0%, #f1e8ff 100%);
    --plan-top-border: rgba(133, 112, 184, 0.5);
    --plan-top-shadow: rgba(168, 140, 225, 0.17);
    --plan-badge-color: #2f9b6c;
}

.page-produtos .card-wrap:nth-child(3n+2) .card-product-spotlight {
    --plan-top-bg: linear-gradient(180deg, #eef7ff 0%, #e6f1ff 100%);
    --plan-top-border: rgba(111, 154, 196, 0.48);
    --plan-top-shadow: rgba(128, 175, 221, 0.16);
    --plan-badge-color: #2f8da2;
}

.page-produtos .card-wrap:nth-child(3n+3) .card-product-spotlight {
    --plan-top-bg: linear-gradient(180deg, #fff8dc 0%, #fff3c8 100%);
    --plan-top-border: rgba(191, 165, 90, 0.46);
    --plan-top-shadow: rgba(224, 192, 91, 0.14);
    --plan-badge-color: #2b9b67;
}

.page-produtos .card-wrap:nth-child(4n) .card-product-spotlight {
    --plan-top-bg: linear-gradient(180deg, #ebfaef 0%, #dff6e8 100%);
    --plan-top-border: rgba(104, 168, 129, 0.44);
    --plan-top-shadow: rgba(112, 187, 142, 0.14);
    --plan-badge-color: #24835b;
}

.page-produtos .card-product-spotlight::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 22%);
    opacity: 0.88;
}

.page-produtos .card-product-spotlight::after {
    display: none;
}

.page-produtos .card-product-spotlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -34px rgba(96, 74, 45, 0.14);
}

.page-produtos .card-product-spotlight.is-top-sales {
    --plan-top-bg:
        radial-gradient(22rem 14rem at 100% 0%, rgba(96, 165, 250, 0.28), transparent 58%),
        linear-gradient(180deg, #eef8ff 0%, #e7f0ff 100%);
    --plan-top-border: rgba(59, 130, 246, 0.44);
    --plan-top-shadow: rgba(37, 99, 235, 0.22);
    --plan-badge-bg: rgba(255, 255, 255, 0.94);
    --plan-badge-color: #1656d9;
    --plan-note-color: #4e6f98;
    border-color: rgba(96, 165, 250, 0.28);
    background: linear-gradient(180deg, #fbfdff 0%, #f3f7ff 100%);
    box-shadow:
        0 28px 54px -34px rgba(37, 99, 235, 0.24),
        0 0 0 1px rgba(96, 165, 250, 0.12);
}

.page-produtos .card-product-spotlight.is-top-sales::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 24%),
        radial-gradient(14rem 10rem at 100% 0%, rgba(96, 165, 250, 0.18), transparent 70%);
    opacity: 1;
}

.page-produtos .card-product-spotlight.is-top-sales:hover {
    box-shadow:
        0 34px 64px -36px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(96, 165, 250, 0.16);
}

.page-produtos .card-product-shell {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1rem;
}

.page-produtos .card-product-planbox {
    padding: 1rem;
    border-radius: 24px;
    border: 1.6px solid var(--plan-top-border);
    background: var(--plan-top-bg);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        0 16px 28px -24px var(--plan-top-shadow);
}

.page-produtos .card-product-spotlight.is-top-sales .card-product-planbox {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 18px 34px -24px rgba(37, 99, 235, 0.18);
}

.page-produtos .card-product-planbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.95rem;
}

.page-produtos .card-product-title-wrap {
    flex: 1 1 auto;
    min-width: 0;
}

.page-produtos .card-product-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    margin: 0;
}

.page-produtos .card-product-badge-stack {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0.38rem;
}

.page-produtos .card-product-title {
    margin: 0;
    color: #15202a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.page-produtos .card-product-mini-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.55rem;
    border-radius: 8px;
    background: var(--plan-badge-bg);
    color: var(--plan-badge-color);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.page-produtos .card-product-mini-badge.is-top-sales {
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 58%, #4338ca 100%);
    color: #f8fbff;
    box-shadow: 0 14px 28px -18px rgba(37, 99, 235, 0.48);
}

.page-produtos .card-product-mini-badge.is-promo {
    background: linear-gradient(135deg, #ff7a45, #ffb347);
    color: #3b1500;
    box-shadow: 0 12px 26px -18px rgba(255, 122, 69, 0.42);
}

.page-produtos .card-product-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.page-produtos .card-product-price-stack {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}

.page-produtos .card-product-planbox p {
    display: none;
}

.page-produtos .card-product-price-original {
    color: #7c8a99;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: line-through;
}

.page-produtos .card-product-price-badge {
    flex: 0 0 auto;
    padding: 0;
    border: none;
    background: none;
    color: #0f1b27;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.15rem, 4vw, 2.65rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.055em;
    box-shadow: none;
}

.page-produtos .card-product-spotlight.is-top-sales .card-product-price-badge {
    color: #1656d9;
}

.page-produtos .card-product-price-badge.is-promo {
    color: #d43c2f;
}

.page-produtos .card-product-price-promo-copy {
    color: #a44b11;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.3;
}

.page-produtos .card-product-price-note {
    color: var(--plan-note-color);
    font-size: 0.84rem;
    line-height: 1.3;
}

.page-produtos .btn-card-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: linear-gradient(135deg, #ff7d2f 0%, #ff9b37 36%, #ffbf4b 100%);
    color: #161d24;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    box-shadow: 0 18px 34px -24px rgba(255, 122, 47, 0.42);
}

.page-produtos .btn-card-main:hover {
    color: #161d24;
    transform: translateY(-2px);
    box-shadow: 0 24px 42px -24px rgba(255, 122, 47, 0.48);
    filter: saturate(1.04);
}

.page-produtos .card-product-spotlight .btn-product-cta {
    width: 100%;
    margin-top: 1rem;
    min-width: 0;
    border: 1px solid #e8edf4;
    background: #ffffff;
    color: #13202c;
    box-shadow: 0 10px 24px -18px rgba(65, 83, 104, 0.18);
}

.page-produtos .card-product-spotlight .btn-product-cta:hover {
    color: #13202c;
    background: #fff;
    box-shadow: 0 14px 28px -20px rgba(65, 83, 104, 0.22);
}

.page-produtos .card-product-spotlight.is-top-sales .btn-product-cta {
    border-color: rgba(59, 130, 246, 0.34);
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #f8fbff;
    box-shadow: 0 18px 30px -22px rgba(37, 99, 235, 0.36);
}

.page-produtos .card-product-spotlight.is-top-sales .btn-product-cta:hover {
    color: #f8fbff;
    background: linear-gradient(135deg, #1aaaf0, #315ff2);
    box-shadow: 0 22px 36px -24px rgba(37, 99, 235, 0.42);
}

.page-produtos .card-product-demo-link {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.9rem;
    margin: 0.1rem 0 0;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 58, 0.96);
    background:
        linear-gradient(135deg, #ff7d2f 0%, #ff9b37 36%, #ffbf4b 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
    color: #2a1303;
    text-decoration: none;
    box-shadow:
        0 22px 38px -24px rgba(255, 125, 47, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.page-produtos .card-product-demo-link:hover {
    color: #2a1303;
    transform: translateY(-2px);
    box-shadow:
        0 28px 44px -24px rgba(255, 125, 47, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
    filter: saturate(1.08);
}

.page-produtos .card-product-demo-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(86, 31, 0, 0.22);
    color: #fff6ec;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.page-produtos .card-product-demo-text {
    color: #221002;
    font-size: 1.04rem;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.page-produtos .card-product-demo-arrow {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    color: #7b3508;
}

.page-produtos .card-product-feature-list {
    display: grid;
    gap: 0.88rem;
    padding: 0.2rem 0.35rem 0.1rem;
}

.page-produtos .card-product-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.72rem;
    color: #21303d;
    font-size: 0.98rem;
    line-height: 1.46;
}

.page-produtos .card-product-feature i {
    flex: 0 0 auto;
    margin-top: 0.18rem;
    color: #10b05a;
    font-size: 1.02rem;
}

.page-produtos .products-back-to-top {
    position: fixed;
    right: clamp(16px, 2.3vw, 30px);
    bottom: clamp(92px, 10vh, 120px);
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.24), transparent 58%),
        linear-gradient(145deg, #238fff, #003a6e 72%, #071327);
    color: #f8fbff;
    box-shadow: 0 18px 40px rgba(4, 12, 28, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.92);
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.page-produtos .products-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.page-produtos .products-back-to-top:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 22px 46px rgba(4, 12, 28, 0.34);
    filter: saturate(1.08);
}

.page-produtos .products-back-to-top:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(35, 143, 255, 0.22), 0 20px 44px rgba(4, 12, 28, 0.34);
}

.page-produtos .products-back-to-top i {
    font-size: 1.2rem;
    line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
    .page-produtos .products-back-to-top {
        transition: none;
    }
}

@media(max-width: 768px) {
    .filtro-categorias {
        text-align: center;
    }

    .btn-categoria {
        display: block;
        margin: 8px auto;
    }

    .pagination-custom {
        gap: 4px;
    }

    .pagination-custom a,
    .pagination-custom span {
        min-width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .page-produtos .portal-main {
        padding-left: 0 !important;
    }

    .page-produtos .card-product-spotlight {
        padding: 0.92rem;
        border-radius: 28px;
    }

    .page-produtos .card-product-planbar,
    .page-produtos .card-product-head {
        flex-direction: column;
        width: 100%;
    }

    .page-produtos .card-product-title {
        font-size: 1.34rem;
    }

    .page-produtos .card-product-feature {
        font-size: 0.94rem;
    }

    .page-produtos .products-back-to-top {
        right: 12px;
        bottom: 86px;
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }
}
