/* ==========================================
   VARIÁVEIS DE CORES PREMIUM E RESET
========================================== */
:root {
    --bg-color: #0b0c10;
    --card-bg: rgba(20, 20, 25, 0.6); 
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #f0f0f5;
    --text-muted: #8a8d9b;
    
    --pink: #ff2a7a;
    --purple: #9d4edd;
    --blue: #00bbf9;
    --yellow: #ffea00;
    --orange: #ff7900;
    --green: #00f5d4;
    --gray: #8d99ae;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================
   CORREÇÃO DO OVERFLOW MOBILE E BARRA PRETA
========================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    width: 100%; 
    max-width: 100%; 
    overflow-x: hidden !important; 
    scroll-behavior: smooth;
    font-family: var(--font-body); 
    background-color: var(--bg-color); 
    color: var(--text-main); 
    line-height: 1.6;
    position: relative; 
}

/* Fundo pontilhado */
body::before {
    content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px; z-index: -1; pointer-events: none;
}

/* Proteção máxima contra elementos estourando a tela no celular */
main, header, footer, section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Exceção: o container do Header precisa ser visível para o menu Dropdown não sumir */
header { overflow-x: visible; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); }
.container { width: 90%; max-width: 1100px; margin: 0 auto; position: relative; z-index: 10; }

.color-pink { color: var(--pink); } .color-purple { color: var(--purple); } .color-blue { color: var(--blue); }
.color-yellow { color: var(--yellow); } .color-orange { color: var(--orange); } .color-gray { color: var(--gray); }
.bg-pink { background-color: var(--pink); color: #fff; } .bg-purple { background-color: var(--purple); color: #fff; }
.mt-5 { margin-top: 3rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; } .text-center { text-align: center; }

/* ==========================================
   FUNDO AMBIENTE E ANIMAÇÕES SVG
========================================== */
.ambient-background { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 0; pointer-events: none; overflow: hidden; }
.glow-blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.3; mix-blend-mode: screen; }
.glow-1 { top: 10%; left: -10%; width: 400px; height: 400px; background: var(--purple); animation: floatBlob 10s infinite alternate; }
.glow-2 { top: 60%; right: -10%; width: 350px; height: 350px; background: var(--pink); animation: floatBlob 12s infinite alternate-reverse; }
.glow-3 { top: 40%; left: 40%; width: 300px; height: 300px; background: var(--blue); opacity: 0.15; animation: floatBlob 15s infinite alternate; }

@keyframes floatBlob { 0% { transform: scale(1) translate(0, 0); } 100% { transform: scale(1.2) translate(50px, 50px); } }

#airplane-curved { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 1; pointer-events: none; opacity: 0.8;}
.flight-svg { width: 100%; height: 100%; }

/* ==========================================
   AQUARELA: FIGURINHAS VIBRANTES
========================================== */
#global-stickers { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 15; pointer-events: none; overflow: hidden; }
.sticker { position: absolute; cursor: grab; pointer-events: auto; transition: transform 0.2s var(--transition); width: 80px; height: auto; opacity: 0.85; max-width: 20vw;}
.sticker:hover { opacity: 1; transform: scale(1.1); }
.sticker:active { cursor: grabbing; transform: scale(1.05); }

/* Sombras NEON super coloridas */
.sticker-sun { top: 15%; right: 10%; animation: float 8s ease-in-out infinite; filter: drop-shadow(0 0 20px rgba(255, 234, 0, 0.7)); }
.sticker-castle { top: 50%; right: 5%; width: 100px; animation: float 9s ease-in-out infinite reverse; filter: drop-shadow(0 0 20px rgba(0, 187, 249, 0.7)); }
.sticker-boat { top: 40%; left: 8%; animation: float 10s ease-in-out infinite; filter: drop-shadow(0 0 20px rgba(255, 42, 122, 0.7)); }
.sticker-plane-static { top: 80%; left: 15%; width: 70px; animation: float 7s ease-in-out infinite reverse; filter: drop-shadow(0 0 20px rgba(0, 245, 212, 0.6)); }

/* Novas Figurinhas */
.sticker-kite { top: 25%; left: 25%; width: 65px; animation: float 6s ease-in-out infinite; filter: drop-shadow(0 0 15px rgba(255, 121, 0, 0.7)); }
.sticker-heart { top: 70%; right: 15%; width: 50px; animation: float 5s ease-in-out infinite reverse; filter: drop-shadow(0 0 15px rgba(255, 42, 122, 0.7)); }
.sticker-star { top: 10%; left: 40%; width: 55px; animation: float 7s ease-in-out infinite; filter: drop-shadow(0 0 15px rgba(255, 234, 0, 0.7)); }
.sticker-pencil { top: 85%; right: 40%; width: 70px; animation: float 8s ease-in-out infinite reverse; filter: drop-shadow(0 0 15px rgba(157, 78, 221, 0.7)); }

.drop-rain { position: absolute; width: 15px; opacity: 0; animation: fallingRain linear infinite; }
.drop-rain svg { width: 100%; height: 100%; filter: drop-shadow(0 0 10px currentColor); }
.drop-1 { left: 15%; animation-duration: 4s; animation-delay: 0s; }
.drop-2 { left: 45%; animation-duration: 3.5s; animation-delay: 2s; width: 10px; }
.drop-3 { left: 75%; animation-duration: 5s; animation-delay: 1s; width: 18px; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes fallingRain {
    0% { transform: translateY(-50px) scale(0.5); opacity: 0; }
    20% { opacity: 1; transform: translateY(20vh) scale(1); }
    80% { opacity: 1; }
    100% { transform: translateY(110vh) scale(0.8); opacity: 0; }
}

/* ==========================================
   HEADER COM LOGO ANTIGO
========================================== */
header { background-color: rgba(11, 12, 16, 0.85); backdrop-filter: blur(15px); position: fixed; top: 0; width: 100%; height: 80px; z-index: 1000; border-bottom: 1px solid var(--card-border); }
.navbar { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo-img { height: 40px; object-fit: contain; }
nav ul { display: flex; gap: 20px; }
nav a { font-size: 0.95rem; font-weight: 500; padding: 8px 12px; }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-muted);}

/* ==========================================
   ANIMAÇÃO DO LOGO BI.ART USANDO PNGS NO TOPO
========================================== */
.main-logo-animation {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    margin-top: 40px; 
    margin-bottom: 40px; 
    height: 180px; 
    position: relative;
    z-index: 11;
}

.anim-letter {
    height: 110px; 
    object-fit: contain;
    transform-origin: bottom center;
}

.anim-i-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.anim-crown {
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 90px; 
    margin-left: -45px; 
    margin-bottom: -10px; 
    z-index: 2;
    animation: crownJumpIn 2s ease-out forwards, crownFloat 4s ease-in-out infinite 2s;
}

@keyframes letterFromLeft { 0% { transform: translateX(-100px) translateY(50px) rotate(-20deg); opacity: 0; } 100% { transform: translateX(0) translateY(0) rotate(0); opacity: 1; } }
@keyframes letterFromTop { 0% { transform: translateY(-100px) scale(0.5); opacity: 0; } 100% { transform: translateY(0) scale(1); opacity: 1; } }
@keyframes letterPopScale { 0% { transform: scale(0); opacity: 0; } 80% { transform: scale(1.3); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }
@keyframes letterFromBottom { 0% { transform: translateY(100px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes letterFromRight { 0% { transform: translateX(100px) rotate(20deg); opacity: 0; } 100% { transform: translateX(0) rotate(0); opacity: 1; } }
@keyframes letterFromSpin { 0% { transform: translateX(100px) translateY(-50px) rotate(45deg); opacity: 0; } 100% { transform: translateX(0) translateY(0) rotate(0); opacity: 1; } } 

@keyframes crownJumpIn {
    0% { transform: translateY(-120px) rotate(-45deg) scale(0.5); opacity: 0; }
    50% { transform: translateY(0) rotate(0) scale(1.1); opacity: 1; }
    70% { transform: translateY(-30px) rotate(15deg); }
    100% { transform: translateY(0) rotate(0) scale(1); opacity: 1; }
}

@keyframes continuousBounce {
    0%, 100% { transform: translateY(0) scaleY(1); }
    50% { transform: translateY(-6px) scaleY(1.03); }
}
@keyframes crownFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-3deg); }
}

.lb { animation: letterFromLeft 1s ease-out forwards, continuousBounce 3s ease-in-out infinite 1s; }
.li { animation: letterFromTop 1.2s ease-out forwards, continuousBounce 3.2s ease-in-out infinite 1.2s; }
.lp { animation: letterPopScale 1.4s ease-out forwards, continuousBounce 2.8s ease-in-out infinite 1.4s; }
.la { animation: letterFromBottom 1.1s ease-out forwards, continuousBounce 3.1s ease-in-out infinite 1.1s; }
.lr { animation: letterFromRight 1.3s ease-out forwards, continuousBounce 2.9s ease-in-out infinite 1.3s; }
.lt { animation: letterFromSpin 1.5s ease-out forwards, continuousBounce 3.3s ease-in-out infinite 1.5s; }

/* ==========================================
   SEARCH HERO (GOOGLE) 
========================================== */
.search-hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; flex-direction: column; padding-top: 100px; text-align: left;}
.search-bar { background: #fff; border-radius: 30px; padding: 15px 25px; display: flex; align-items: center; width: 100%; max-width: 600px; margin: 0 auto 30px auto; color: #000; font-size: 1.2rem; }
.search-bar i { margin-right: 15px; color: #5f6368; }
.search-text { font-family: monospace; }
.search-text::after { content: '|'; animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0; } }

.ai-overview { max-width: 800px; margin: 0 auto; margin-bottom: 40px; }
.ai-header { font-family: var(--font-heading); color: #fff; font-size: 1.1rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.ai-header i { color: #a8c7fa; font-size: 1.5rem; }
.ai-text { font-size: 1.2rem; line-height: 1.8; color: #e8eaed; }
.ai-text .highlight { background-color: rgba(66, 133, 244, 0.3); padding: 2px 8px; border-radius: 12px; color: #a8c7fa; }

.search-result { max-width: 800px; margin: 0 auto; }
.result-header { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
.result-icon { width: 40px; height: 40px; object-fit: contain; }
.result-url { display: flex; flex-direction: column; }
.url-title { font-size: 1rem; color: #fff; }
.url-link { font-size: 0.8rem; color: #bdc1c6; }
.result-title { font-size: 1.4rem; color: #8ab4f8; font-weight: 500; display: block; margin-bottom: 5px; }
.result-desc { font-size: 1rem; color: #bdc1c6; }


/* ==========================================
   TÍTULOS E DESCRIÇÕES
========================================== */
.category-main-title { font-size: 2.5rem; letter-spacing: 2px; text-transform: uppercase; text-align: center; filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
.section-title { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 1rem; }
.subsection-title { font-size: 1.5rem; font-weight: 500; color: #fff; margin-bottom: 20px;}

.title-png {
    display: block;
    width: auto;
    max-width: min(620px, 100%);
    height: 45px; 
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 42, 122, 0.35));
}

.section-description {
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ==========================================
   SEÇÃO "SOBRE MIM" DO VICTOR (LIMPA, SIMÉTRICA, SEM LED)
========================================== */
.about-flex-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.about-image-side {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glow PARADO e Elegante no fundo da foto do Victor */
.about-static-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--blue) 0%, var(--purple) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    opacity: 0.5;
}

.victor-img {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    z-index: 2;
}

/* Degradê perfeito para cobrir o corte, fundindo à exata cor do background (#0b0c10) */
.victor-fade-bottom {
    position: absolute;
    bottom: -2px; 
    left: 0;
    width: 100%;
    height: 50%; /* Altura maior para uma transição suave e não artificial */
    background: linear-gradient(to bottom, transparent 0%, #0b0c10 85%, #0b0c10 100%);
    z-index: 3;
    pointer-events: none;
}

/* Texto Limpo, SEM bordas ou caixas de LED azul girando */
.about-text-side {
    flex: 1;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--card-border); 
}

.about-greeting {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.about-text-content {
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ==========================================
   GALERIA LIMPA (CONVITES E TOPOS) - SEM CARDS
========================================== */
.gallery-clean-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px; 
}
.gallery-clean-item { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
}

.zoomable-img {
    width: 100%;
    max-width: 450px; 
    height: 500px; 
    object-fit: contain; /* Mostra a imagem inteira sempre */
    cursor: zoom-in; 
    transition: all 0.4s var(--transition);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
    border-radius: 12px;
}
.zoomable-img:hover {
    transform: translateY(-10px) scale(1.02);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.9));
}

.gallery-clean-info { 
    margin-top: 20px; 
    width: 100%; 
    max-width: 350px; 
}
.price-clean { 
    display: block; 
    font-family: var(--font-heading); 
    font-size: 1.4rem; 
    font-weight: 600; 
    margin-bottom: 15px; 
}

/* ==========================================
   MODAL LIGHTBOX (ZOOM)
========================================== */
.modal-lightbox {
    display: none; 
    position: fixed; 
    z-index: 10000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(5,5,7,0.95); 
    backdrop-filter: blur(8px); 
    overflow: hidden; 
}
.modal-lightbox-content {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    max-width: 90vw; 
    max-height: 90vh; 
    object-fit: contain; 
    border-radius: 8px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.8); 
    animation: zoomInModal 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
@keyframes zoomInModal { 
    from { transform: translate(-50%, -50%) scale(0.8); opacity: 0; } 
    to { transform: translate(-50%, -50%) scale(1); opacity: 1; } 
}
.close-modal {
    position: absolute; 
    top: 20px; 
    right: 35px; 
    color: #fff; 
    font-size: 40px; 
    font-weight: bold; 
    cursor: pointer; 
    transition: 0.3s; 
    z-index: 10001; 
}
.close-modal:hover { color: var(--pink); transform: scale(1.1); }

/* ==========================================
   CARDS PREMIUM (PARA KITS FESTA)
========================================== */
.card-3d { transform-style: preserve-3d; transform: perspective(1000px); }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-1 { display: grid; grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }

.product-card { 
    background: var(--card-bg); border-radius: 16px; overflow: hidden; 
    border: 1px solid rgba(255, 255, 255, 0.05); display: flex; flex-direction: column; 
    transition: box-shadow 0.3s;
}
.border-orange { border-top: 4px solid var(--orange); box-shadow: 0 10px 30px rgba(255, 121, 0, 0.1); }
.border-gray { border-top: 4px solid var(--gray); box-shadow: 0 10px 30px rgba(141, 153, 174, 0.1); }
.border-yellow { border-top: 4px solid var(--yellow); box-shadow: 0 10px 30px rgba(255, 234, 0, 0.15); }

.btn-wa-product {
    margin-top: 15px; background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.1);
    padding: 12px; border-radius: 8px; font-weight: 500; font-size: 0.95rem; text-align: center;
    transition: var(--transition); display: block; transform: translateZ(20px); 
}
.btn-wa-product:hover { background: var(--pink); border-color: var(--pink); }
.bg-purple-btn:hover { background: var(--purple); border-color: var(--purple); }
.border-gray-btn:hover { background: var(--blue); border-color: var(--blue); }

.card-text-only { padding: 25px 20px; }
.product-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px; }
.price-inline { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; }
.items-count { font-size: 0.95rem; font-weight: 600; margin-bottom: 12px; text-transform: uppercase; color: var(--text-main); }

.gold-card { background: linear-gradient(145deg, #1f1f2e, #111116); border: 1px solid var(--yellow); }
.grid-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.features { list-style: none; }
.features li { margin-bottom: 6px; font-size: 0.9rem; color: var(--text-muted); }

.alert-box { background: rgba(255, 234, 0, 0.05); border-left: 4px solid var(--yellow); padding: 15px 20px; border-radius: 0 12px 12px 0; margin: 0 auto 30px auto; max-width: 800px; display: flex; align-items: center; gap: 15px; }

/* ==========================================
   NOVA GALERIA DE AVULSOS (FORA DOS CARDS, COM ZOOM)
========================================== */
.gallery-clean-grid-4 { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
}
.gallery-clean-item { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
}

.avulso-zoom-img {
    width: 100%;
    height: 250px; /* Tamanho proporcional e harmônico para os itens avulsos */
    object-fit: contain;
    cursor: zoom-in;
    transition: all 0.4s var(--transition);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
    border-radius: 12px;
}
.avulso-zoom-img:hover {
    transform: translateY(-8px) scale(1.02);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8));
}
.avulso-title {
    display: block; 
    font-size: 1.1rem; 
    color: #fff; 
    margin-top: 10px;
    margin-bottom: 5px;
}

/* ==========================================
   ANIMAÇÕES REVEAL
========================================== */
.zoom-on-scroll { opacity: 0; transform: scale(0.9) translateY(40px); transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.zoom-on-scroll.show { opacity: 1; transform: scale(1) translateY(0); }
.delay-0 { transition-delay: 0s; } .delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; }

/* ==========================================
   FOOTER E CTA (TAGS)
========================================== */
.contact-links-box { display: flex; flex-direction: column; gap: 15px; max-width: 400px; margin: 30px auto; }
.contact-tag { padding: 15px; border-radius: 8px; font-weight: bold; color: #fff; display: flex; align-items: center; justify-content: center; gap: 10px; transition: var(--transition); }
.contact-tag:hover { transform: scale(1.05); }
.bg-green { background: var(--green); color: #000; }
.bg-gradient-insta { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.bg-gradient-mail { background: linear-gradient(45deg, #ea4335, #fbbc05); }

footer { background-color: #050508; padding: 40px 0 20px; position: relative; z-index: 10; border-top: 1px solid rgba(255,255,255,0.02);}

/* ==========================================================
   MOBILE (OVERFLOW RIGOROSAMENTE CORRIGIDO)
========================================================== */
@media (max-width: 768px) {
    /* Menu lateral mobile agora usa fixed inves de espremer o body */
    nav { position: fixed; top: 80px; left: -100vw; width: 100vw; height: calc(100vh - 80px); background-color: rgba(11,12,16,0.98); transition: left 0.4s var(--transition); z-index: 999; }
    nav.active { left: 0; }
    nav ul { flex-direction: column; text-align: center; padding: 20px 0; gap: 0; }
    nav ul li { margin: 15px 0; }
    .menu-toggle { display: block; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); z-index: 1100;}

    /* Ajuste Logo Animado Mobile */
    .main-logo-animation { height: 100px; margin-bottom: 25px; margin-top: 10px;}
    .anim-letter { height: 55px; }
    .anim-crown { width: 45px; margin-left: -22px; margin-bottom: -5px;}

    /* Galeria Limpa com 1 coluna no celular */
    .gallery-clean-grid { grid-template-columns: 1fr; gap: 40px; }
    .zoomable-img { height: auto; max-height: 80vh; }

    /* Galeria Limpa Itens Avulsos (2 colunas no mobile) */
    .gallery-clean-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .avulso-zoom-img { height: 150px; }

    /* Layout Sobre Mim: foto em cima, texto em baixo */
    .about-flex-container { flex-direction: column; text-align: center; gap: 20px; }
    .about-static-glow { width: 200px; height: 200px; }
    .about-text-side { padding: 25px 20px; } 

    /* Força os Grids de Kits para 2 Colunas */
    .grid-3 { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px !important; }

    .title-png { height: 30px; }
    .section-description { font-size: 0.95rem; margin-bottom: 30px; padding: 0 10px; }
    .category-main-title { font-size: 2.2rem; }
    .search-title { font-size: 2.5rem; }
    .search-bar { font-size: 1rem; padding: 12px 20px; max-width: 90vw;}
    .ai-text { font-size: 1rem; }

    .product-card { border-radius: 12px; }
    .features li { font-size: 0.7rem; margin-bottom: 3px; gap: 4px; }
    .btn-wa-product { font-size: 0.75rem; padding: 8px; margin-top: 10px; }
    .card-text-only { padding: 12px 8px; }
    .product-header { flex-direction: column; gap: 4px; margin-bottom: 6px; padding-bottom: 4px; }
    .price-inline { font-size: 0.9rem; }
    .items-count { font-size: 0.65rem; margin-bottom: 6px; }
    .grid-features { grid-template-columns: 1fr; gap: 4px; }
    
    .sticker { width: 50px !important; opacity: 0.4;}
}