      /* <!-- MIT License

Copyright (c) 2025 Ismael Vitor da Silva

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. --> */
  
/* --- CORES E VARIÁVEIS --- */
                /* --- CORES E VARIÁVEIS --- */
        :root {
            --primary: #111827;
            --accent: #10b981; 
            --bg-body: #f8fafc;
            --text-main: #1e293b;
            --text-light: #64748b;
            
            --telegram-grad: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
            --instagram-grad: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            --twitter-grad: linear-gradient(135deg, #000000 0%, #292929 100%); 
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-main);
            padding-bottom: 100px;
            -webkit-font-smoothing: antialiased;
        }

        img { max-width: 100%; display: block; }
        a { text-decoration: none; transition: all 0.3s ease; }
        a:active { transform: scale(0.95); }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* --- HEADER --- */
        header {
            background: rgba(255, 255, 255, 0.90);
            backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            padding: 15px 0;
        }

        .nav-center {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .mini-logo {
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .mini-logo i { color: var(--accent); }

        /* --- HERO --- */
        .hero {
            text-align: center;
            padding: 3rem 1rem 4rem 1rem;
            background: linear-gradient(180deg, #e0f2fe 0%, #f8fafc 100%);
            border-bottom-left-radius: 40px;
            border-bottom-right-radius: 40px;
            margin-bottom: 3rem;
        }

        .mascot-hero {
            width: 160px;
            height: auto;
            margin: 0 auto 15px auto;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-12px); }
            100% { transform: translateY(0px); }
        }

        .hero h1 {
            font-size: 1.8rem;
            line-height: 1.2;
            margin-bottom: 0.8rem;
            color: #0f172a;
            font-weight: 800;
        }

        .hero p {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- BOTÕES (CTA) --- */
        .cta-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            width: 100%;
            max-width: 380px;
            margin: 0 auto;
        }

        .cta-big {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: white;
            font-weight: 700;
            font-size: 1rem;
            padding: 16px 20px;
            border-radius: 50px;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .cta-big::after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: 0.6s;
        }
        .cta-big:hover::after { left: 100%; }
        .cta-big:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }

        .cta-telegram { background: var(--telegram-grad); box-shadow: 0 8px 20px rgba(34, 158, 217, 0.35); }
        .cta-instagram { background: var(--instagram-grad); box-shadow: 0 8px 20px rgba(220, 39, 67, 0.35); }
        .cta-twitter   { background: var(--twitter-grad); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35); }

        .cta-big i { font-size: 1.3rem; }

        /* --- CLASSE PARA O ÍCONE DO FLATICON --- */
        .flaticon-icon {
            width: 24px;
            height: 24px;
            /* O filtro abaixo inverte a cor preta do ícone para BRANCO */
            filter: brightness(0) invert(1); 
            display: block;
        }

        /* --- PRODUTOS --- */
        .products-title {
            text-align: center;
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-transform: uppercase;
            color: var(--text-main);
        }
        .products-title span { color: var(--accent); }

        .products-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            padding-bottom: 2rem;
        }

        @media(min-width: 600px) {
            .products-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
            .mascot-hero { width: 200px; }
            .hero h1 { font-size: 2.2rem; }
        }

        .product-card {
            background: white;
            border-radius: 16px;
            padding: 15px;
            border: 1px solid #f1f5f9;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover { 
            transform: translateY(-5px); 
            box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1); 
        }

        .badge-off {
            position: absolute;
            top: 15px; left: 15px;
            background: #ef4444;
            color: white;
            font-weight: 700;
            font-size: 0.75rem;
            padding: 4px 8px;
            border-radius: 6px;
            z-index: 10;
        }

        .prod-img {
            height: 180px;
            width: 100%;
            object-fit: contain;
            margin-bottom: 15px;
            transition: transform 0.3s;
        }
        .product-card:hover .prod-img { transform: scale(1.05); }

        .prod-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.4;
            height: 44px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .price-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .old { text-decoration: line-through; color: #94a3b8; font-size: 0.85rem; }
        .new { color: var(--accent); font-weight: 800; font-size: 1.4rem; }

        .btn-buy {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 12px;
            background: var(--text-main);
            color: white;
            font-weight: 600;
            border-radius: 10px;
            transition: 0.2s;
        }
        .btn-buy:hover { background: #334155; }

        /* --- FAB (BOTÕES FLUTUANTES) --- */
        .fab-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            z-index: 999;
        }

        .fab {
            width: 56px;
            height: 56px;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.25);
            transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid rgba(255,255,255,0.2);
        }

        .fab:hover { transform: scale(1.15); }
        
        .fab-tg { background: var(--telegram-grad); }
        .fab-ig { background: var(--instagram-grad); }
        .fab-x  { background: var(--twitter-grad); }
        
        /* Ajuste do ícone de imagem dentro do FAB se necessário */
        .fab .flaticon-icon { width: 28px; height: 28px; }

        /* --- RODAPÉ --- */
        footer {
            text-align: center;
            padding: 30px 10px;
            color: #94a3b8;
            font-size: 0.8rem;
            margin-top: 40px;
            background: #fff;
            border-top: 1px solid #f1f5f9;
        }