/**
 * Marketplace Professional Styles
 * Design moderno e profissional com Phosphor Icons e Glassmorphism
 */

/* ============================================
   HEADER FIXED - SPACER PARA CONTEÚDO
   ============================================ 
   Como o header é position:fixed, ele sai do fluxo do documento.
   Precisamos garantir que o conteúdo não fique por baixo do header.
   A variável --ss-header-height está definida em base.css
*/

/* Spacer para o primeiro elemento após o header */
.ss-header--glassmorphism + * {
    margin-top: var(--ss-header-height, 68px) !important;
}

/* Se o próximo elemento já tiver padding-top grande (como hero), ajustar */
.ss-header--glassmorphism + .ss-hero-welcome--modern {
    padding-top: calc(8rem + var(--ss-header-height, 68px)) !important;
    margin-top: 0 !important;
}

/* Container (ss-container) vindo após o header */
.ss-header--glassmorphism + .ss-container {
    padding-top: var(--ss-header-height, 68px) !important;
    margin-top: 0 !important;
}

/* Mobile Menu - não precisa de margin-top pois é overlay */
.ss-header--glassmorphism + .ss-mobile-menu {
    margin-top: 0 !important;
}

/* ============================================
   HEADER GLASSMORPHISM & FIXED
   ============================================ */
.ss-header--glassmorphism {
    position: fixed !important; /* Fixo no topo, independente do container */
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(25, 35, 55, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 209, 255, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Permitir que elementos filhos com position:fixed escapem do container */
    overflow: visible !important;
}

.ss-header--glassmorphism.scrolled {
    background: rgba(20, 30, 50, 0.85);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.ss-header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Logo Area */
.ss-header__brand {
    display: flex;
    align-items: center;
}

.ss-header__brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    color: inherit;
}

.ss-header__logo {
    height: 5.5rem;
    width: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    border: none;
    object-fit: contain;
}

.ss-header__text {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.35rem;
}

.brand-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-title--io {
    color: #0085ff;
}

.brand-title--CONTINGÊNCIA {
    color: #141171;
}

.ss-header__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: inherit;
}

/* Subtítulo removido - não mais utilizado */
.ss-header__subtitle {
    display: none !important; /* Ocultar subtítulo ATIVO ADS */
}

/* Navigation */
.ss-header__nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.ss-header__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.ss-header__link i {
    font-size: 1.25rem;
    color: #00d1ff;
}

.ss-header__link:hover {
    color: #fff;
    background: rgba(0, 209, 255, 0.1);
}

.ss-header__link--active {
    color: #fff;
    background: rgba(0, 209, 255, 0.15);
}

.ss-header__link--active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d1ff, transparent);
}

/* Header Actions */
.ss-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ss-header__action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 0.8rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
}

.ss-header__action-btn i {
    font-size: 1.2rem;
}

.ss-header__action-btn:hover {
    background: rgba(255, 200, 87, 0.15);
    border-color: rgba(255, 200, 87, 0.4);
    color: #FFC857;
    transform: translateY(-1px);
}

.ss-header__cart-btn {
    padding: 0.6rem;
}

.ss-header__login-btn {
    background: linear-gradient(135deg, rgba(255, 200, 87, 0.2), rgba(255, 200, 87, 0.1));
    border-color: rgba(255, 200, 87, 0.3);
    color: #FFC857;
}

.ss-header__login-btn:hover {
    background: linear-gradient(135deg, rgba(255, 200, 87, 0.3), rgba(255, 200, 87, 0.2));
    border-color: #FFC857;
}

.ss-header__login-text {
    display: none;
}

@media (min-width: 768px) {
    .ss-header__login-text {
        display: inline;
    }
}

.ss-header__cart,
.ss-header__account {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.ss-header__cart i,
.ss-header__account i {
    font-size: 1.3rem;
}

.ss-header__cart:hover,
.ss-header__account:hover {
    background: rgba(255, 200, 87, 0.15);
    border-color: rgba(255, 200, 87, 0.4);
    color: #FFC857;
    transform: translateY(-1px);
}

.ss-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff0080, #ff4d4d);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 8px rgba(255, 0, 128, 0.4);
    z-index: 9999;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none;
    transition: transform 0.2s ease;
    /* Prevenir que animações/scroll afetem a visibilidade */
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: contents;
}

/* Esconder contador APENAS quando explicitamente vazio */
.ss-cart-count--empty,
.ss-cart-count[data-count="0"] {
    display: none !important;
    visibility: hidden !important;
}

/* Garantir que badges com valor sempre apareçam */
.ss-cart-count:not(.ss-cart-count--empty):not([data-count="0"]) {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ============================================
   HERO SECTION - MODERN
   ============================================ */
.ss-hero-welcome--modern {
    text-align: center;
    /* Padding-top compensando header fixo (68px) + espaço visual (4rem) */
    padding: calc(var(--ss-header-height, 68px) + 4rem) 2rem 4rem !important;
    margin-top: 0;
    background: linear-gradient(180deg, rgba(0, 209, 255, 0.05) 0%, transparent 100%);
    margin-bottom: 3rem;
    /* Garantir visibilidade total do conteúdo */
    position: relative;
    z-index: 1;
}

.ss-hero-welcome__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.ss-hero-welcome__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 900px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.ss-text-highlight {
    color: #00d1ff;
    font-weight: 600;
    position: relative;
}

.ss-hero-welcome__cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.ss-btn--hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    background: linear-gradient(135deg, #00d1ff 0%, #0066ff 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 209, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.ss-btn--hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 209, 255, 0.5);
}

.ss-btn--hero i {
    font-size: 1.5rem;
}

.ss-hero-welcome__hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.ss-arrow-bounce {
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.ss-hero-divider {
    margin: 3rem auto 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00d1ff, transparent);
    border-radius: 2px;
}

/* ============================================
   PHOSPHOR ICONS STYLES
   ============================================ */
.ss-icon,
.ph {
    color: #00d1ff;
    font-size: 1.25rem;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ss-card-destaque__info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.ss-card-destaque__info-item .ss-icon {
    flex-shrink: 0;
    font-size: 1.05rem;
}

.ss-card-destaque__info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ss-card-destaque__info-item .label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.ss-card-destaque__info-item .value {
    margin-left: auto;
    color: #8ef5b9;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Account Tabs - compact horizontal nav */
.ss-tabs--account {
    margin: 0 0 1.5rem;
}

.ss-tabs__nav--account {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}

.ss-tabs__nav--account .ss-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1rem;
    background: rgba(0, 209, 255, 0.08);
    border: 1px solid rgba(0, 209, 255, 0.25);
    color: #dbeeff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ss-tabs__nav--account .ss-tab i {
    font-size: 1.05rem;
    color: #00d1ff;
}

.ss-tabs__nav--account .ss-tab.ss-tab--active {
    background: rgba(0, 209, 255, 0.18);
    border-color: rgba(0, 209, 255, 0.45);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 209, 255, 0.25);
}

/* Skeleton Screens for Loading States */
.ss-skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

.ss-skeleton-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    height: 400px;
}

.ss-skeleton-title {
    height: 24px;
    width: 70%;
    margin-bottom: 1rem;
}

.ss-skeleton-text {
    height: 16px;
    width: 100%;
    margin-bottom: 0.75rem;
}

.ss-skeleton-text--short {
    width: 50%;
}

.ss-skeleton-image {
    height: 200px;
    width: 100%;
    margin-bottom: 1rem;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Loading State for Filters */
.ss-ativos-grid--loading {
    pointer-events: none;
    opacity: 0.6;
}

.ss-ativos-grid--loading .ss-card-destaque {
    display: none;
}

/* Show skeletons when loading */
.ss-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* ============================================
   STEP CARDS - PROFESSIONAL ICONS
   ============================================ */
.ss-step-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 209, 255, 0.2), rgba(0, 102, 255, 0.2));
    border: 2px solid rgba(0, 209, 255, 0.4);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.ss-step-card__icon i {
    font-size: 2rem;
    color: #00d1ff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ss-header__container {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .ss-header__brand-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex: 1;
        min-width: 0;
    }
    
    .ss-header__nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 15, 30, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        z-index: 9999;
    }
    
    .ss-header__nav.active {
        display: flex;
    }
    
    .ss-header__link {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }
    
    .ss-header__logo {
        height: 3rem;
        width: auto;
    }
    
    .ss-header__text {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .ss-header__title {
        font-size: 0.9rem;
        line-height: 1;
        margin: 0;
    }
    
    .ss-header__subtitle {
        font-size: 0.75rem;
    }
    
    .ss-header__actions {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        flex-shrink: 0;
    }
    
    .ss-header__cart,
    .ss-header__account {
        width: 40px;
        height: 40px;
    }
    
    .ss-header__cart i,
    .ss-header__account i {
        font-size: 1.25rem;
    }
    
    .ss-hero-welcome--modern {
        padding: 4rem 1rem 3rem;
    }
    
    .ss-btn--hero {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .ss-step-card {
        text-align: center;
    }
    
    .ss-step-card__icon {
        margin: 0 auto 1rem;
    }
    
    .ss-whatsapp-cta {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* ============================================
   MOBILE FILTERS ALIGNMENT
   ============================================ */
.ss-mobile-filters-trigger {
    /* Display controlado por mobile-critical-fixes.css */
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 209, 255, 0.1);
    border: 1px solid rgba(0, 209, 255, 0.3);
    border-radius: 8px;
    color: #00d1ff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ss-mobile-filters-trigger i {
    font-size: 1.5rem;
}

.ss-mobile-filters-trigger:hover {
    background: rgba(0, 209, 255, 0.2);
    border-color: #00d1ff;
}

@media (max-width: 768px) {
    /* Estilos já definidos em mobile-critical-fixes.css */
    /* Mantido apenas para compatibilidade */
}

/* ============================================
   FOOTER ADJUSTMENTS
   ============================================ */
.ss-footer {
    margin-top: 4rem;
}

.ss-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 209, 255, 0.1);
    border: 1px solid rgba(0, 209, 255, 0.3);
    color: #00d1ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ss-footer__social-link:hover {
    background: rgba(0, 209, 255, 0.2);
    border-color: #00d1ff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 209, 255, 0.4);
}

.ss-footer__social-link i {
    font-size: 1.5rem;
}

/* Badges with Icons */
.ss-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.ss-badge i {
    font-size: 1rem;
}

/* Account Cards Icons */
.ss-account-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 6px;
}

.ss-account-card__badge i {

    .ss-account-card__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .ss-account-card__icon i {
        font-size: 1.5rem;
        color: #00d1ff;
    }

    .ss-action-card__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(0, 209, 255, 0.1);
    }

    .ss-action-card__icon i {
        font-size: 1.5rem;
        color: #00d1ff;
    }

    .ss-tab {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .ss-tab i {
        font-size: 1.25rem;
    }
    font-size: 1rem;
}

/* WhatsApp CTA Button */
.ss-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.ss-whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.ss-whatsapp-cta i {
    font-size: 1.5rem;
}

/* Smooth transitions for all interactive elements */
* {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #00d1ff;
    outline-offset: 2px;
}

/* ============================================
   MOBILE HEADER - HAMBURGER MENU
   ============================================ */

/* Botão Hamburger - Escondido em desktop */
.ss-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 5px;
}

.ss-header__hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.ss-header__hamburger:hover {
    background: rgba(0, 209, 255, 0.15);
    border-color: rgba(0, 209, 255, 0.3);
}

.ss-header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ss-header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.ss-header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* Botão fechar menu mobile */
.ss-mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.ss-mobile-menu-close:hover {
    background: rgba(255, 100, 100, 0.2);
    border-color: rgba(255, 100, 100, 0.4);
}

/* Cart sidebar sempre acima de overlays externos */
.cart-sidebar,
#cart-sidebar,
.ss-cart-sidebar {
    z-index: 999 !important;
}

.cart-overlay,
#cart-overlay,
.ss-cart-overlay {
    z-index: 998 !important;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
    /* Mostrar hamburger, esconder nav desktop */
    .ss-header__hamburger {
        display: flex;
        order: 3;
    }
    
    .ss-header__nav {
        display: none !important;
    }
    

    
    /* Header container ajustado */
    .ss-header__container {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    /* Logo maior */
    .ss-header__logo {
        height: 3.2rem;
        width: auto;
    }
    
    .ss-header__title {
        font-size: 0.9rem;
        line-height: 1;
    }
    
    /* Actions mais compactos */
    .ss-header__actions {
        gap: 0.5rem;
        order: 2;
        flex-shrink: 0;
    }
    
    .ss-header__action-btn {
        padding: 0.5rem;
    }
    
    .ss-header__action-btn i {
        font-size: 1.1rem;
    }
    
    /* Esconder texto do login */
    .ss-header__login-text {
        display: none !important;
    }
    
    /* Brand fica à esquerda */
    .ss-header__brand {
        order: 1;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .ss-header__container {
        padding: 0.5rem 0.75rem;
    }
    
    .ss-header__logo {
        height: 3rem;
    }
    
    .ss-header__title {
        font-size: 0.85rem;
    }
    
    .ss-header__hamburger {
        width: 36px;
        height: 36px;
    }
    
    .ss-header__action-btn {
        padding: 0.4rem;
        min-width: 36px;
        min-height: 36px;
    }
    
    .ss-cart-count {
        font-size: 0.6rem;
        min-width: 16px;
        height: 16px;
        top: -4px;
        right: -4px;
    }
}
/* ============================================
   MOBILE HEADER - CRITICAL VISIBILITY FIXES
   Garantir que o header SEMPRE apareça no mobile
   ============================================ */
@media (max-width: 768px) {
    /* Header SEMPRE visível */
    .ss-header--glassmorphism,
    .sharksales-site-header,
    header.ss-header {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 1000 !important;
        background: rgba(15, 23, 42, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        min-height: 60px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0.5rem 1rem !important;
    }
    
    .ss-header__container {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 !important;
        gap: 0.5rem !important;
    }
    
    /* Logo área - mais compacta */
    .ss-header__brand-link {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        gap: 0.5rem !important;
        flex-shrink: 0 !important;
    }
    
    .ss-header__logo {
        height: 2.5rem !important;
        width: auto !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Esconder texto da marca no mobile muito pequeno */
    .ss-header__text,
    .brand-text {
        display: none !important;
    }
    
    /* Actions - visíveis */
    .ss-header__actions {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    /* Nav desktop - escondida no mobile */
    .ss-header__nav {
        display: none !important;
    }
    
    /* Hamburger - visível no mobile */
    .ss-header__hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
  
    

    
    /* PREVENIR MENUS DUPLICADOS - esconder nav desktop em mobile */
    .sharksales-site-header .sharksales-nav,
    header .sharksales-nav {
        display: none !important;
    }
}