/* ==========================================================
   LOBINHO FERRAGENS
   CSS PRINCIPAL
==========================================================*/

:root{

    --primary:#0d6efd;
    --primary-dark:#084298;
    --secondary:#ffc107;
    --success:#25D366;
    --dark:#222;
    --light:#ffffff;
    --gray:#f5f6fa;
    --border:#e6e6e6;
    --text:#333;
    --shadow:0 8px 25px rgba(0,0,0,.08);

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Segoe UI",Arial,sans-serif;
    background:var(--gray);
    color:var(--text);

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

.container{

    width:92%;
    max-width:1280px;
    margin:auto;

}

/* =====================================
TOPO
===================================== */

.top-bar{

    background:#1b1b1b;
    color:white;
    padding:10px 0;
    font-size:14px;

}

.top-bar .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

/* =====================================
HEADER
===================================== */

header{

    background:var(--primary);
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:var(--shadow);

}

header .container{
    min-height: 86px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 8px 0;
}

.logo{
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo img{
    width: 92px;
    height: 74px;
    display: block;
    object-fit: contain;
}

.logo h1,
.logo span{

    display:none;

}
/* =====================================
MENU
===================================== */

nav{
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul{
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav a{
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

nav a::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

nav a:hover{
    color: var(--secondary);
}

nav a:hover::after{
    transform: scaleX(1);
}

/* =====================================
BOTÃO HEADER
===================================== */

.btn-header{

    display:flex;
    align-items:center;
    gap:8px;

    background:#25D366;
    color:#fff;

    padding:12px 22px;

    border-radius:999px;

    font-size:15px;
    font-weight:700;

    box-shadow:0 8px 20px rgba(37,211,102,.25);

    transition:.25s;

}

.btn-header:hover{

    background:#1EBE5D;

    transform:translateY(-2px);

    box-shadow:0 12px 24px rgba(37,211,102,.35);

    color:#fff;

}
/* =====================================
BANNER
===================================== */

.hero{

    background:
    linear-gradient(
        135deg,
        #111111 0%,
        #1b1b1b 45%,
        #2b2b2b 100%
    );

    color:white;

    padding:70px 20px;

}

.hero-content{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:50px;

}

.hero-text{

    flex:1;

    text-align:left;

}

.hero-badge{

    display:inline-block;

    margin-bottom:18px;

    padding:8px 18px;

    background:#ffd400;

    color:#111;

    font-size:14px;

    font-weight:700;

    border-radius:999px;

}

.hero h2{

    font-size:52px;

    line-height:1.1;

    margin-bottom:22px;

}

.hero p{

    font-size:21px;

    color:#ececec;

    line-height:1.7;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:100%;

    max-width:520px;

    height:auto;

    filter:drop-shadow(0 20px 35px rgba(0,0,0,.45));

}

@media(max-width:900px){

    .hero-content{

        flex-direction:column-reverse;

        text-align:center;

    }

    .hero-text{

        text-align:center;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero h2{

        font-size:38px;

    }

    .hero p{

        font-size:18px;

    }

}

/* =====================================
BOTÕES
===================================== */

.btn{

    padding:15px 30px;
    border-radius:8px;
    font-weight:bold;
    transition:.3s;

}

.btn:hover{

    transform:translateY(-3px);

}

/* =====================================
SEÇÕES
===================================== */

section{

    padding:90px 0;

}

.section-title{

    text-align:center;
    margin-bottom:50px;

}

.section-title h2{

    color:var(--primary);
    font-size:40px;
    margin-bottom:10px;

}

.section-title p{

    color:#666;

}

/* ==========================================================
   CATEGORIAS
==========================================================*/

.categories{
    background:#fff;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
}

.category-card{

    background:#fff;

    border-radius:16px;

    padding:35px 25px;

    text-align:center;

    border:1px solid var(--border);

    transition:.35s;

    box-shadow:var(--shadow);

}

.category-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}

.category-card i{

    font-size:52px;

    color:var(--primary);

    margin-bottom:22px;

}

.category-card h3{

    font-size:22px;

    margin-bottom:15px;

}

.category-card p{

    color:#666;

    line-height:1.7;

}
/* =====================================
CARDS DE CATEGORIAS
===================================== */

.categories{
    padding:70px 0;
    background:#fff;
}

.categories-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:40px;

}

.category-card{

    background:#fff;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    text-decoration:none;

    border:1px solid #ececec;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

    color:#222;

}

.category-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

    border-color:var(--primary);

}

.category-card-icon{

    font-size:48px;
    margin-bottom:18px;

}

.category-card strong{

    display:block;
    color:var(--primary);
    font-size:20px;
    margin-bottom:8px;

}

.category-card span{

    color:#666;
    font-size:14px;

}

@media(max-width:1000px){

    .categories-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:650px){

    .categories-grid{

        grid-template-columns:1fr;

    }

}
/* ==========================================================
   CATÁLOGO
==========================================================*/

.catalog{

    background:#f8f9fb;

}

.catalog-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

    flex-wrap:wrap;

    gap:20px;

}

/* ==========================================================
   BUSCA
==========================================================*/

.search-box{

    position:relative;

    width:100%;

    max-width:520px;

    margin:0 auto 40px;

}

.search-box input{

    width:100%;

    height:58px;

    border-radius:50px;

    border:2px solid #ddd;

    padding:0 65px 0 22px;

    font-size:16px;

    transition:.3s;

    background:white;

}

.search-box input:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(13,110,253,.12);

}

.search-box button{

    position:absolute;

    right:6px;

    top:6px;

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:white;

    cursor:pointer;

    transition:.3s;

}

.search-box button:hover{

    background:var(--primary-dark);

}

/* ==========================================================
   GRID PRODUTOS
==========================================================*/

.products-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fill,minmax(300px,1fr));

    gap:30px;

}

/* ==========================================================
   CARD PRODUTO
==========================================================*/

.product-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    border:1px solid #ececec;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    transition:
        transform .30s ease,
        box-shadow .30s ease,
        border-color .30s ease;

    height:100%;

}

.product-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:0 18px 40px rgba(0,0,0,.14);

}

.product-image{

    width:100%;

    height:250px;

    background:linear-gradient(180deg,#fafafa,#f3f3f3);

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

    padding:20px;

    border-bottom:1px solid #ececec;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:transform .35s ease;

}

.product-card:hover .product-image img{

    transform:scale(1.06);

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-info{

    display:flex;

    flex-direction:column;

    flex:1;

    padding:20px;

    gap:10px;

}

.product-code{

    font-size:13px;

    color:#888;

    letter-spacing:.4px;

    margin-bottom:8px;

}

.product-title{

    font-size:23px;

    font-weight:700;

    color:#222;

    line-height:1.45;

    min-height:68px;

    margin:10px 0 18px;

}

.product-description{

    color:#666;

    margin-bottom:18px;

    line-height:1.7;

    flex:1;

}

.product-price{

    font-size:30px;

    color:var(--primary);

    font-weight:700;

    margin-bottom:22px;

}

/* ==========================================================
   BOTÕES DOS PRODUTOS
==========================================================*/

.product-buttons{

    display:flex;

    gap:12px;

    margin-top:auto;

}

.btn-produto{

    flex:1;

    min-height:50px;

    border:none;

    border-radius:12px;

    font-size:14px;

    font-weight:700;

    cursor:pointer;

    transition:
        background .25s,
        transform .25s,
        box-shadow .25s;

}

.btn-ver{

    background:linear-gradient(135deg,#0d6efd,#2d82ff);

    color:#fff;

    border:none;

    box-shadow:0 8px 18px rgba(13,110,253,.25);

    cursor:pointer;

}

.btn-ver:hover{

    background:#0f63d6;

    transform:translateY(-2px);

    box-shadow:0 12px 24px rgba(22,119,255,.35);

}

.btn-ver:hover{

    background:var(--primary-dark);

}

.btn-whats{

    background:var(--success);

    color:white;

}

.btn-whats:hover{

    background:#1fb85a;

}

/* ==========================================================
   SELOS
==========================================================*/

.badge{

    position:absolute;

    top:15px;

    left:15px;

    padding:7px 12px;

    border-radius:30px;

    color:white;

    font-size:12px;

    font-weight:bold;

}

.badge-sale{

    background:#dc3545;

}

.badge-new{

    background:#198754;

}

/* ==========================================================
   PAGINAÇÃO
==========================================================*/

.pagination-area{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:10px;

    margin:40px 0;

}

.pagination-area button{

    min-width:48px;

    height:42px;

    padding:0 18px;

    border:1px solid #e5e5e5;

    border-radius:10px;

    background:#fff;

    color:#0d6efd;

    font-weight:600;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    white-space:nowrap;

    transition:.25s;

}

.pagination-area button:hover{

    background:#0d6efd;

    color:#fff;

    border-color:#0d6efd;

}

.pagination-area button.active{

    background:#0d6efd;

    color:#fff;

    border-color:#0d6efd;

    box-shadow:0 8px 20px rgba(13,110,253,.25);

}

/* ==========================================================
   SOBRE
==========================================================*/

.about{

    background:white;

}

.about-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-text p{

    margin-bottom:20px;

    line-height:1.9;

    color:#555;

}

.about-image img{

    border-radius:18px;

    box-shadow:var(--shadow);

    width:100%;

}

/* ==========================================================
   CONTATO
==========================================================*/

.contact{

    background:#f8f9fb;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.contact-card{

    background:white;

    border-radius:16px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-6px);

}

.contact-card i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:18px;

}

.contact-card h3{

    margin-bottom:15px;

}

.contact-card a{

    color:var(--primary);

    font-weight:600;

}

.contact-card a:hover{

    color:var(--primary-dark);

}/* ==========================================================
   RODAPÉ
==========================================================*/

footer{

    background:#1f1f1f;

    color:#ddd;

    padding:70px 0 25px;

}

.footer-content{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

    margin-bottom:45px;

}

.footer-content h3{

    color:white;

    margin-bottom:20px;

    font-size:22px;

}

.footer-content p{

    line-height:1.8;

    color:#bbb;

}

.footer-content ul{

    list-style:none;

    padding:0;

}

.footer-content li{

    margin-bottom:12px;

}

.footer-content a{

    color:#bbb;

    transition:.3s;

}

.footer-content a:hover{

    color:white;

    padding-left:6px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);

    padding-top:25px;

    text-align:center;

    color:#999;

    font-size:14px;

}

/* ==========================================================
   WHATSAPP FLUTUANTE
==========================================================*/

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    z-index:9999;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

}

.whatsapp-float:hover{

    transform:scale(1.12);

    background:#1fb85a;

    color:white;

}

/* ==========================================================
   ANIMAÇÕES
==========================================================*/

.fade-up{

    animation:fadeUp .7s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.shadow-hover{

    transition:.3s;

}

.shadow-hover:hover{

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

/* ==========================================================
   RESPONSIVO
==========================================================*/

@media(max-width:992px){

    header .container{

        flex-direction:column;

        gap:20px;

    }

    nav ul{

        flex-wrap:wrap;

        justify-content:center;

    }

    .hero h2{

        font-size:42px;

    }

    .hero p{

        font-size:20px;

    }

    .about-content{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    section{

        padding:65px 0;

    }

    .hero{

        padding:90px 20px;

    }

    .hero h2{

        font-size:32px;

    }

    .hero p{

        font-size:17px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-buttons .btn{

        width:100%;

    }

    .products-grid{

        grid-template-columns:1fr;

    }

    .category-grid{

        grid-template-columns:1fr;

    }

    .contact-grid{

        grid-template-columns:1fr;

    }

    .footer-content{

        grid-template-columns:1fr;

        text-align:center;

    }

}

@media(max-width:480px){

    .logo{

        flex-direction:column;

        text-align:center;

    }

    .logo h1{

        font-size:26px;

    }

    .section-title h2{

        font-size:30px;

    }

    .search-box input{

        height:52px;

    }

    .btn-header{

        width:100%;

        text-align:center;

    }

    .whatsapp-float{

        width:58px;

        height:58px;

        font-size:30px;

    }

}
.produto-item{
    width:100%;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
    gap:30px;
}

.product-card{
    width:100%;
}
/* ===== TESTE DE EXIBIÇÃO DOS PRODUTOS ===== */

#produtos{
    display:grid !important;
    grid-template-columns:repeat(auto-fill,minmax(320px,1fr)) !important;
    gap:30px !important;
    width:100% !important;
}

#produtos > div{
    width:100% !important;
}

.product-card{
    display:flex !important;
    flex-direction:column !important;
    width:100% !important;
    min-height:420px !important;
    background:#fff !important;
    border:1px solid #ddd !important;
}

.product-image{
    height:250px !important;
}

.product-image img{
    width:100% !important;
    height:100% !important;
    object-fit:contain !important;
}
.pagination-area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 35px;
    padding-bottom: 40px;
}

.pagination-button {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #d8dde5;
    border-radius: 8px;
    background: #ffffff;
    color: #1677ff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.pagination-button:hover:not(:disabled) {
    background: #1677ff;
    color: #ffffff;
    border-color: #1677ff;
}

.pagination-button.active {
    background: #1677ff;
    color: #ffffff;
    border-color: #1677ff;
}

.pagination-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.pagination-info {
    padding: 0 8px;
    color: #667085;
    font-size: 14px;
}

@media (max-width: 600px) {
    .pagination-button {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
    }

    .pagination-info {
        width: 100%;
        text-align: center;
        order: 3;
    }
}
.product-page-header {
    background: #1677ff;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.product-page-header-content {
    min-height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.product-page-logo {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    text-decoration: none;
}

.product-page-logo strong {
    font-size: 24px;
}

.product-page-logo span {
    margin-top: 4px;
    font-size: 13px;
    opacity: 0.9;
}

.product-back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 8px;
    background: #ffffff;
    color: #1677ff;
    font-weight: 700;
    text-decoration: none;
}

.product-detail-page {
    min-height: 100vh;
    padding: 60px 0;
    background: #f7f9fc;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 50px;
    padding: 35px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.product-detail-image-area {
    position: relative;
    min-height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 14px;
    background: #f2f4f7;
}

.product-detail-category {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    padding: 8px 14px;
    border-radius: 999px;
    background: #1677ff;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.product-detail-image {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-detail-code {
    display: inline-block;
    margin-bottom: 14px;
    color: #667085;
    font-size: 14px;
}

.product-detail-info h1 {
    margin: 0;
    color: #111827;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

.product-detail-description {
    margin: 24px 0;
    color: #667085;
    font-size: 17px;
    line-height: 1.7;
}

.product-detail-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.product-detail-meta div {
    padding: 18px;
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    background: #fafafa;
}

.product-detail-meta span {
    display: block;
    margin-bottom: 6px;
    color: #98a2b3;
    font-size: 13px;
}

.product-detail-meta strong {
    color: #344054;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-detail-whatsapp,
.product-detail-back,
.product-back-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 9px;
    font-weight: 700;
    text-decoration: none;
}

.product-detail-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.product-detail-back,
.product-back-link {
    border: 1px solid #d0d5dd;
    background: #ffffff;
    color: #344054;
}

.product-detail-loading,
.product-detail-error {
    grid-column: 1 / -1;
    padding: 80px 20px;
    text-align: center;
}

.product-detail-error i {
    margin-bottom: 20px;
    color: #f04438;
    font-size: 46px;
}

.related-products-section {
    margin-top: 70px;
}

.related-products-grid {
    margin-top: 30px;
}

@media (max-width: 850px) {
    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-detail-image-area {
        min-height: 360px;
    }
}

@media (max-width: 600px) {
    .product-page-header-content {
        min-height: auto;
        padding-top: 18px;
        padding-bottom: 18px;
        flex-direction: column;
        align-items: flex-start;
    }

    .product-detail-page {
        padding: 30px 0;
    }

    .product-detail {
        padding: 18px;
        gap: 28px;
    }

    .product-detail-image-area {
        min-height: 280px;
    }

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

    .product-detail-actions {
        flex-direction: column;
    }

    .product-detail-whatsapp,
    .product-detail-back {
        width: 100%;
    }
}
/* ==========================================================
   BOTÃO COMPARTILHAR PRODUTO
==========================================================*/

.product-detail-share {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid #1677ff;
    border-radius: 9px;
    background: #ffffff;
    color: #1677ff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s ease;
}

.product-detail-share:hover {
    background: #1677ff;
    color: #ffffff;
}

.product-detail-share:disabled {
    opacity: .75;
    cursor: default;
}

@media (max-width:600px){

    .product-detail-share{

        width:100%;

    }

}
/* ==========================================================
   FILTROS DO CATÁLOGO
========================================================== */

.category-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 24px 0 14px;
    padding-bottom: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.category-filter {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 17px;
    border: 1px solid #d0d5dd;
    border-radius: 999px;
    background: #ffffff;
    color: #344054;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-filter:hover {
    border-color: #1677ff;
    color: #1677ff;
}

.category-filter.active {
    border-color: #1677ff;
    background: #1677ff;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(22, 119, 255, 0.2);
}

.catalog-result {
    min-height: 24px;
    margin-bottom: 20px;
    color: #667085;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 600px) {
    .category-filters {
        margin-top: 18px;
    }

    .category-filter {
        min-height: 39px;
        padding: 0 14px;
        font-size: 13px;
    }
}
/* ==========================================================
   SISTEMA DE ORÇAMENTO
========================================================== */

.budget-floating-button {
    position: fixed;
    right: 28px;
    bottom: 95px;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: #1677ff;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(22, 119, 255, 0.3);
    transition: transform 0.2s ease;
}

.budget-floating-button:hover {
    transform: translateY(-2px);
}

.budget-counter {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: #ffffff;
    color: #1677ff;
    font-size: 12px;
}

.budget-panel {
    position: fixed;
    inset: 0;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.budget-panel.active {
    visibility: visible;
    opacity: 1;
}

.budget-panel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.budget-panel-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(440px, 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    box-shadow: -12px 0 35px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.budget-panel.active .budget-panel-content {
    transform: translateX(0);
}

.budget-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-bottom: 1px solid #e4e7ec;
}

.budget-panel-header h2 {
    margin: 0 0 4px;
    color: #101828;
    font-size: 24px;
}

.budget-panel-header p {
    margin: 0;
    color: #667085;
    font-size: 14px;
}

.budget-close-button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #f2f4f7;
    color: #344054;
    font-size: 18px;
    cursor: pointer;
}

.budget-product-list {
    flex: 1;
    padding: 20px 24px;
    overflow-y: auto;
}

.budget-empty {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    color: #667085;
    text-align: center;
}

.budget-empty i {
    color: #98a2b3;
    font-size: 46px;
}

.budget-product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #eaecf0;
}

.budget-product-item span {
    display: block;
    margin-bottom: 5px;
    color: #98a2b3;
    font-size: 12px;
}

.budget-product-item strong {
    display: block;
    color: #344054;
    font-size: 14px;
    line-height: 1.4;
}

.budget-remove-button {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 8px;
    background: #fff1f0;
    color: #f04438;
    cursor: pointer;
}

.budget-panel-footer {
    display: grid;
    gap: 10px;
    padding: 20px 24px 24px;
    border-top: 1px solid #e4e7ec;
}

.budget-clear-button,
.budget-whatsapp-button {
    min-height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    border-radius: 9px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.budget-clear-button {
    border: 1px solid #d0d5dd;
    background: #ffffff;
    color: #344054;
    cursor: pointer;
}

.budget-whatsapp-button {
    border: 0;
    background: #25d366;
    color: #ffffff;
}

.budget-whatsapp-button.disabled {
    opacity: 0.45;
    pointer-events: none;
}

.btn-orcamento{

    border:none;

    background:linear-gradient(135deg,#25d366,#20bf5a);

    color:#fff;

    box-shadow:0 8px 18px rgba(37,211,102,.28);

    cursor:pointer;

}

.btn-orcamento:hover{

    background:#1ebe5d;

    transform:translateY(-2px);

    box-shadow:0 12px 24px rgba(37,211,102,.38);

}
.btn-orcamento:disabled {
    opacity: 0.75;
    cursor: default;
}

@media (max-width: 600px) {
    .budget-floating-button {
        right: 18px;
        bottom: 88px;
        min-height: 48px;
        padding: 0 14px;
    }

    .budget-floating-button span {
        display: none;
    }

    .budget-panel-header,
    .budget-product-list,
    .budget-panel-footer {
        padding-left: 18px;
        padding-right: 18px;
    }
}
/* =========================================
   CARREGAMENTO DOS PRODUTOS
========================================= */

.product-skeleton{

    background:#ffffff;

    border:1px solid #ececec;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.skeleton-image{

    width:100%;

    height:250px;

    background:#eeeeee;

}

.skeleton-info{

    padding:20px;

}

.skeleton-line{

    height:14px;

    margin-bottom:12px;

    border-radius:8px;

    background:linear-gradient(
        90deg,
        #eeeeee 25%,
        #f7f7f7 50%,
        #eeeeee 75%
    );

    background-size:200% 100%;

    animation:skeleton-loading 1.4s infinite;

}

.skeleton-line-small{

    width:40%;

}

.skeleton-line-medium{

    width:70%;

}

.skeleton-line-large{

    width:100%;

}

.skeleton-button{

    height:48px;

    margin-top:20px;

    border-radius:10px;

    background:#eeeeee;

}

@keyframes skeleton-loading{

    0%{

        background-position:200% 0;

    }

    100%{

        background-position:-200% 0;

    }

}
/* =========================================
   BOTÃO VOLTAR AO TOPO
========================================= */

.btn-voltar-topo{

    position:fixed;

    right:28px;

    bottom:210px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color: #fff;

    font-size:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.20);

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .3s ease;

    z-index:999;

}

.btn-voltar-topo.mostrar{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.btn-voltar-topo:hover{

    background:#095ed7;

    transform:translateY(-3px);

}

@media(max-width:600px){

    .btn-voltar-topo{

        right:18px;

        bottom:145px;

        width:46px;

        height:46px;

    }

}
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.about-highlight i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    flex-shrink: 0;
}

/* MARCA D'ÁGUA NAS IMAGENS DOS PRODUTOS */

.product-image {
    position: relative;
    overflow: hidden;
}

.image-watermark {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(120, 120, 120, 0.18);
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    padding: 4px 8px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 2;
}
/* ==========================================================
   FIM DO ARQUIVO
==========================================================*/