/* ============================================
   DEPOSITO CACULA - Premium Professional Design
   Material de Construção - Araraquara/SP
   CNPJ: 72.977.572/0001-36 - Desde 1993
   Design Corporativo Profissional
   ============================================ */

/* Google Fonts - Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables - Professional Palette */
:root {
    /* Primary Colors - Azul Corporativo Forte */
    --primary: #1565C0;
    --primary-light: #1976D2;
    --primary-dark: #0D47A1;

    /* Secondary Colors */
    --secondary: #1A1A2E;
    --secondary-light: #263238;
    --secondary-mid: #37474F;

    /* Accent Colors */
    --accent: #D84315;
    --accent-light: #FF5722;
    --accent-dark: #BF360C;

    /* Trust Colors */
    --trust-blue: #1565C0;
    --trust-green: #2E7D32;

    /* Neutrals - Premium Grade */
    --white: #FFFFFF;
    --black: #0A0A0A;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    /* Backgrounds */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFA;
    --bg-tertiary: #F5F5F5;
    --bg-dark: #1A1A2E;

    /* Shadows - Professional Grade */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.05);
    --shadow-xl: 0 16px 32px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.06);
    --shadow-2xl: 0 24px 48px rgba(0,0,0,0.15), 0 12px 24px rgba(0,0,0,0.08);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-3xl: 24px;
    --radius-full: 9999px;

    /* Transitions - Smooth */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: all 0.4s cubic-bezier(0.4, 0, 0.1, 1);

    /* Typography */
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing Scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--bg-primary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
}

input, select, textarea {
    font-family: var(--font-body);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1536px) {
    .container {
        max-width: 1440px;
        padding: 0 32px;
    }
}

/* ============================================
   PROMO TICKER - Professional Version
   ============================================ */
.promo-ticker {
    background: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.promo-ticker-track {
    display: inline-block;
    animation: tickerScroll 35s linear infinite;
    padding: 10px 0;
}

.promo-ticker-track span {
    display: inline-block;
    padding: 0 48px;
}

.promo-ticker-track span::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    margin-right: 12px;
    opacity: 0.7;
    vertical-align: middle;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   TOP BAR - Professional
   ============================================ */
.top-bar {
    background: var(--gray-900);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 16px;
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar-left span {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left span strong {
    color: var(--primary-light);
    font-weight: 600;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-right a {
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.top-bar-right a:hover {
    background: rgba(21, 101, 192, 0.2);
    color: var(--primary-light);
}

/* ============================================
   HEADER - Professional Style
   ============================================ */
.header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header .container {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 80px;
}

/* Logo - Professional */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-icon img {
    height: 56px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--gray-900);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

.logo-text span {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1.5px;
}

/* Navigation - Professional */
.header nav {
    flex: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-700);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    white-space: nowrap;
}

.nav-links li a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.nav-links li a.active {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Search Bar - Professional */
.search-bar {
    display: flex;
    align-items: center;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    max-width: 400px;
    flex: 1;
}

.search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.15);
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--gray-900);
    font-weight: 500;
}

.search-bar input::placeholder {
    color: var(--gray-500);
}

.search-bar input:focus {
    outline: none;
}

.search-bar button {
    padding: 0 16px;
    background: transparent;
    color: var(--gray-600);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.search-bar button:hover {
    color: var(--primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition-base);
}

.header-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent-dark);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    min-width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ============================================
   HERO SECTION - Professional
   ============================================ */
.hero {
    background: #0F172A;
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(21, 101, 192, 0.2);
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-content h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content h2 em {
    color: var(--primary-light);
    font-style: normal;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: var(--primary-dark);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-size: 16px;
    border: none;
    box-shadow: 0 4px 16px rgba(13, 71, 161, 0.3);
    transition: var(--transition-smooth);
}

.hero .btn-primary:hover {
    background: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.4);
}

.hero .btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.hero .btn-outline:hover {
    background: var(--white);
    color: var(--gray-900);
}

.hero-visual {
    position: relative;
    height: 400px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-2xl);
}

/* ============================================
   FEATURES STRIP - Professional
   ============================================ */
.features-strip {
    background: var(--gray-50);
    padding: 40px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--primary-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(13, 71, 161, 0.2);
}

.feature-text h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

/* ============================================
   SECTIONS - Professional Layout
   ============================================ */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-header .label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-dark);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 6px rgba(13, 71, 161, 0.2);
}

.section-header h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 40px;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.6;
    font-weight: 400;
}

.section-header-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
}

.section-header-flex .section-header {
    text-align: left;
    margin: 0;
}

.section-header-flex .btn-secondary {
    background: var(--gray-900);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    border: none;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.section-header-flex .btn-secondary:hover {
    background: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   PRODUCT GRID - Professional
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    width: 100%;
    height: 280px;
    background: var(--gray-50);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-elegant);
}

.product-card:hover .product-image img {
    transform: scale(1.02);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-dark);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    margin-top: auto;
    margin-bottom: 16px;
}

.price-current {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 28px;
    color: var(--primary);
    line-height: 1;
}

.price-old {
    font-size: 16px;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 500;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.btn-add-cart {
    flex: 1;
    background: var(--primary-dark);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    border: none;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(13, 71, 161, 0.2);
}

.btn-add-cart:hover {
    background: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
}

/* ============================================
   CATEGORIES GRID - Professional
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.category-card:hover {
    border-color: var(--primary);
    background: var(--primary-dark);
    box-shadow: var(--shadow-xl);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 16px;
    filter: grayscale(0.3);
    transition: var(--transition-base);
}

.category-card:hover .category-icon {
    filter: grayscale(0) drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    transform: scale(1.05);
}

.category-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--gray-900);
    transition: var(--transition-base);
}

.category-card:hover h3 {
    color: var(--white);
}

/* ============================================
   ABOUT STRIP - Professional
   ============================================ */
.about-strip {
    background: #0F172A;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-strip .container {
    position: relative;
    z-index: 2;
}

.about-strip h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 36px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.about-strip p {
    max-width: 800px;
    margin: 0 auto 16px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-stat {
    text-align: center;
}

.about-stat strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 48px;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* ============================================
   FOOTER - Professional
   ============================================ */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-section h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
}

/* ============================================
   UTILITIES - Professional
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(13, 71, 161, 0.3);
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.4);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Toast Container */
.toast-container {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--white);
    border-left: 4px solid var(--accent-dark);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-xl);
    min-width: 300px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state .icon {
    font-size: 80px;
    margin-bottom: 24px;
    opacity: 0.3;
}

.empty-state h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.empty-state p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* ============================================
   RESPONSIVE - Mobile First
   ============================================ */
@media (max-width: 1024px) {
    .header nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .search-bar {
        max-width: 200px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
    }

    .about-stats {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .promo-ticker {
        font-size: 12px;
    }

    .top-bar-left {
        gap: 12px;
        font-size: 11px;
    }

    .logo-text h1 {
        font-size: 18px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .product-image {
        height: 200px;
    }

    .search-bar {
        max-width: 140px;
    }
}

/* ============================================
   CART & MOBILE SIDEBAR STYLES
   ============================================ */

/* Cart Overlay */
.cart-overlay,
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.cart-overlay.active,
.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background: var(--white);
    box-shadow: var(--shadow-2xl);
    z-index: 1999;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--gray-900);
}

.close-cart {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gray-600);
    transition: var(--transition-base);
}

.close-cart:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.cart-item-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-base);
}

.qty-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 18px;
}

.cart-total strong {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 28px;
    color: var(--primary);
}

.continue-shopping {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-lg);
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
    font-weight: 600;
    margin-top: 12px;
    transition: var(--transition-base);
}

.continue-shopping:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    background: var(--gray-900);
    box-shadow: var(--shadow-2xl);
    z-index: 1999;
    transform: translateX(-100%);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-sidebar-header h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
}

.mobile-nav-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
    list-style: none;
}

.mobile-nav-list li a {
    display: block;
    padding: 16px 24px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    transition: var(--transition-base);
}

.mobile-nav-list li a:hover {
    background: rgba(21, 101, 192, 0.2);
    color: var(--primary-light);
}

.mobile-sidebar-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .promo-ticker,
    .top-bar,
    .header,
    .mobile-sidebar,
    .cart-sidebar,
    .footer {
        display: none;
    }
}
/* ============================================
   FOOTER - CORREÇÃO MOBILE RESPONSIVO
   ============================================ */

.footer {
    background: #0F172A;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand .footer-cnpj {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-badges {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-badges-group {
    margin-bottom: 24px;
}

.badge-label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.badge-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.badge-icons img {
    height: 32px;
    width: auto;
    object-fit: contain;
    max-width: 60px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ============================================
   RESPONSIVE - MOBILE FIXES
   ============================================ */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 32px;
    }

    .footer-brand {
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-accordion {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer h4,
    .footer-accordion-toggle {
        margin-bottom: 0;
        padding: 16px 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-accordion-content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .footer-accordion-content.open {
        max-height: 500px;
        opacity: 1;
        padding-bottom: 16px;
    }

    .accordion-arrow {
        transition: transform 0.3s ease;
        font-size: 14px;
    }

    .footer-accordion-toggle.active .accordion-arrow {
        transform: rotate(90deg);
    }

    .footer-badges {
        padding: 24px 0;
    }

    .badge-icons img {
        height: 28px;
        max-width: 50px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 32px 0 0;
    }

    .footer-brand h3 {
        font-size: 20px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .footer h4 {
        font-size: 14px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 13px;
    }

    .badge-icons img {
        height: 24px;
        max-width: 45px;
    }

    .footer-bottom p {
        font-size: 11px;
        line-height: 1.6;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}
/* ============================================
   RESPONSIVE FIXES - MOBILE OPTIMIZATION
   ============================================ */

/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container fixes */
.container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    overflow-x: hidden;
}

/* ============================================
   HERO SECTION - MOBILE
   ============================================ */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-visual {
        height: 300px;
        order: -1;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 5px 14px;
    }

    .hero-visual {
        height: 250px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 32px 0;
    }

    .hero-content h2 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-visual {
        height: 200px;
    }
}

/* ============================================
   FEATURES STRIP - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .features-strip {
        padding: 32px 0;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .feature-text h4 {
        font-size: 14px;
    }

    .feature-text p {
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-item {
        flex-direction: row;
        text-align: left;
    }
}

/* ============================================
   SECTIONS - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .section-header .label {
        font-size: 11px;
    }

    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-header-flex .section-header {
        text-align: left;
    }

    .section-header-flex .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 48px 0;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }
}

/* ============================================
   PRODUCTS GRID - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 12px;
    }

    .product-title {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }

    .product-category {
        font-size: 10px;
    }

    .price-current {
        font-size: 20px;
    }

    .price-old {
        font-size: 13px;
    }

    .btn-add-cart {
        padding: 10px 16px;
        font-size: 12px;
    }

    .product-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-image {
        height: 200px;
    }

    .product-card {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 12px;
    }

    .product-image {
        height: 120px;
        border-radius: 12px 0 0 12px;
    }

    .product-info {
        padding: 12px 12px 12px 0;
    }
}

/* ============================================
   CATEGORIES GRID - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .category-card {
        padding: 20px 12px;
    }

    .category-icon {
        font-size: 36px;
    }

    .category-card h3 {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-card {
        padding: 16px 10px;
    }

    .category-icon {
        font-size: 32px;
    }

    .category-card h3 {
        font-size: 12px;
    }
}

/* ============================================
   ABOUT STRIP - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .about-strip {
        padding: 40px 0;
    }

    .about-strip h3 {
        font-size: 24px;
    }

    .about-strip p {
        font-size: 14px;
    }

    .about-stats {
        gap: 32px;
    }

    .about-stat strong {
        font-size: 32px;
    }

    .about-stat span {
        font-size: 11px;
    }
}

@media (max-width: 640px) {
    .about-strip {
        padding: 32px 0;
    }

    .about-strip h3 {
        font-size: 20px;
    }

    .about-strip p {
        font-size: 13px;
    }

    .about-stats {
        gap: 24px;
        flex-direction: column;
    }

    .about-stat strong {
        font-size: 28px;
    }
}

/* ============================================
   CTA SECTION - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 24px;
    }

    .cta-section p {
        font-size: 14px;
    }

    .cta-section .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .cta-section h2 {
        font-size: 20px;
    }

    .cta-section p {
        font-size: 13px;
    }
}

/* ============================================
   EMPTY STATE - MOBILE
   ============================================ */

@media (max-width: 640px) {
    .empty-state {
        padding: 60px 16px;
    }

    .empty-state .icon {
        font-size: 60px;
    }

    .empty-state h3 {
        font-size: 20px;
    }

    .empty-state p {
        font-size: 14px;
    }
}

/* ============================================
   PREVENT IMAGE DRAG ON MOBILE
   ============================================ */

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

a img,
button img {
    pointer-events: auto;
}

/* Fix hero visual */
.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .hero-visual img {
        border-radius: 16px;
    }
}

@media (max-width: 640px) {
    .hero-visual img {
        border-radius: 12px;
    }
}

/* ============================================
   COOKIE CONSENT BANNER STYLES
   ============================================ */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--gray-900); /* Usando uma cor do seu tema */
    color: var(--white);
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cookie-consent-banner .cookie-content {
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
}

#cookie-consent-banner p {
    margin: 0;
    flex-grow: 1;
}

#cookie-consent-banner a {
    color: var(--primary-light); /* Usando uma cor de link do seu tema */
    text-decoration: underline;
}

#cookie-consent-banner .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

#cookie-consent-banner .btn-cookie-accept,
#cookie-consent-banner .btn-cookie-decline {
    background-color: var(--primary); /* Usando sua cor primária */
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#cookie-consent-banner .btn-cookie-accept:hover,
#cookie-consent-banner .btn-cookie-decline:hover {
    background-color: var(--primary-dark); /* Um tom mais escuro da sua cor primária */
    transform: translateY(-1px);
}

#cookie-consent-banner .btn-cookie-decline {
    background-color: var(--gray-600); /* Cor secundária para recusar, do seu tema */
}

#cookie-consent-banner .btn-cookie-decline:hover {
    background-color: var(--gray-700);
}

/* Media Queries para Responsividade do Banner */
@media (max-width: 768px) {
    #cookie-consent-banner {
        padding: 10px 15px;
    }
    #cookie-consent-banner .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    #cookie-consent-banner .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    #cookie-consent-banner .btn-cookie-accept,
    #cookie-consent-banner .btn-cookie-decline {
        width: 100%;
        max-width: 180px; /* Limita a largura dos botões em mobile */
    }
}
