/* === Layout Base e Sticky Footer === */
html, body {
    height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.main-content {
    flex: 1 0 auto;
}
.site-footer {
    margin-top: auto;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    html, body { height: 100%; }
    body { min-height: 100vh; display: flex; flex-direction: column; }
    .main-content { flex: 1 0 auto; }
    .site-footer { margin-top: auto; margin-bottom: 0 !important; }
}

/* === FITURBAN STYLE INTERFACE === */
:root {
    --primary-color: #000;
    --secondary-color: #666;
    --accent-color: #ff6b6b;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --text-dark: #333;
    --text-light: #888;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --white: #fff;
    --hover-gray: #f5f5f5;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 14px;
}

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

/* === HERO BANNER === */
.hero-banner {
    background-color: var(--light-gray);
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

.promo-banner i {
    color: var(--accent-color);
}

/* === HERO SLIDER (3 ITENS) === */
.hero-slider {
    position: relative;
    height: 60vh;
    min-height: 420px;
    max-height: 680px;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .6s ease, transform 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    z-index: 1;
}

.hero-bottom-fade::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.45) 100%);
    pointer-events: none;
}

.hero-kicker {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .6px;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 44px;
    line-height: 1.05;
    font-weight: 800;
    max-width: 760px;
    margin-bottom: 18px;
    text-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: #000;
    border-radius: 999px;
    padding: 12px 22px;
    text-decoration: none;
    font-weight: 700;
}

.hero-cta:hover { background: #f2f2f2; }

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.6);
    background: rgba(0,0,0,.35);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
    backdrop-filter: blur(4px);
}
.hero-nav.prev { left: 18px; }
.hero-nav.next { right: 18px; }
.hero-nav:hover { background: rgba(0,0,0,.55); }

.hero-dots {
    position: absolute;
    left: 0; right: 0; bottom: 18px;
    display: flex; gap: 8px; justify-content: center;
    z-index: 2;
}
.hero-dots button {
    width: 8px; height: 8px; border-radius: 50%;
    border: none; background: rgba(255,255,255,.5);
}
.hero-dots button.active { background: #fff; }

/* === NAVEGAÇÃO HORIZONTAL DE CATEGORIAS === */
.category-horizontal {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.category-scroll {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    padding: 0 10px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    min-width: 60px;
}

.category-item:hover,
.category-item.active {
    color: var(--primary-color);
}

.category-circle {
    width: 50px;
    height: 50px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: var(--white);
}

.category-item:hover .category-circle,
.category-item.active .category-circle {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.category-item span {
    font-size: 12px;
    font-weight: 500;
    text-transform: lowercase;
}

/* === SEÇÕES DE PRODUTOS === */
.products-section {
    margin-bottom: 60px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* === CARROSSEL DE PRODUTOS === */
.products-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

/* === CARD DE PRODUTO === */
.product-card {
    min-width: 280px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-sizes {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
}

.product-sizes span {
    background: rgba(255,255,255,0.9);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.product-info {
    padding: 15px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-code {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.product-price {
    margin-bottom: 15px;
}

.price-main {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.price-installment {
    display: block;
    font-size: 11px;
    color: var(--text-light);
}

.product-actions {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.btn-quick-view,
.btn-add-cart {
    flex: 1;
    padding: 8px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-quick-view:hover,
.btn-add-cart:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* === SEÇÃO MOTIVAÇÃO === */
.motivation-section {
    margin: 80px 0;
}

.motivation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.motivation-card {
    display: flex;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.motivation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.motivation-image {
    flex: 0 0 150px;
}

.motivation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.motivation-content {
    padding: 25px;
    flex: 1;
}

.motivation-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.motivation-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* === AVISO DE COMPRA === */
.purchase-notice {
    margin: 60px 0;
    padding: 0 15px;
}

.notice-card {
    background: linear-gradient(135deg, var(--accent-color), #ff8a80);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.notice-content i {
    font-size: 40px;
    margin-bottom: 15px;
}

.notice-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.notice-content p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--accent-color);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
    color: var(--accent-color);
}

/* === RESPONSIVO MOBILE (ESTILO FITURBAN) === */
@media (max-width: 768px) {
    .hero-slider {
        height: 38vh;
        min-height: 240px;
        max-height: 380px;
    }
    .hero-title { font-size: 22px; max-width: 85%; }
    .hero-kicker { font-size: 11px; padding: 4px 8px; }
    .hero-cta { padding: 9px 16px; font-size: 13px; }
    /* RESET MOBILE FIRST */
    body {
        padding-bottom: 0 !important; /* removido espaço extra */
        padding-top: 0 !important;
        overflow-x: hidden;
    }
    
    /* Ocultar navegação desktop */
    .navbar {
        display: none !important;
    }
    
    /* Mostrar header e navegação mobile */
    .mobile-header {
        display: flex !important;
    }
    
    .mobile-nav {
        display: flex !important;
    }
    
    /* Container mobile */
    .container {
        padding: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    /* Hero banner mobile */
    .hero-banner {
        padding: 8px 0 !important;
        font-size: 11px !important;
    }
    
    .promo-banner {
        font-size: 11px !important;
        gap: 5px !important;
        padding: 0 15px !important;
    }
    
    /* Categorias horizontais mobile */
    .category-horizontal {
        padding: 15px 0 !important;
        margin-bottom: 25px !important;
    }
    
    .category-scroll {
        gap: 15px !important;
        padding: 0 15px !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
    }
    
    .category-circle {
        width: 40px !important;
        height: 40px !important;
        font-size: 14px !important;
    }
    
    .category-item span {
        font-size: 9px !important;
    }
    
    /* Seções de produtos mobile */
    .products-section {
        margin-bottom: 30px !important;
    }
    
    .section-title {
        font-size: 16px !important;
        margin-bottom: 15px !important;
        padding: 0 15px !important;
    }
    
    .section-header {
        margin-bottom: 15px !important;
        padding: 0 15px !important;
    }
    
    /* Carrossel mobile */
    .products-carousel {
        padding-left: 15px !important;
        gap: 12px !important;
        overflow-x: auto !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
    }
    
    /* Cards de produto mobile */
    .product-card {
        min-width: 180px !important;
        max-width: 180px !important;
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
        margin-right: 0 !important;
    }
    
    .product-image {
        aspect-ratio: 1 !important;
    }
    
    .product-info {
        padding: 10px !important;
    }
    
    .product-name {
        font-size: 11px !important;
        margin-bottom: 3px !important;
        line-height: 1.2 !important;
    }
    
    .product-code {
        font-size: 8px !important;
        margin-bottom: 6px !important;
    }
    
    .price-main {
        font-size: 13px !important;
        margin-bottom: 2px !important;
    }
    
    .price-installment {
        font-size: 8px !important;
        line-height: 1.1 !important;
    }
    
    .product-actions {
        gap: 4px !important;
        margin-top: 8px !important;
    }
    
    .btn-quick-view,
    .btn-add-cart {
        padding: 6px 4px !important;
        font-size: 8px !important;
        border-radius: 3px !important;
    }
    
    .btn-quick-view i,
    .btn-add-cart i {
        font-size: 10px !important;
    }
    
    /* Controles de carrossel ocultos no mobile */
    .carousel-controls {
        display: none !important;
    }
    
    /* Seção motivação mobile */
    .motivation-section {
        margin: 30px 0 !important;
        padding: 0 15px !important;
    }
    
    .motivation-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 20px !important;
    }
    
    .motivation-card {
        flex-direction: column !important;
        border-radius: 8px !important;
    }
    
    .motivation-image {
        flex: 0 0 150px !important;
        width: 100% !important;
    }
    
    .motivation-content {
        padding: 15px !important;
    }
    
    .motivation-content h3 {
        font-size: 14px !important;
        margin-bottom: 6px !important;
    }
    
    .motivation-content p {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }
    
    /* Aviso de compra mobile */
    .purchase-notice {
        margin: 30px 0 !important;
        padding: 0 15px !important;
    }
    
    .notice-card {
        padding: 20px 15px !important;
        border-radius: 8px !important;
    }
    
    .notice-content h3 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }
    
    .notice-content p {
        font-size: 13px !important;
        margin-bottom: 15px !important;
    }
    
    .notice-content i {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }
    
    .btn-contact {
        padding: 8px 16px !important;
        font-size: 12px !important;
        border-radius: 20px !important;
    }
    
    /* Footer/Social mobile */
    .social-footer {
        padding: 20px 15px !important;
        text-align: center !important;
        background: var(--light-gray) !important;
        margin-top: 30px !important;
    }
    
    .social-footer h4 {
        font-size: 14px !important;
        font-weight: 600 !important;
        margin-bottom: 12px !important;
        color: var(--primary-color) !important;
    }
    
    .social-links {
        display: flex !important;
        justify-content: center !important;
        gap: 15px !important;
    }
    
    .social-link {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        color: var(--text-dark) !important;
        text-decoration: none !important;
        font-size: 12px !important;
        font-weight: 500 !important;
    }
    
    .social-link i {
        font-size: 16px !important;
    }
    
    /* WhatsApp floating button */
    .whatsapp-float {
        position: fixed !important;
        bottom: 70px !important;
        right: 15px !important;
        background: #25D366 !important;
        color: white !important;
        border-radius: 50% !important;
        width: 45px !important;
        height: 45px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 20px !important;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
        z-index: 999 !important;
        text-decoration: none !important;
        animation: pulse 2s infinite !important;
    }
}

/* MOBILE HEADER (sempre visível no mobile) */
.mobile-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 15px;
    display: none;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mobile-header .logo {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-header-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 16px;
    padding: 4px;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.mobile-header-btn .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    width: 14px;
    height: 14px;
    font-size: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* NAVEGAÇÃO MOBILE (sempre visível no mobile) */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    display: none;
    justify-content: space-around;
    padding: 6px 0 4px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    height: 55px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 8px;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 2px 6px;
    min-width: 40px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--primary-color);
}

.mobile-nav-item i {
    font-size: 18px;
    margin-bottom: 1px;
    line-height: 1;
}

.mobile-nav-item span {
    line-height: 1;
    margin-top: 1px;
}

/* Badge do carrinho mobile */
.mobile-badge {
    position: absolute;
    top: -2px;
    right: 6px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    width: 14px;
    height: 14px;
    font-size: 7px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

/* === NAVEGAÇÃO PRINCIPAL === */
.navbar {
    background: var(--white) !important;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* OCULTAR DESKTOP NO MOBILE */
@media (max-width: 768px) {
    .navbar {
        display: none !important;
    }
    
    .d-none.d-lg-block {
        display: none !important;
    }
    
    .d-lg-none {
        display: block !important;
    }
}

/* MOSTRAR DESKTOP APENAS EM TELAS GRANDES */
@media (min-width: 769px) {
    .mobile-header {
        display: none !important;
    }
    
    .mobile-nav {
        display: none !important;
    }
    
    .whatsapp-float {
        display: none !important;
    }
    
    .social-footer {
        display: none !important;
    }
    
    .d-lg-none {
        display: none !important;
    }
}

/* === NAVEGAÇÃO MOBILE (ESTILO FITURBAN) === */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    display: none;
    justify-content: space-around;
    padding: 8px 0 5px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    height: 60px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 9px;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 2px 8px;
    min-width: 45px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--primary-color);
}

.mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 2px;
    line-height: 1;
}

.mobile-nav-item span {
    line-height: 1;
    margin-top: 1px;
}

/* Badge do carrinho mobile */
.mobile-badge {
    position: absolute;
    top: -2px;
    right: 8px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

/* Navegação desktop oculta no mobile */
.navbar {
    background: var(--white) !important;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: color 0.3s ease;
    font-size: 14px;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Header mobile minimalista (estilo Fiturban) */
.mobile-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 15px;
    display: none;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mobile-header .logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-header-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 18px;
    padding: 5px;
    position: relative;
    cursor: pointer;
}

/* --- Sidebar móvel: fechada por padrão em todas as larguras --- */
.mobile-sidebar {
	position: fixed;
	top: 0;
	bottom: auto; /* garante que não fique acoplado ao rodapé */
	left: auto;
	right: 0; /* ancorada à direita */
	width: 280px;
	height: 100vh;
	background: var(--white);
	box-shadow: -2px 0 10px rgba(0,0,0,0.1); /* sombra invertida */
	z-index: 9999;
	overflow-y: auto;
	display: none; /* fechado por padrão */
	transform: translateX(100%); /* fora da tela à direita */
	transition: transform 0.3s ease;
	will-change: transform;
}
.mobile-sidebar.open {
	display: block;
	transform: translateX(0); /* entra pela lateral */
}
.mobile-sidebar-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	display: none; /* invisível por padrão */
}
.mobile-sidebar-overlay.show {
	opacity: 1;
	visibility: visible;
	display: block; /* só exibe quando show */
}

/* RESPONSIVO MOBILE (ESTILO FITURBAN) */
@media (max-width: 768px) {
    /* Ocultar navegação desktop */
    .navbar {
        display: none !important;
    }
    
    /* Mostrar header e navegação mobile */
    .mobile-header {
        display: flex;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    /* Ajustar espaçamento do corpo */
    body {
        padding-bottom: 0;
        padding-top: 0;
    }
    
    /* Hero banner mais compacto */
    .hero-banner {
        padding: 8px 0;
    }
    
    .promo-banner {
        font-size: 11px;
        gap: 5px;
    }
    
    /* Categorias horizontais mais compactas */
    .category-horizontal {
        padding: 15px 0;
        margin-bottom: 25px;
    }
    
    .category-scroll {
        gap: 20px;
        padding: 0 15px;
        justify-content: flex-start;
    }
    
    .category-circle {
        width: 45px;
        height: 45px;
    }
    
    .category-item span {
        font-size: 10px;
    }
    
    /* Seções de produtos mobile */
    .products-section {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .section-header {
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    /* Cards de produto mobile */
    .product-card {
        min-width: 200px;
        margin-right: 15px;
    }
    
    .products-carousel {
        padding-left: 15px;
        gap: 15px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-name {
        font-size: 12px;
        margin-bottom: 3px;
    }
    
    .product-code {
        font-size: 9px;
        margin-bottom: 8px;
    }
    
    .price-main {
        font-size: 14px;
    }
    
    .price-installment {
        font-size: 9px;
    }
    
    .product-actions {
        gap: 6px;
    }
    
    .btn-quick-view,
    .btn-add-cart {
        padding: 6px;
        font-size: 10px;
    }
    
    /* Controles de carrossel mobile */
    .carousel-controls {
        display: none; /* Ocultar no mobile, usar touch scroll */
    }
    
    /* Seção motivação mobile */
    .motivation-section {
        margin: 40px 0;
        padding: 0 15px;
    }
    
    .motivation-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }
    
    .motivation-card {
        flex-direction: column;
        border-radius: 8px;
    }
    
    .motivation-image {
        flex: 0 0 180px;
    }
    
    .motivation-content {
        padding: 20px 15px;
    }
    
    .motivation-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .motivation-content p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    /* Aviso de compra mobile */
    .purchase-notice {
        margin: 40px 0;
        padding: 0 15px;
    }
    
    .notice-card {
        padding: 25px 20px;
        border-radius: 10px;
    }
    
    .notice-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .notice-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .notice-content i {
        font-size: 30px;
        margin-bottom: 12px;
    }
    
    .btn-contact {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Footer/Social mobile */
    .social-footer {
        padding: 20px 15px;
        text-align: center;
        background: var(--light-gray);
        margin-top: 40px;
    }
    
    .social-footer h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--primary-color);
    }
    
    .social-links {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .social-link {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
    }
    
    .social-link i {
        font-size: 18px;
    }
    
    /* WhatsApp floating button (estilo Fiturban) */
    .whatsapp-float {
        position: fixed;
        bottom: 70px;
        right: 15px;
        background: #25D366;
        color: white;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
        z-index: 999;
        text-decoration: none;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
        100% {
            transform: scale(1);
        }
    }
    
    /* Menu sanduíche mobile */
    .mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 20px;
        color: var(--text-dark);
        cursor: pointer;
    }
    
    .mobile-sidebar {
        position: fixed;
        top: 0;
        bottom: auto; /* garante que não fique acoplado ao rodapé */
        left: auto;
        right: 0; /* ancorada à direita */
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -2px 0 10px rgba(0,0,0,0.1); /* sombra invertida */
        z-index: 9999;
        overflow-y: auto;
        display: none; /* fechado por padrão */
        transform: translateX(100%); /* fora da tela à direita */
        transition: transform 0.3s ease;
        will-change: transform;
    }
    .mobile-sidebar.open {
        display: block;
        transform: translateX(0); /* entra pela lateral */
    }
    .mobile-sidebar-overlay {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        opacity: 0; visibility: hidden; display: none;
        transition: all 0.3s ease;
    }
    .mobile-sidebar-overlay.show {
        opacity: 1; visibility: visible; display: block; /* só exibe quando show */
    }
}

/* === FOOTER === */
.site-footer {
    background: #0d0d0f;
    color: rgba(255,255,255,0.85);
    padding: 40px 0 20px;
    margin-top: 40px;
}
.site-footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.footer-subtitle { font-size: 14px; font-weight: 600; margin-bottom: 8px; color: rgba(255,255,255,0.7); }
.footer-text { font-size: 13px; margin: 0; color: rgba(255,255,255,0.75); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 18px; padding-top: 12px; font-size: 12px; color: rgba(255,255,255,0.6); }

@media (max-width: 768px) {
    .site-footer { padding: 28px 0 18px; }
}

/* === MODAL === */
.modal-content {
    background: var(--white);
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 25px 15px;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 15px 25px 20px;
}

/* === OVERLAY DE BLOQUEIO === */
.site-purchase-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase-modal {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.purchase-modal h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.purchase-modal p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-purchase {
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-purchase:hover {
    background: #ff5252;
    color: var(--white);
    transform: translateY(-2px);
}

/* === ALERTAS === */
.alert {
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
}

/* === LOADING STATES === */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--border-color);
    border-top: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === SCROLL SUAVE === */
html {
    scroll-behavior: smooth;
}

/* === PERFORMANCE === */
img {
    will-change: transform;
}

.product-card {
    will-change: transform;
}

/* === PRINT STYLES === */
@media print {
    .mobile-nav,
    .purchase-notice,
    .carousel-controls {
        display: none !important;
    }
}

/* === DESKTOP TOPBAR (ESTILO FITURBAN) === */
.desktop-topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(0, 0, 0, 0.75);
    color: var(--white);
}

.topbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar-logo {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.topbar-link {
    color: #ddd;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

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

.sale-pill {
    padding: 4px 10px;
    border: 1px solid #fff;
    border-radius: 999px;
    color: #fff !important;
}

.fitbasic { letter-spacing: 1px; }

.icon-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.divider { color: rgba(255,255,255,0.6); }

.search-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 6px 12px;
    border-radius: 999px;
}

.search-pill input {
    border: none;
    outline: none;
    min-width: 260px;
    font-size: 14px;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 999px;
    height: 18px;
    min-width: 18px;
    padding: 0 5px;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
}

.topbar-underline { height: 1px; background: rgba(255,255,255,0.3); }

/* === MOBILE SIDEBAR MENU === */
.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 16px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
}

.mobile-sidebar-nav { padding: 10px 12px 20px; }

.sidebar-link {
    display: block;
    padding: 12px 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
}

.sidebar-link:hover { background: var(--hover-gray); }

.mobile-sidebar-overlay { display: none; }
.mobile-sidebar-overlay.show { display: block; }

body.no-scroll { overflow: hidden; }

/* Neutralização global: barra mobile removida do projeto */
.mobile-nav,
.mobile-nav-items,
.mobile-nav-item {
    display: none !important;
    visibility: hidden !important;
}

/* === LOGIN PAGE STYLES === */
.login-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 200px;
    display: flex;
    align-items: center;
}

.login-hero .promo-banner {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.login-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.login-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border: 1px solid #e9ecef;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #718096;
    font-size: 1.1rem;
}

.login-form .form-group {
    margin-bottom: 25px;
}

.login-form .form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-form .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-form .form-control:focus {
    border-color: #e83e8c;
    box-shadow: 0 0 0 3px rgba(232, 62, 140, 0.1);
}

.btn-login {
    background: linear-gradient(135deg, #e83e8c, #f48fb1);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 62, 140, 0.3);
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.login-link {
    color: #e83e8c;
    text-decoration: none;
    font-weight: 600;
}

.login-link:hover {
    text-decoration: underline;
}

.features-section {
    padding: 80px 0;
    background: white;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #e83e8c;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.feature-card p {
    color: #718096;
    font-size: 0.95rem;
}

/* === CART PAGE STYLES === */
.cart-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    min-height: 200px;
    display: flex;
    align-items: center;
}

.cart-hero .promo-banner {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cart-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.cart-header {
    text-align: center;
    margin-bottom: 50px;
}

.cart-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cart-heart {
    font-size: 2.5rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 50%, 100% { transform: scale(1); }
    25%, 75% { transform: scale(1.1); }
}

.cart-subtitle {
    font-size: 1.2rem;
    color: #e83e8c;
    font-weight: 600;
    font-style: italic;
}

.cart-items-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

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

.cart-items-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.items-count {
    color: #718096;
    font-size: 0.9rem;
}

.cart-table-container {
    overflow-x: auto;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    padding: 20px 30px;
    text-align: left;
    font-weight: 700;
    color: #2d3748;
    border-bottom: 2px solid #e9ecef;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-item-row {
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.3s ease;
}

.cart-item-row:hover {
    background-color: #f8f9fa;
}

.cart-item-row td {
    padding: 25px 30px;
    vertical-align: middle;
}

.product-details {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.product-text h4 {
    margin: 0 0 5px 0;
    font-weight: 600;
    color: #2d3748;
}

.product-code {
    color: #718096;
    font-size: 0.85rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 8px 15px;
}

.qty-btn {
    background: #e83e8c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #d63384;
    transform: scale(1.1);
}

.qty-value {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.unit-price, .subtotal {
    font-weight: 600;
    color: #2d3748;
}

.btn-remove {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 15px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-remove:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.cart-summary {
    background: #f8f9fa;
    padding: 30px;
    border-top: 1px solid #e9ecef;
}

.summary-card {
    max-width: 400px;
    margin-left: auto;
}

.summary-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1rem;
}

.total-row {
    border-top: 2px solid #e83e8c;
    padding-top: 15px;
    margin-top: 20px;
    font-size: 1.2rem;
    color: #2d3748;
}

.free-shipping {
    color: #28a745;
    font-weight: 600;
}

.total-amount {
    color: #e83e8c;
    font-size: 1.4rem;
}

.checkout-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-continue-shopping {
    background: #6c757d;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-continue-shopping:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-checkout {
    background: linear-gradient(135deg, #e83e8c, #f48fb1);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 62, 140, 0.3);
}

.empty-cart-section {
    text-align: center;
    padding: 80px 20px;
}

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

.empty-cart-icon {
    font-size: 5rem;
    color: #dee2e6;
    margin-bottom: 30px;
}

.empty-cart-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.empty-cart-content p {
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-start-shopping {
    background: linear-gradient(135deg, #e83e8c, #f48fb1);
    color: var(--white);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-start-shopping:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 62, 140, 0.3);
}

.related-products {
    padding: 80px 0;
    background: white;
}

.related-products .section-title {
    text-align: center;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-start-shopping:hover {
    transform: translateY(-2px);
    gap: 30px;
}

.related-product-placeholder {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    color: #718096;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-content i {
    font-size: 3rem;
    color: #e83e8c;
    margin-bottom: 20px;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.cta-content p {
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-contact {
    background: linear-gradient(135deg, #e83e8c, #f48fb1);
    color: var(--white);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 62, 140, 0.3);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .login-card {
        padding: 30px 20px;
    }

    .login-title {
        font-size: 2rem;
    }

    .cart-title {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 10px;
    }

    .cart-items-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cart-table {
        font-size: 0.9rem;
    }

    .product-details {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .checkout-actions {
        flex-direction: column;
    }

    .summary-card {
        margin-left: 0;
        margin-top: 30px;
    }

    .cta-card {
        padding: 30px 20px;
    }

    .features-section {
        padding: 60px 0;
    }

    .feature-card {
        margin-bottom: 20px;
    }
}

/* === LOGIN BLOCK OVERLAY STYLES === */
.login-block-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: linear-gradient(135deg, rgba(232,62,140,.96), rgba(17,24,39,.94)) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    z-index: 10000 !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 40px 20px 20px 20px !important;
    overflow-y: auto !important;
    margin: 0 !important;
}

.login-block-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
    padding-top: 20px;
}

.block-hero {
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.block-hero-content {
    padding: 15px 0;
}

.block-promo-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 12px 20px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.block-promo-banner i {
    font-size: 1.1rem;
}

.block-main-section {
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.block-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 600px;
}

.block-header {
    margin-bottom: 35px;
}

.block-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.2;
}

.block-subtitle {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500;
}

.block-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-block-primary {
    background: linear-gradient(135deg, #e83e8c, #f48fb1);
    color: white !important;
    text-decoration: none;
    border-radius: 12px;
    padding: 15px 25px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(232, 62, 140, 0.4);
}

.btn-block-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(232, 62, 140, 0.5);
    filter: brightness(1.05);
    color: white !important;
}

.btn-block-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748 !important;
    text-decoration: none;
    border: 2px solid rgba(45, 55, 72, 0.1);
    border-radius: 12px;
    padding: 13px 25px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-block-secondary:hover {
    background: white;
    border-color: #e83e8c;
    color: #e83e8c !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.block-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(45, 55, 72, 0.1);
}

.block-footer p {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
}

.block-link {
    color: #e83e8c;
    text-decoration: none;
    font-weight: 600;
}

.block-link:hover {
    text-decoration: underline;
}

.block-features-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    max-width: 800px;
}

.block-feature-card {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.block-feature-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.block-feature-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.block-feature-card h3 {
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.block-feature-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Overlay mobile responsivo */
@media (max-width: 768px) {
    .login-block-overlay {
        padding: 15px !important;
        align-items: flex-start !important;
        padding-top: 30px !important;
    }

    .login-block-content {
        min-height: calc(100vh - 60px);
        justify-content: flex-start;
        padding-top: 20px;
    }

    .block-card {
        padding: 30px 20px;
        max-width: 100%;
    }

    .block-title {
        font-size: 1.8rem;
    }

    .block-subtitle {
        font-size: 1rem;
    }

    .block-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-block-primary,
    .btn-block-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .block-features-section {
        padding: 25px 15px;
        max-width: 100%;
    }

    .block-feature-card {
        margin-bottom: 15px;
        padding: 20px 15px;
    }

    .block-feature-icon {
        font-size: 2rem;
    }

    .block-hero {
        margin-bottom: 20px;
    }

    .block-main-section {
        margin-bottom: 20px;
    }
}

/* Tablets e telas médias */
@media (min-width: 769px) and (max-width: 1024px) {
    .login-block-overlay {
        padding: 30px 20px 20px 20px !important;
    }

    .login-block-content {
        max-width: 750px;
        padding-top: 10px;
    }

    .block-card {
        max-width: 550px;
    }

    .block-features-section {
        max-width: 700px;
    }
}

/* Desktop grande */
@media (min-width: 1025px) {
    .login-block-overlay {
        padding: 50px 40px 40px 40px !important;
        align-items: flex-start !important;
    }

    .login-block-content {
        max-width: 1000px;
        padding-top: 0;
        justify-content: flex-start;
    }

    .block-card {
        max-width: 650px;
        padding: 50px;
    }

    .block-title {
        font-size: 2.5rem;
    }

    .block-subtitle {
        font-size: 1.2rem;
    }
}

/* Desktop muito grande - centraliza verticalmente apenas quando há muito espaço */
@media (min-width: 1400px) and (min-height: 900px) {
    .login-block-overlay {
        align-items: center !important;
    }

    .login-block-content {
        justify-content: center;
        min-height: calc(100vh - 100px);
    }
}

/* Desabilita cliques no conteúdo por trás do overlay */
.login-block-overlay + * {
    pointer-events: none !important;
}

/* Força o overlay sempre no topo */
body:has(.login-block-overlay) {
    overflow: hidden;
}

/* === PRODUCT MODAL (visibilidade padrão oculta) === */
.product-modal { display: none; }
.product-modal.show, .product-modal.open { 
    display: flex; 
    position: fixed; inset: 0; 
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1050;
    justify-content: center; align-items: center;
}
.product-modal-content {
    background: #ffffff; border: 1px solid #e5e7eb; border-radius: 16px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.15); max-width: 800px; width: 90%;
    margin: 20px; padding: 24px; position: relative;
}
