html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* SEO Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Trava de scroll robusta para Mobile/iOS */
body.modal-open, body.menu-open {
    overflow: hidden !important;
}


/* WHATSAPP FLOAT - FIX ABSOLUTO VIA ID */
#wa-floating-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background-color: #25d366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 100000 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    transition: transform 0.3s ease !important;
}

/* Flying Icon Effect */
.flying-dot {
    position: fixed;
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 100001;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Cart Bounce Animation */
@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.4) rotate(-15deg); }
}

.cart-bounce {
    animation: cartBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Periodic Pulse for Active Cart */
@keyframes cartPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 47, 108, 0.4); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(0, 47, 108, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 47, 108, 0); }
}

.cart-btn.cart-active {
    animation: cartPulse 2s infinite;
    background: transparent !important;
    color: var(--primary) !important; /* Cor primária para ser visível no fundo branco */
}

.cart-btn.cart-active .cart-count {
    background: #ff4d4d; /* Cor mais vibrante quando ativo */
}

/* Pseudo-elemento para o efeito pulsar (Evita conflito com !important) */
#wa-floating-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: wa-pulse-wave 2s infinite;
}

@keyframes wa-pulse-wave {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

#wa-floating-btn img {
    width: 35px !important;
    height: 35px !important;
}

@media (max-width: 768px) {
    #wa-floating-btn {
        bottom: 20px !important;
        right: 20px !important;
        width: 55px !important;
        height: 55px !important;
    }
    #wa-floating-btn img {
        width: 30px !important;
        height: 30px !important;
    }
}


/* Ocultar boto fixo quando menu, carrinho ou modal estiverem abertos */
body.menu-open #wa-floating-btn,
body.cart-open #wa-floating-btn,
body.cart-open #mobile-cart-btn,
.product-modal.open ~ #wa-floating-btn {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

body.cart-open, body.menu-open, .no-scroll {
    overflow: hidden !important;
    touch-action: none !important; /* Trava scroll em dispositivos touch (iOS/Android) */
    -webkit-overflow-scrolling: none;
}

/* Estilo para o botão de WhatsApp dentro do menu mobile */
.nav-wa-mobile, .menu-social, .menu-social-label, .mobile-menu-logo {
    display: none !important; /* Escondido por padrão (desktop) */
}

@media (max-width: 992px) {
    .navbar {
        height: 60px !important;
    }

    .navbar.scrolled {
        height: 60px !important;
    }

    .nav-links {
        /* NÃO usa display:none para permitir transição de saída */
    }

    .nav-links.mobile-open {
        display: flex !important;
    }

    .logo-img {
        height: 150px !important; /* Mantém o tamanho original conforme pedido */
        top: -45px !important; /* Ajuste para não ficar muito baixo com a header menor */
    }

    .navbar.scrolled .logo-img {
        height: 130px !important; /* Um pouco maior no scroll do que estava antes para manter o peso */
        top: -30px !important;
    }

    .hero {
        padding-top: 60px !important;
    }

    .nav-wa-mobile {
        display: flex !important;
        margin-top: 30px !important;
        background: #25d366 !important;
        border: none !important;
        color: white !important;
        padding: 16px 24px !important;
        border-radius: 16px !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 12px !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
        width: 100% !important;
        text-transform: none !important;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2) !important;
        transition: all 0.3s ease !important;
    }

    .nav-wa-mobile i {
        font-size: 1.2rem !important;
    }

    .menu-social-label {
        display: block !important;
        text-align: center !important;
        color: rgba(255, 255, 255, 0.4) !important;
        font-size: 0.75rem !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
        margin-top: auto !important;
        margin-bottom: 15px !important;
        font-weight: 600 !important;
    }

    .menu-social {
        display: flex !important;
        justify-content: center !important;
        gap: 20px !important;
        padding-bottom: 20px !important;
    }

    .menu-social .social-icon {
        width: 42px !important;
        height: 42px !important;
        background: transparent !important;
        border: none !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: white !important;
        font-size: 1.1rem !important;
        transition: all 0.3s ease !important;
    }

    .menu-social .social-icon.instagram {
        color: #E1306C !important; /* Rosa Instagram */
    }

    .menu-social .social-icon.facebook {
        color: #1877F2 !important; /* Azul Facebook */
    }

    .menu-social .social-icon.whatsapp {
        color: #ffffff !important; /* WhatsApp Branco conforme solicitado */
    }

    .menu-social .social-icon:active {
        background: var(--primary) !important;
        transform: translateY(-3px);
    }
}



:root {

    --primary: #003B8E;
    --primary-dark: #002966;
    --secondary: #0077CC;
    --accent: #ff6b35;
    --bg-light: #EDF2F9;
    --bg-section: #E3EBF6;
    --text-main: #1a1a1a;
    --text-muted: #5a6a7d;
    --white: #ffffff;
    --glass: rgba(237, 242, 249, 0.85);
    --shadow: 0 10px 30px rgba(0, 59, 142, 0.08);
    /* LAYERED SHADOW PREMIUM */
    --shadow-premium: 
        0 2.8px 2.2px rgba(0, 59, 142, 0.02),
        0 6.7px 5.3px rgba(0, 59, 142, 0.028),
        0 12.5px 10px rgba(0, 59, 142, 0.035),
        0 22.3px 17.9px rgba(0, 59, 142, 0.042),
        0 41.8px 33.4px rgba(0, 59, 142, 0.05),
        0 100px 80px rgba(0, 59, 142, 0.07);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    gap: 30px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(237, 242, 249, 0.9);
    backdrop-filter: blur(12px);
    z-index: 100000; /* Ajustado para ficar acima do overlay se necessrio */
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 59, 142, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    height: 70px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* 3 colunas: esquerda, centro, direita */
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    width: 220px; /* Mais espaço para a logo */
    height: 100%;
    justify-content: flex-start; /* Logo na esquerda */
}

.logo-img {
    height: 150px; /* Logo maior e mais imponente */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    position: absolute;
    top: -35px; /* Ajuste para centralizar o peso visual */
    left: 0;
}

.navbar.scrolled .logo-img {
    height: 110px; /* Continua grande mesmo ao rolar */
    top: -20px;
}

.footer-logo {
    height: 180px; /* Aumentado para melhor proporção no desktop */
    filter: brightness(0) invert(1);
    position: static !important; /* Previne sobreposição com regras da navbar */
    transform: none !important;
    margin: 0 auto;
    display: block;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    margin: 0 20px;
    font-family: 'Montserrat', sans-serif; /* Mesma família da logo */
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase; /* Caixa alta para autoridade */
    letter-spacing: 1.5px; /* Espaçamento premium */
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a i, 
.nav-links a svg {
    display: none !important; /* Esconde ícones e SVGs no desktop */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: flex-end; /* Encosta o carrinho na ponta direita */
}

.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    color: var(--text-main); /* Cor neutra inicial */
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.cart-btn i {
    width: 26px;
    height: 26px;
    stroke-width: 2.5px; /* Ícone mais robusto */
}

.cart-btn:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    padding: 10px;
    z-index: 1010;
}

.mobile-menu-btn i {
    width: 28px;
    height: 28px;
}

/* Hero Section */
.hero {
    height: 85vh; 
    min-height: 600px;
    background: url('./hero_water_pump_banner.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    text-align: center;
    margin-bottom: 0; /* Garante que não haja espaço embaixo */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--secondary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Lucide Icons */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-block {
    width: 100%;
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--bg-section); /* Azul suave alinhado com a identidade da marca */
    position: relative;
    z-index: 5;
    margin-top: 0; /* Remove a sobreposição */
}

.feature-card {
    padding: 40px;
    background: var(--white); /* Cards brancos sobre o fundo do hero */
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
}


.features .grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-card {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-card i {
    width: 60px;
    height: 60px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* Catalog */
.catalog {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-section) 100%);
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #0056cc);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 59, 142, 0.2);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 59, 142, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 4px 25px rgba(0, 59, 142, 0.4); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 59, 142, 0.2); }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-main), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================================= */
/* DESTAQUE PREMIUM (Bomba Intec) -> Agora Minimalista */
/* ========================================================= */
.product-card.promo-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
    color: var(--white);
    border: none;
    position: relative;
    /* max-width removido para ele se comportar exatamente como os outros */
}

.product-card.promo-card .product-name {
    color: var(--white) !important;
}

.product-card.promo-card .product-model {
    color: rgba(255, 255, 255, 0.8) !important;
    background: transparent !important;
    padding: 0 !important;
}

.product-card.promo-card .product-img {
    background: transparent !important;
}

.product-card.promo-card .product-description-sub {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Preços em branco no card promocional */
.product-card.promo-card .price-label {
    color: rgba(255, 255, 255, 0.7) !important;
}

.product-card.promo-card .price-value {
    color: var(--white) !important;
}

.product-card.promo-card .price-condition {
    color: rgba(255, 255, 255, 0.7) !important;
}

.product-card.promo-card .promo-price-tag {
    color: var(--white) !important;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 8px;
}

.promo-tag-minimalist {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(255, 107, 53, 0.3);
}

.promo-price-tag {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 15px 0 10px;
    color: #fff;
    line-height: 1;
}

/* ========================================================= */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 100;
}

.dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
    transition: background 0.2s;
    cursor: pointer;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item.active {
    background: rgba(0, 59, 142, 0.05);
    color: var(--primary);
    font-weight: 700;
}

/* Product Grid */
.product-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Help Banner - Centralizado */
.help-banner {
    padding: 80px 0;
    background: var(--bg-section);
    border-top: 1px solid rgba(0, 59, 142, 0.1);
    border-bottom: 1px solid rgba(0, 59, 142, 0.1);
    margin-top: 40px;
}

.help-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
}

.help-text-box h2 {
    font-size: 2rem; /* Título maior e centralizado */
    color: var(--text-main);
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.help-text-box p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.help-btn-cta {
    background: #25D366;
    color: white;
    padding: 18px 45px;
    border-radius: 50px; /* Botão arredondado premium */
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex !important; /* Forçado para não esticar */
    width: auto !important;
    max-width: 400px !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    margin: 0 auto;
}

.help-btn-cta:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    color: white;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 500px; /* Altura fixa para o slider não pular */
}

.about-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Transição suave de 1.5s */
}

.about-slider img.active {
    opacity: 1;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.about-text h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.stat-item h4 {
    font-size: 2.8rem; /* Números bem grandes */
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    display: inline-block; /* Permite a unidade ao lado */
}

.stat-unit {
    font-size: 2.8rem; /* Mesmo tamanho do número */
    font-weight: 800;
    color: var(--primary);
    margin-left: 2px;
    vertical-align: baseline;
    font-family: 'Montserrat', sans-serif;
}

.stat-item p {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-text h2 { font-size: 2.2rem; }
}

/* QUICK CATEGORIES (Integrated Style) */
.quick-categories-integrated {
    padding: 20px 0 30px;
    background: transparent;
    position: relative;
}

.categories-scroll-wrapper {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 10px 5px 20px 5px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center; /* Desktop default */
    mask-image: linear-gradient(to right, black 85%, transparent 100%); /* Fade no final no mobile */
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

/* DESKTOP: Todas as categorias visíveis sem scroll */
@media (min-width: 769px) {
    .categories-scroll-wrapper {
        flex-wrap: wrap;
        overflow-x: visible;
        gap: 15px;
        mask-image: none;
        -webkit-mask-image: none;
        padding: 10px 0 20px 0;
    }
    .cat-item {
        flex: 0 0 auto;
        min-width: 70px;
    }
    .cat-icon {
        width: 55px;
        height: 55px;
    }
    .cat-icon i {
        width: 24px;
        height: 24px;
    }
    .cat-item span {
        font-size: 0.78rem;
    }
}

.categories-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.cat-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    scroll-snap-align: center;
}

.cat-icon {
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: var(--transition);
    color: var(--primary);
}

.cat-icon i {
    width: 28px;
    height: 28px;
}

.cat-item span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
}

.cat-item:hover .cat-icon, .cat-item.active .cat-icon {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 59, 142, 0.15);
    background: var(--primary);
    color: white;
}

.cat-item.active span {
    color: var(--primary);
}

/* PRICE DISPLAY ON CARDS */
.product-price-container {
    margin-top: auto;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 2px;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.price-condition {
    font-size: 0.7rem;
    color: var(--text-light);
}

.category-header {
    display: flex;
    flex-direction: column;
    padding: 10px 0 10px 20px !important;
    margin-bottom: 40px !important;
    background: none !important;
    border: none !important;
    border-left: 5px solid var(--primary) !important; /* Acento vertical moderno */
    border-radius: 0 !important;
    position: relative;
}

.category-header--residencial { border-left-color: var(--primary) !important; }
.category-header--industrial { border-left-color: var(--accent) !important; }
.category-header--agronegocio { border-left-color: #16a34a !important; }

.category-header h3 {
    font-size: 2rem !important;
    color: #111 !important;
    font-weight: 800 !important;
    text-transform: none !important;
    letter-spacing: -1px !important;
    line-height: 1 !important;
    margin-bottom: 8px !important;
}

.category-header p {
    font-size: 1rem !important;
    color: #888 !important;
    font-weight: 400 !important;
    margin: 0 !important;
}

.category-header__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-header--residencial .category-header__icon { background: rgba(0, 86, 179, 0.12); }
.category-header--industrial .category-header__icon { background: rgba(255, 107, 53, 0.12); }
.category-header--agronegocio .category-header__icon { background: rgba(22, 163, 74, 0.12); }

.category-header__icon i { width: 24px; height: 24px; }

.category-header__text h3 {
    font-size: 1.3rem;
    margin-bottom: 2px;
    color: var(--text-main);
}

.category-header__text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 400;
}

.category-header__count {
    margin-left: auto;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.category-header--residencial .category-header__count { background: rgba(0,86,179,0.1); color: var(--primary); }
.category-header--industrial .category-header__count { background: rgba(255,107,53,0.1); color: var(--accent); }
.category-header--agronegocio .category-header__count { background: rgba(22,163,74,0.1); color: #16a34a; }

/* Products Row -> Carousel */
.products-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 5px 30px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
}

.products-row::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* SEARCH + FILTER UNIFIED ROW */
.search-filter-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    position: relative;
    z-index: 50; /* Garante que o menu suspenso fique sobre os produtos */
}

.search-container {
    flex: 1;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0, 59, 142, 0.15);
    border-radius: 50px;
    padding: 12px 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    margin-left: 10px;
}

.filter-inline-container {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-icon-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(0, 59, 142, 0.15);
    border-radius: 50px;
    padding: 12px 20px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-icon-btn:hover {
    background: rgba(0, 59, 142, 0.05);
}

/* CATEGORY HEADERS - 100% Clean */
.category-section {
    margin-bottom: 80px;
    padding: 0 20px;
    clear: both;
}

.category-header {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 0 15px 0 !important;
    margin-bottom: 30px !important;
    text-align: left;
    border-bottom: 2px solid #eee !important;
}

.category-header h3 {
    font-size: 1.8rem !important;
    color: #111 !important;
    font-weight: 800 !important;
    text-transform: none !important;
    margin: 0 !important;
}

.category-header p {
    font-size: 1rem !important;
    color: #666 !important;
    margin: 5px 0 0 0 !important;
}

.carousel-dots {
    display: none; /* Escondido no desktop */
}


/* SCROLL PROGRESS BAR - PREMIUM DETAIL */
.scroll-progress-container {
    width: 100%;
    height: 3px;
    background: #e2e8f0;
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
    display: none; /* Hidden on desktop by default */
}

@media (max-width: 768px) {
    .scroll-progress-container {
        display: block; /* Show on mobile */
    }
}

.scroll-progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.1s ease-out;
}


/* FORÇA APARECIMENTO DO SCROLL EM QUALQUER NAVEGADOR */
.catalog, .catalog .container, .product-grid {
    overflow: visible !important;
}

/* PREMIUM SCROLLBAR - MINIMALIST PILL DESIGN */
.products-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 30px !important;
    overflow-x: auto !important;
    padding: 20px 0 30px 0 !important;
    width: 100% !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(0, 59, 142, 0.3) transparent !important; /* Mais visível no Firefox */
}

/* Chrome, Edge and Safari */
.products-row::-webkit-scrollbar {
    height: 8px !important; /* Aumentado para maior visibilidade */
}

.products-row::-webkit-scrollbar-track {
    background: rgba(0, 59, 142, 0.05) !important; /* Fundo levemente azulado */
    border-radius: 10px !important;
    margin: 0 15%; /* Centralizado de forma responsiva */
}

.products-row::-webkit-scrollbar-thumb {
    background-color: rgba(0, 59, 142, 0.2) !important; /* Cor da marca translúcida */
    border-radius: 10px !important;
    transition: background 0.3s;
}

.products-row::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary) !important; /* Cor sólida no hover */
}

/* Esconder setas nativas se houver */
.products-row::-webkit-scrollbar-button {
    display: none !important;
}

/* Garante que o container pai não corte a barra */
.category-section {
    overflow: visible !important;
    width: 100% !important;
    margin-bottom: 50px !important;
}

/* Highlight Tags & Cards */
.highlight-tag {
    background: linear-gradient(135deg, #FFD700, #FF8C00) !important;
    color: #000 !important;
    font-weight: 800 !important;
    top: 15px !important;
    left: 15px !important;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
    z-index: 10;
}

.highlight-card {
    border: 1px solid rgba(255, 140, 0, 0.3) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.15) !important;
}

/* PRODUCT CARD - Fixed & Clean */
.product-card {
    flex: 0 0 260px !important;
    min-width: 260px !important;
    height: 540px !important;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-premium);
    backface-visibility: hidden;
    transform: translateZ(0); /* Força aceleração de hardware leve */
    content-visibility: auto; /* Performance de sites gigantes: renderiza apenas o visível */
    contain-intrinsic-size: 260px 540px;
}


.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-img {
    width: 100%;
    height: 220px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1; /* Preenche o resto do card */
}

.product-info h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px; /* Reduzido para dar espaço ao subtítulo */
    line-height: 1.3;
    color: #111;
}

.product-description-sub {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 8px; /* Reduzido para dar espaço ao link */
    line-height: 1.4;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ver-detalhes {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: auto; /* Push down to bottom */
    margin-bottom: 15px;
    letter-spacing: 0;
    cursor: pointer;
    transition: var(--transition);
}

.product-card:hover .ver-detalhes {
    transform: translateX(5px);
    color: #003d7a;
}

@media (max-width: 768px) {
    .ver-detalhes {
        font-size: 0.9rem; /* Larger on mobile for easier tapping */
        margin-bottom: 20px;
    }
}


/* ACTIONS - SIDE BY SIDE */
.product-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
}

.btn-whatsapp-main {
    flex: 1 !important;
    background: #25d366 !important;
    color: #fff !important;
    height: 42px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* EMPTY SEARCH STATE */
.empty-search-container {
    text-align: center;
    padding: 80px 20px;
    background: #fbfbfb;
    border-radius: 20px;
    border: 2px dashed #eee;
    margin: 20px 0;
}

.empty-search-content {
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon {
    width: 60px;
    height: 60px;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-search-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.whatsapp-icon-official {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

/* EMPTY SEARCH STATE REFINEMENT */
.btn-whatsapp-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 25px; /* Afasta o botão do texto */
}

.btn-whatsapp-full:hover {
    background: #1ebea5;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.btn-add-cart-small {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.btn-add-cart-small.added {
    background: #16a34a;
    color: white;
}

.btn-add-cart-small {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--primary);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

/* Efeito hover apenas em dispositivos com mouse para não bugar no mobile */
@media (hover: hover) {
    .btn-add-cart-small:hover {
        background: var(--primary);
        color: var(--white);
    }
}

.btn-add-cart-small.added {
    background: #16a34a;
    color: white;
}

/* Interest list sidebar extras */
.cart-subtitle {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.cart-item-model {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.remove-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    border: none;
    background: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 6px;
    padding: 4px 0;
    transition: var(--transition);
}

.remove-btn:hover { opacity: 0.7; }
.remove-btn i { width: 14px; height: 14px; }

.empty-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-list i { width: 48px; height: 48px; margin-bottom: 16px; opacity: 0.4; }
.empty-list p { margin-bottom: 4px; }
.empty-hint { font-size: 0.82rem; opacity: 0.7; }

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    font-size: 0.95rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* SCROLL REVEAL SYSTEM */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    height: 100dvh; /* Altura dinmica para mobile */
    background: var(--white);
    z-index: 100001; /* Mesmo nvel que o menu */
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overscroll-behavior: contain; /* Evita que o scroll passe para o site ao chegar no fim da lista */
}

@media (max-width: 480px) {
    .cart-sidebar {
        width: 80% !important;
        right: -80%;
    }
}

.cart-sidebar.open {
    right: 0 !important;
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    overscroll-behavior: contain;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.cart-item-info p {
    font-weight: 700;
    color: var(--primary);
}

.cart-footer {
    padding: 30px;
    padding-bottom: calc(40px + env(safe-area-inset-bottom)); /* Espao extra para o menu do navegador */
    border-top: 1px solid #eee;
    background: white;
}

.btn-checkout {
    background-color: #25d366 !important;
    color: #fff !important;
    border: none !important;
    font-weight: 700 !important;
    width: 100% !important;
}

.btn-checkout:hover {
    background-color: #128c7e !important;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999; /* Fundo escuro */
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Footer */
.footer {
    padding: 45px 0 20px;
    background: #111;
    color: var(--white);
}

.footer .grid {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: center !important;
    flex-wrap: nowrap !important; /* STRICTLY PREVENT STACKING ON DESKTOP */
}

.footer-info, .footer-social, .footer-contact {
    flex: 1 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza a logo */
}

.footer h4 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center; /* Centraliza os ícones */
}

.social-icon {
    width: 50px; /* Aumentado no desktop */
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 0;
    overflow: hidden !important;
    transform: translateZ(0);
}

.social-icon:hover {
    transform: translateY(-5px);
    color: var(--white);
    border-color: transparent;
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
}

.social-icon.facebook:hover {
    background: #1877F2 !important;
}

.social-icon.whatsapp:hover {
    background: #25D366 !important;
}

.social-icon i {
    font-size: 1.4rem; /* Aumentado no desktop */
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-cart-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: #64748b;
}


.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-contact-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: #ccc;
    font-size: 0.85rem;
    width: 100%;
}

.footer-contact i {
    color: var(--primary-light);
    width: 18px;
    flex-shrink: 0;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid #222;
}

.footer.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.85rem;
}

.cnpj {
    color: #555;
    font-size: 0.8rem;
    margin: 0;
}

.credits a {
    color: #888;
    text-decoration: none;
    transition: var(--transition);
}

.credits a:hover {
    color: var(--white);
}

.credits strong {
    color: var(--white);
}

/* ============================================================
   RESPONSIVE MASTER OPTIMIZATION - PREMIUM MOBILE EXPERIENCE
   ============================================================ */

@media (max-width: 992px) {
    .nav-links { display: none !important; }
    .mobile-menu-btn { display: block !important; }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        height: 350px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    /* TRAVA DE SCROLL RIGOROSA */
    html, body { 
        overflow-x: hidden !important; 
        width: 100% !important; 
        position: relative;
    }
    
    /* NAVBAR MOBILE REFINADA */
    .mobile-nav-menu {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    .mobile-nav-menu a {
        color: #333;
        text-decoration: none;
        font-weight: 600;
    }
    .nav-wa-mobile {
        margin-top: 10px;
        padding: 10px;
        text-align: center;
    }

    .navbar {
        height: 120px !important;
    }
    
    .navbar .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 15px !important;
        height: 100% !important;
    }
    
    .logo {
        width: auto !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        margin: 0 !important;
        position: relative !important;
    }
    
    .catalog {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }

    /* DESTAQUE PREMIUM MOBILE */
    .premium-featured {
        padding: 20px 0 0;
    }

    .featured-card {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        border-radius: 20px;
        text-align: center;
    }

    .featured-badge {
        left: 50%;
        transform: translateX(-50%);
        top: -15px; /* Sobressaindo o card */
    }

    .featured-content {
        flex-direction: column-reverse; /* Imagem acima do texto no mobile */
        gap: 10px;
    }

    .featured-image {
        width: 100%;
        margin-bottom: 10px;
    }

    .featured-image img {
        max-height: 250px;
    }

    .featured-text {
        padding-top: 0;
    }

    .featured-text h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .featured-text p {
        font-size: 1rem;
        max-width: 100%;
    }

    .featured-specs li {
        justify-content: center;
    }

    .featured-price {
        padding: 12px 20px;
        width: 100%;
    }

    .featured-price .price-value {
        font-size: 1.8rem;
    }

    .filter-icon-btn {
        padding: 12px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        justify-content: center;
    }
    .desktop-only {
        display: none;
    }
    .search-wrapper {
        border-radius: 50px;
        padding: 12px 20px;
    }
    .search-input {
        font-size: 0.95rem;
    }
    .dropdown-menu {
        width: 250px;
        right: 0;
        left: auto;
    }

    .logo-img {
        height: 115px !important; /* Aumento agressivo para máxima visibilidade */
        width: auto !important;
        position: static !important;
        margin-top: 0 !important;
    }


    
    .nav-actions {
        gap: 15px !important;
    }

    .hero {
        height: auto !important;
        min-height: 80vh !important;
        padding: 150px 0 60px 0 !important;
    }

    .hero h1 {

        font-size: 2.2rem !important;
        margin-bottom: 20px !important;
    }
    
    .hero p {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }
    
    .hero-btns {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .btn {
        width: 100% !important;
    }

    /* FEATURES MOBILE - HORIZONTAL CAROUSEL (SÊNIOR STYLE) */
    .features {
        padding: 40px 0 !important;
        overflow: hidden !important;
    }
    
    .features .grid {
        display: flex !important;
        overflow-x: auto !important;
        gap: 20px !important;
        padding: 10px 20px 40px 20px !important; /* Padding inferior para a sombra não cortar */
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important; /* Firefox */
        -ms-overflow-style: none !important; /* IE/Edge */
    }
    
    .features .grid::-webkit-scrollbar {
        display: none !important; /* Chrome/Safari */
    }
    
    .feature-card {
        flex: 0 0 85% !important; /* Ocupa 85% da tela para deixar o próximo card à mostra */
        padding: 30px 25px !important;
        scroll-snap-align: center !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
    }

    .feature-card i {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 15px !important;
    }

    .feature-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }

    .feature-card p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }

    /* DOTS ESTILO PREMIUM */
    .carousel-dots {
        display: flex !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-top: -10px !important;
        padding-bottom: 20px !important;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #cbd5e1;
        transition: all 0.3s ease;
    }

    .dot.active {
        width: 24px; /* Dot esticado estilo iOS/Android moderno */
        border-radius: 4px;
        background: var(--primary);
    }



    /* CATALOG MOBILE - CLEAN LOOK */
    .section-header h2 {
        font-size: 1.8rem !important;
        margin-bottom: 5px !important;
    }
    
    .category-section {
        padding: 0 15px !important;
        margin-bottom: 50px !important;
    }

    .category-header {
        border-bottom: 1px solid #eee !important;
        padding-bottom: 10px !important;
        margin-bottom: 20px !important;
    }

    .category-header h3 {
        font-size: 1.1rem !important; /* Tamanho otimizado para 1 linha */
        line-height: 1.2 !important;
        margin-bottom: 5px !important;
        white-space: nowrap !important; /* Garante que fique em uma única linha */
        overflow: hidden !important;
        text-overflow: ellipsis; /* Fallback caso o dispositivo seja muito pequeno */
    }

    .category-header p {
        display: block !important;
        font-size: 0.82rem !important;
        color: #666 !important;
        line-height: 1.3 !important;
        margin: 0 !important;
    }



    .products-row {
        gap: 15px !important;
        padding: 10px 0 20px 0 !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    .products-row::-webkit-scrollbar {
        display: none !important;
    }

    
    .product-card {
        flex: 0-0 280px !important;
        min-width: 280px !important;
        height: 540px !important;
        /* Reduz efeitos pesados no mobile para evitar crash */
        box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    }

    /* AJUSTE DE ESPAÇAMENTO ENTRE SEÇÕES */
    .catalog {
        padding: 50px 0 20px 0 !important;
    }

    /* HELP BANNER MOBILE - MINIMALIST CARD */
    .help-banner {
        padding: 40px 20px !important; /* Aumentado para dar respiro e não cortar a borda */
        background: transparent !important;
        border: none !important;
        margin-top: 0 !important; /* Removido o negativo que causava o corte */
    }


    .categories-scroll-wrapper {
        justify-content: flex-start !important;
        gap: 15px !important;
        padding-left: 20px !important;
        padding-right: 40px !important; /* Espaço extra para o corte visual */
        mask-image: linear-gradient(to right, transparent, black 5%, black 90%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 90%, transparent 100%);
    }

    .cat-item {
        flex: 0 0 75px !important; /* Largura fixa para forçar o corte em telas comuns */
    }

    .cat-icon {
        width: 55px;
        height: 55px;
    }

    .cat-item span {
        font-size: 0.7rem;
    }

    .help-centered {
        background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%) !important;
        padding: 40px 25px !important;
        border-radius: 24px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
        border: 1px solid #e2e8f0 !important;
        gap: 25px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .help-text-box h2 {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
        color: var(--primary) !important;
    }

    .help-text-box p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        color: #475569 !important;
    }

    .help-btn-cta {
        width: 100% !important;
        padding: 15px 25px !important;
        font-size: 0.95rem !important;
        justify-content: center !important;
    }




    /* ABOUT STATS MOBILE */
    .about-stats {
        gap: 20px !important;
        justify-content: center !important;
    }
    
    .stat-item {
        flex: 1 1 40% !important;
        text-align: center !important;
    }
    
    .stat-item h4, .stat-unit {
        font-size: 2rem !important;
    }

    /* FOOTER MOBILE */
    .footer {
        padding: 35px 0 20px 0 !important;
        text-align: center !important;
    }
    
    .footer .grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 35px !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .footer-logo {
        height: auto !important;
        max-width: 140px !important;
        margin: 0 auto !important;
    }

    .footer h4 {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
        color: #888 !important; /* Mais sutil no mobile */
    }

    .social-icons {
        gap: 20px !important;
        justify-content: center !important;
    }

    .social-icon {
        width: 45px !important;
        height: 45px !important;
    }

    .social-icon i {
        font-size: 1.2rem !important;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer-contact p {
        font-size: 0.95rem !important;
        justify-content: center !important;
        gap: 10px !important;
        color: #ddd !important;
    }

    .footer-contact i, .footer-contact svg {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
        color: var(--primary) !important;
    }
    
    .footer-bottom-flex {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center !important;
    }
}

/* MENU MOBILE - SIDE DRAWER (SÊNIOR STYLE) */
@media (max-width: 992px) {
    /* Drawer: usa transition para entrada E saída */
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: 80% !important;
        height: 100vh !important; /* Fallback */
        height: 100dvh !important; /* Dynamic Viewport Height (Best for Mobile UI) */
        background: linear-gradient(180deg, #001d47 0%, #00275e 50%, #002f6c 100%) !important;
        backdrop-filter: blur(15px) !important;
        padding: 30px 30px calc(80px + env(safe-area-inset-bottom)) 30px !important; /* Extra bottom padding for safety */
        gap: 15px !important;
        z-index: 100001 !important; /* Acima de tudo no mobile */
        box-shadow: -10px 0 30px rgba(0,0,0,0.3) !important;
        overflow-y: auto !important;
        overscroll-behavior: contain !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .mobile-menu-logo {
        display: block !important;
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .menu-logo-img {
        height: 80px;
        width: auto;
        filter: brightness(0) invert(1);
    }

    .nav-links {
        /* TRANSIÇÃO BIDIRECIONAL (entrada + saída) */
        transform: translateX(100%) !important;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        visibility: hidden;
    }

    .nav-links.mobile-open {
        display: flex !important;
        transform: translateX(0) !important;
        visibility: visible;
    }

    .nav-links.mobile-open a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        padding: 12px 0 !important;
        width: 100% !important;
        font-size: 1.2rem !important;
        font-weight: 500 !important;
        color: var(--white) !important;
        text-transform: none !important;
        border: none !important;
        opacity: 0;
        transform: translateY(10px);
        animation: linkSlideIn 0.4s ease-out forwards;
    }

    .nav-links.mobile-open a i {
        display: flex !important;
        width: 22px !important;
        height: 22px !important;
        color: var(--white) !important;
        opacity: 0.7;
    }

    .nav-links.mobile-open a:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.mobile-open a:nth-child(2) { animation-delay: 0.15s; }
    .nav-links.mobile-open a:nth-child(3) { animation-delay: 0.2s; }
    .nav-links.mobile-open a:nth-child(4) { animation-delay: 0.25s; }

    @keyframes linkSlideIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }



    /* Botão de Menu Hambúrguer Premium */
    .mobile-menu-btn {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        transition: var(--transition) !important;
        z-index: 100002 !important; /* Acima do menu */
        color: var(--primary) !important;
    }


    .mobile-menu-btn i {
        width: 28px !important;
        height: 28px !important;
    }

    .mobile-menu-btn.open {
        background: rgba(255, 255, 255, 0.2) !important;
        color: var(--white) !important;
        border-color: rgba(255, 255, 255, 0.4) !important;
    }

    .mobile-menu-btn.open i {
        color: var(--white) !important;
    }

    .mobile-menu-btn:active {
        transform: scale(0.9) !important;
    }
}

/* WHATSAPP FLOAT - ESTABILIDADE MÁXIMA */



.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 10px solid #333;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

/* Tooltip Pulse Animation */
@keyframes tooltip-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

.whatsapp-float .whatsapp-tooltip {
    animation: tooltip-bounce 2s infinite;
}

/* PRODUCT MODAL - Card Fixo Sem Scroll */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 30, 80, 0.75);
    backdrop-filter: blur(6px);
}

.modal-content {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    overflow: hidden; /* SEM SCROLL */
    z-index: 1;
    transform: scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 30, 80, 0.3);
}

.product-modal.open .modal-content {
    transform: scale(1);
}

/* MODAL PROMOÇÃO */
.modal-content.promo-modal {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
    color: white !important;
}

.modal-content.promo-modal h2, 
.modal-content.promo-modal h3, 
.modal-content.promo-modal p,
.modal-content.promo-modal span {
    color: white !important;
}

.modal-content.promo-modal .modal-model-label {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0 !important;
}

.modal-content.promo-modal .benefit-item {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.modal-content.promo-modal .modal-img-container {
    background: transparent !important;
}

.modal-content.promo-modal .benefit-icon {
    color: #25d366 !important;
}

.modal-content.promo-modal .modal-close {
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
}

.modal-content.promo-modal .modal-description-box {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

/* MODAL MOBILE - Card centralizado, sem bottom sheet */
@media (max-width: 768px) {
    .product-modal {
        align-items: center !important;
        padding: 20px !important;
    }

    .modal-content {
        width: 92% !important;
        max-width: 92% !important;
        max-height: none !important;
        height: auto !important;
        margin: 0 !important;
        border-radius: 20px !important;
        overflow: hidden !important;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: 0.2s;
}

.modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.modal-body {
    display: flex;
    flex-direction: column; /* Uma única coluna fica mais limpa em popups menores */
}

.modal-img-container {
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-img-container img {
    max-width: 100%;
    max-height: 160px; /* Compacto para caber no card fixo */
    object-fit: contain;
}

.modal-info {
    padding: 18px 20px;
}

.modal-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.modal-info h2 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.modal-model-label {
    display: block;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.modal-description-box {
    background: #f8fafc;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #f1f5f9;
}

.modal-description-box h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.modal-description-box p {
    color: #334155;
    line-height: 1.5;
    font-size: 0.95rem;
}

.modal-benefits {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #64748b;
}

.benefit-icon {
    color: #10b981;
    width: 16px;
    height: 16px;
}

.btn-full {
    width: 100% !important;
    padding: 14px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25d366 !important; /* Verde WhatsApp */
    color: #fff !important;
    border: none !important;
    transition: background 0.3s ease !important;
}

.btn-full:hover {
    background-color: #128c7e !important; /* Verde mais escuro no hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.wa-icon-inline {
    width: 20px !important;
    height: 20px !important;
}
