@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #F8F9FA; /* Cinza Gelo muito sutil */
    color: #1F2937;
    -webkit-font-smoothing: antialiased;
}

/* --- CONTAINER MESTRE (Corrigido para CSS Puro) --- */
.container-store {
    max-width: 1280px; /* Em CSS puro usamos max-width, não max-w-screen-xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
}

/* --- COMPONENTES --- */

/* Card de Produto (Estilo Nubank/Printi: Clean com Hover Sutil) */
.product-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #820AD1; /* Roxo Nubank no hover */
}

/* Categorias (Círculos ou Cards Pequenos) */
.cat-item {
    background: white;
    border-radius: 12px;
    border: 1px solid #F3F4F6;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    height: 100%;
}
.cat-item:hover {
    border-color: #820AD1;
    color: #820AD1;
    box-shadow: 0 4px 12px rgba(130, 10, 209, 0.1);
}

/* Botões */
.btn-primary {
    background-color: #820AD1;
    color: white;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 99px;
    transition: background 0.2s;
}
.btn-primary:hover {
    background-color: #6a05aa;
}

/* Titulos de Seção */
.section-title {
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* Mega Menu Dropdown */
.group:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-menu {
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #F8F9FA;
    color: #1F2937;
    -webkit-font-smoothing: antialiased;
}

/* --- CONTAINER MESTRE --- */
.container-store {
    max-w-screen-xl; 
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
}

/* --- CARD DE CATEGORIA (NOVO DESIGN) --- */
.cat-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #F3F4F6;
    padding: 1.5rem;
    height: 160px; /* Altura fixa para padrão */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

/* Efeito de Bolha no Fundo */
.cat-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #F3E8FF 0%, #FFFFFF 100%); /* Roxo suave */
    border-radius: 50%;
    z-index: 0;
    transition: transform 0.5s ease;
    opacity: 0.5;
}

.cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(130, 10, 209, 0.1); /* Sombra Roxa suave */
    border-color: #E9D5FF;
}

.cat-card:hover::before {
    transform: scale(6); /* A bolha cresce e preenche o card */
    opacity: 1;
}

.cat-content {
    position: relative;
    z-index: 10; /* Garante que texto fique acima do fundo */
}

/* Ícone da Categoria */
.cat-icon {
    font-size: 2.5rem;
    color: #820AD1;
    margin-bottom: 0.5rem;
    transition: transform 0.3s;
}
.cat-card:hover .cat-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* --- CARD DE PRODUTO (ELEGANTE) --- */
.product-card {
    background: white;
    border-radius: 24px; /* Mais arredondado */
    border: 1px solid #F3F4F6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #D8B4FE; /* Borda levemente roxa */
}

.product-image-container {
    background-color: #F9FAFB;
    border-radius: 16px;
    margin: 0.75rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-add-cart {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transform: translateY(60px); /* Escondido */
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover .btn-add-cart {
    transform: translateY(0); /* Aparece saltando */
}
.btn-add-cart:hover {
    background: #820AD1;
    color: white;
}

/* --- GERAIS --- */
.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.03em;
}
.btn-primary {
    background-color: #111;
    color: white;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 99px;
    transition: all 0.3s;
}
.btn-primary:hover {
    background-color: #820AD1;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(130, 10, 209, 0.3);
}
.mega-menu { transform-origin: top center; transition: all 0.2s ease-out; }
.group:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }

/* --- FUNDAMENTOS --- */
.container-fixed { max-width: 1240px; margin: 0 auto; padding: 0 24px; width: 100%; }

/* --- ANIMAÇÕES --- */
.fade-in-up { opacity: 0; transform: translateY(20px); transition: all 0.8s ease-out; }

/* --- BENTO BOX & CATEGORIAS --- */
.bento-box { 
    background: white; 
    border-radius: 24px; 
    overflow: hidden; 
    position: relative; 
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
    border: 1px solid #F3F4F6; 
}
.bento-box:hover { transform: scale(1.02); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1); z-index: 10; border-color: #820AD1; }

.cat-bg-card { 
    background-size: cover; 
    background-position: center; 
    position: relative; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end; 
    padding: 24px; 
    color: white; 
    height: 100%; 
}
.cat-bg-card::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); 
}

/* --- FOOTER GLOW --- */
.footer-glow { background: linear-gradient(180deg, #0A0A0A 0%, #160626 100%); position: relative; overflow: hidden; }
.footer-line { height: 1px; background: linear-gradient(90deg, transparent, rgba(130, 10, 209, 0.4), transparent); margin-bottom: 4rem; }

/* --- MARQUEE --- */
.marquee-wrapper { overflow: hidden; white-space: nowrap; }
.marquee-content { display: inline-block; animation: marquee 40s linear infinite; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 90; background-color: #25D366; color: white; width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 34px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

/* Garante que o container mestre funcione em todas as larguras */
.container-store, .container-fixed {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* Força a visibilidade inicial para teste; se o JS falhar, o site aparece */
.fade-in-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
}