/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0033FF;
    --primary-dark: #0028CC;
    --primary-light: #0052FF;
    --secondary: #0A0A0A;
    --text: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-tertiary: #666666;
    --bg: #000000;
    --bg-card: #0F0F0F;
    --bg-elevated: #1A1A1A;
    --border: #222222;
    --success: #00D563;
    --gradient-primary: linear-gradient(135deg, #0033FF 0%, #0066FF 100%);
    --gradient-card: linear-gradient(180deg, #1A1A1A 0%, #0F0F0F 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-primary: 0 8px 24px rgba(0, 51, 255, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* Navbar - Melhorado */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-bottom: 1px solid rgba(0, 51, 255, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 51, 255, 0.3));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo:hover {
    filter: drop-shadow(0 6px 16px rgba(0, 51, 255, 0.5));
    transform: scale(1.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 51, 255, 0.2);
}

.nav-btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.3);
}

.nav-btn-primary:hover {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.btn-text {
    display: none;
}

/* Hero Section - Redesigned & More Fluid */
.hero {
    position: relative;
    padding: 50px 0 60px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0, 51, 255, 0.05) 0%, rgba(0, 51, 255, 0.01) 50%, transparent 100%);
}

.hero-bg {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 51, 255, 0.1) 0%, transparent 70%);
    animation: heroRotate 20s linear infinite;
}

@keyframes heroRotate {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(0, 51, 255, 0.15) 0%, transparent 50%);
    animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.5; }
    50% { transform: translateY(-20px); opacity: 0.8; }
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 213, 99, 0.1) 0%, rgba(0, 213, 99, 0.05) 100%);
    border: 1px solid rgba(0, 213, 99, 0.3);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
    box-shadow: 0 0 8px var(--success);
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 8px var(--success);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
        box-shadow: 0 0 4px var(--success);
    }
}

.hero-title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #FFFFFF 0%, #B0B0B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes textShine {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Delivery Badge */
.delivery-badge {
    background: linear-gradient(135deg, rgba(0, 213, 99, 0.15) 0%, rgba(0, 213, 99, 0.08) 100%);
    border: 2px solid rgba(0, 213, 99, 0.3);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards, floatBadge 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.delivery-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 213, 99, 0.1),
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.delivery-icon {
    font-size: 32px;
    filter: drop-shadow(0 2px 8px rgba(0, 213, 99, 0.5));
    animation: deliveryPulse 2s ease-in-out infinite;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

@keyframes deliveryPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 2px 8px rgba(0, 213, 99, 0.5));
    }
    50% {
        transform: scale(1.15) rotate(-10deg);
        filter: drop-shadow(0 4px 16px rgba(0, 213, 99, 0.8));
    }
}

.delivery-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.delivery-text strong {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.delivery-text span {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Payment Methods Section */
.payment-methods {
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.payment-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.3px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.payment-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    border: 2px solid rgba(0, 51, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: floatCard 5s ease-in-out infinite;
}

.payment-card:nth-child(1) {
    animation-delay: 0s;
}

.payment-card:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 255, 0.15) 0%, rgba(0, 102, 255, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 51, 255, 0.08),
        transparent
    );
    animation: cardShimmer 4s ease-in-out infinite;
}

@keyframes cardShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.payment-card:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0, 51, 255, 0.4);
    animation: none;
}

.payment-card:hover::before {
    opacity: 1;
}

.payment-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.payment-icon svg {
    width: 100%;
    height: 100%;
}

.pix-icon {
    color: #32BCAD;
}

.card-icon {
    color: #4A90E2;
}

.payment-card:hover .payment-icon {
    transform: scale(1.25) rotate(-10deg);
    filter: drop-shadow(0 4px 12px rgba(0, 51, 255, 0.6));
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.payment-info strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-info span {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    border: 2px solid rgba(0, 51, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out backwards;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }

.stat-item:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 51, 255, 0.2) 0%, rgba(0, 51, 255, 0.12) 100%);
    box-shadow: 0 12px 32px rgba(0, 51, 255, 0.3);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 28px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-item:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
}

.stat-text {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-text strong {
    display: block;
    font-size: 17px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 3px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text span {
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.search-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.close-search {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: var(--transition);
}

.close-search:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.search-input-container {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    transition: var(--transition);
}

.search-input-container:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 51, 255, 0.1);
}

.search-input-container svg {
    color: var(--text-secondary);
    flex-shrink: 0;
}

.search-input-container input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
}

.search-input-container input::placeholder {
    color: var(--text-tertiary);
}

.search-results-info {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(0, 51, 255, 0.1);
    border: 1px solid rgba(0, 51, 255, 0.3);
    border-radius: var(--radius-md);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: none;
    animation: fadeIn 0.3s ease;
}

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

.search-results-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-height: 60vh;
    overflow-y: auto;
}

.search-result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.search-result-card:hover {
    border-color: var(--primary);
    background: var(--bg-elevated);
    transform: translateX(4px);
}

.search-result-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: white;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-result-brand {
    font-size: 11px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

.search-result-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.search-result-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    margin-top: auto;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Filters Section - Carrossel Sticky */
.filters-section {
    position: sticky;
    top: 88px; /* Altura exata do navbar (60px logo + 28px padding) */
    z-index: 90;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    transition: all 0.3s ease;
}

.filters-header {
    display: none; /* Ocultar título no carrossel */
}

.filters-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 4px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.filters-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.filter-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
    flex-shrink: 0; /* Não encolher no carrossel */
    white-space: nowrap; /* Não quebrar linha */
}

.filter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-card:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 51, 255, 0.15) 0%, rgba(0, 51, 255, 0.08) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 255, 0.25);
}

.filter-card:hover::before {
    opacity: 1;
}

.filter-card.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 51, 255, 0.25) 0%, rgba(0, 51, 255, 0.15) 100%);
    box-shadow: 0 0 0 3px rgba(0, 51, 255, 0.2), 0 6px 20px rgba(0, 51, 255, 0.35);
}

.filter-card.active::before {
    opacity: 1;
}

.filter-card span {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

/* Products Section */
.products-section {
    padding: 60px 0;
}

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

.products-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.products-count {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.view-toggle {
    display: flex;
    gap: 4px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 4px;
}

.view-btn {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
}

.view-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

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

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.product-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInScale 0.5s ease-out backwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }

.product-card:active {
    transform: scale(0.97);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 51, 255, 0.9);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 6px;
    z-index: 10;
    letter-spacing: 0.5px;
}

.product-image-container {
    width: 100%;
    height: 200px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
}

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

.product-info {
    padding: 16px;
}

.product-brand {
    font-size: 11px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: inline-block;
    background: rgba(0, 51, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.product-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.product-btn {
    width: 100%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 12px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
}

.product-btn:active {
    transform: scale(0.96);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    padding: 20px;
    flex-wrap: wrap;
}

.pagination-btn {
    background: var(--bg-card);
    border: 2px solid var(--border);
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(0, 51, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 51, 255, 0.3);
}

.pagination-number {
    min-width: 44px;
}

.pagination-arrow {
    width: 44px;
    padding: 0;
}

.pagination-dots {
    color: var(--text-secondary);
    padding: 0 8px;
    font-size: 16px;
    font-weight: 700;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    margin-bottom: 24px;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal.active {
    display: flex;
}

.modal-wrapper {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: var(--transition);
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.modal-body {
    padding: 24px;
}

.modal-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.modal-brand {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(0, 51, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 12px;
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.modal-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}

.modal-whatsapp-btn {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: white;
    padding: 16px;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
}

.modal-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* Repair Section - Melhorada */
.repair-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 51, 255, 0.08) 0%, rgba(0, 102, 255, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.repair-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 51, 255, 0.1) 0%, transparent 50%);
    animation: heroRotate 20s linear infinite;
}

.repair-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 51, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.repair-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 51, 255, 0.05),
        transparent
    );
    animation: shimmer 4s ease-in-out infinite;
}

.repair-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.repair-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 51, 255, 0.2) 0%, rgba(0, 102, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: repairFloat 3s ease-in-out infinite;
}

.repair-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(0, 102, 255, 0.5) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
}

.repair-icon {
    color: var(--primary);
    filter: drop-shadow(0 4px 12px rgba(0, 51, 255, 0.6));
}

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

.repair-text {
    position: relative;
    z-index: 1;
}

.repair-text h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
    background: linear-gradient(135deg, #FFFFFF 0%, #B0B0B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.repair-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.repair-services {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.repair-service-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(0, 51, 255, 0.08);
    border: 1px solid rgba(0, 51, 255, 0.2);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.repair-service-item:hover {
    background: rgba(0, 51, 255, 0.15);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.repair-service-item svg {
    color: var(--primary);
    filter: drop-shadow(0 2px 6px rgba(0, 51, 255, 0.4));
    flex-shrink: 0;
}

.repair-service-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.repair-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 18px 36px;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    position: relative;
    z-index: 1;
}

.repair-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.repair-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h5 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-brands {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links svg {
    color: var(--primary);
    flex-shrink: 0;
}

.footer-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 13px;
}

.footer-links-bottom {
    display: flex;
    gap: 16px;
}

.footer-links-bottom a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Tablet */
@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }

    .btn-text {
        display: inline;
    }

    .nav-content {
        padding: 16px 0;
    }

    .brand-logo {
        height: 70px;
    }

    .hero {
        padding: 60px 0 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .delivery-badge {
        padding: 18px 24px;
    }

    .delivery-icon {
        font-size: 36px;
    }

    .delivery-text strong {
        font-size: 18px;
    }

    .delivery-text span {
        font-size: 13px;
    }

    .payment-card {
        padding: 18px 20px;
    }

    .payment-icon {
        font-size: 32px;
    }

    .payment-info strong {
        font-size: 16px;
    }

    .payment-info span {
        font-size: 12px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-item {
        padding: 20px 16px;
    }

    .stat-icon {
        font-size: 32px;
    }

    .stat-text strong {
        font-size: 20px;
    }

    .stat-text span {
        font-size: 11px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .product-image-container {
        height: 240px;
    }

    .product-info {
        padding: 20px;
    }

    .product-name {
        font-size: 15px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary);
    }

    .product-image-container {
        height: 280px;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}
