
        :root {
            --primary-gradient: linear-gradient(135deg, #6e8efb, #a777e3);
            --secondary-gradient: linear-gradient(135deg, #4facfe, #00f2fe);
            --success-gradient: linear-gradient(135deg, #43e97b, #38f9d7);
            --danger-gradient: linear-gradient(135deg, #ff758c, #ff7eb3);
            --warning-gradient: linear-gradient(135deg, #ff9a9e, #fad0c4);
            --info-gradient: linear-gradient(135deg, #a18cd1, #fbc2eb);
            --dark-gradient: linear-gradient(135deg, #4b6cb7, #182848);
            --btn-gradient: linear-gradient(135deg, #5a5a5a, #2a2a2a);
            --btn-hover-gradient: linear-gradient(135deg, #8b0000, #2a2a2a);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f5f7fa;
            min-height: 100vh;
            padding: 20px;
            background-image: radial-gradient(circle at 10% 20%, rgba(91, 173, 254, 0.1) 0%, rgba(245, 247, 250, 1) 90%);
        }
        
        .header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .title-box {
            display: inline-block;
            background: var(--primary-gradient);
            color: white;
            padding: 1rem 2rem;
            border-radius: 20px;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(110, 142, 251, 0.3);
            position: relative;
            overflow: hidden;
            font-size: clamp(1.5rem, 4vw, 2rem);
        }
        
        .title-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
            transform: rotate(30deg);
            z-index: -1;
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%) rotate(30deg); }
            100% { transform: translateX(100%) rotate(30deg); }
        }
        
        .search-container {
            margin: 20px auto;
            width: 100%;
            max-width: 600px;
        }
        
        .search-container input {
            width: 100%;
            padding: 12px 20px;
            border: none;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            font-size: 1rem;
            transition: all 0.3s;
            background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E") no-repeat 15px center;
            padding-left: 45px;
        }
        
        .search-container input:focus {
            outline: none;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }
        
        .tools-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .tool-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            border: none;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .tool-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .tool-icon {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .tool-icon i {
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .tool-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
            z-index: 1;
        }
        
        .tool-body {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .tool-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #2c3e50;
            font-size: 1.1rem;
        }
        
        .wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23000000"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23000000"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23000000"/></svg>');
            background-size: cover;
            opacity: 0.05;
            animation: wave 8s linear infinite;
        }
        
        @keyframes wave {
            0% { background-position-x: 0; }
            100% { background-position-x: 1200px; }
        }
        
        .btn-back {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--btn-gradient);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 10px 20px;
            font-weight: 500;
            transition: all 0.3s;
            text-decoration: none;
            margin-top: 30px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .btn-back:hover {
            background: var(--btn-hover-gradient);
            transform: translateX(-3px);
        }
        
       /* ======================
   CATEGORIAS DE FERRAMENTAS 
   ====================== */

/* Cores baseadas nas variáveis existentes */
.cat-conversor { background: var(--secondary-gradient); }
.cat-calculadora { background: var(--success-gradient); }
.cat-imagem { background: var(--danger-gradient); }
.cat-documentos { background: var(--warning-gradient); }
.cat-internet { background: var(--info-gradient); }
.cat-financeiro { background: var(--primary-gradient); }
.cat-utilidades { background: var(--dark-gradient); }

/* Novas categorias com cores harmonizadas */
.cat-audiovideo { 
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    --category-btn-color: #8E2DE2;
}
.cat-saude { 
    background: linear-gradient(135deg, #FF416C, #FF4B2B);
    --category-btn-color: #FF416C;
}
.cat-seguranca { 
    background: linear-gradient(135deg, #0F2027, #203A43);
    --category-btn-color: #0F2027;
}
.cat-empresarial { 
    background: linear-gradient(135deg, #1A2980, #26D0CE);
    --category-btn-color: #1A2980;
}
.cat-entretenimento { 
    background: linear-gradient(135deg, #FF9A9E, #FAD0C4);
    --category-btn-color: #FF9A9E;
}
.cat-office { 
    background: linear-gradient(135deg, #D31027, #EA384D);
    --category-btn-color: #D31027;
}
.cat-ciencia { 
    background: linear-gradient(135deg, #614385, #516395);
    --category-btn-color: #614385;
}
.cat-utilitarios { 
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    --category-btn-color: #43e97b;
}

/* ======================
   BOTÕES DE CATEGORIA 
   ====================== */

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 25px auto;
    flex-wrap: wrap;
    max-width: 1200px;
    padding: 0 20px;
}

.category-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c3e50;
    background: #f1f1f1;
}

/* Estilo para botões ativos */
.category-btn.active {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

/* Cores específicas para cada botão de categoria */
.category-btn.cat-conversor.active { background: var(--secondary-gradient); }
.category-btn.cat-calculadora.active { background: var(--success-gradient); }
.category-btn.cat-imagem.active { background: var(--danger-gradient); }
.category-btn.cat-documentos.active { background: var(--warning-gradient); }
.category-btn.cat-internet.active { background: var(--info-gradient); }
.category-btn.cat-financeiro.active { background: var(--primary-gradient); }
.category-btn.cat-utilidades.active { background: var(--dark-gradient); }
.category-btn.cat-audiovideo.active { background: linear-gradient(135deg, #8E2DE2, #4A00E0); }
.category-btn.cat-saude.active { background: linear-gradient(135deg, #FF416C, #FF4B2B); }
.category-btn.cat-seguranca.active { background: linear-gradient(135deg, #0F2027, #203A43); }
.category-btn.cat-empresarial.active { background: linear-gradient(135deg, #1A2980, #26D0CE); }
.category-btn.cat-entretenimento.active { background: linear-gradient(135deg, #FF9A9E, #FAD0C4); }
.category-btn.cat-office.active { background: linear-gradient(135deg, #D31027, #EA384D); }
.category-btn.cat-ciencia.active { background: linear-gradient(135deg, #614385, #516395); }
.category-btn.cat-utilitarios.active { background: linear-gradient(135deg, #43e97b, #38f9d7); }

/* Efeito hover para todos os botões */
.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Ícones nos botões */
.category-btn i {
    font-size: 0.9em;
}

/* Botão "Todos" especial */
.category-btn.all {
    background: #e0e0e0;
}
.category-btn.all.active {
    background: linear-gradient(135deg, #5a5a5a, #2a2a2a);
    color: white;
}

/* ======================
   RESPONSIVIDADE 
   ====================== */

@media (max-width: 992px) {
    .category-buttons {
        gap: 10px;
    }
    .category-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .category-buttons {
        gap: 8px;
    }
    .category-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .category-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .category-btn {
        flex: 0 0 auto;
    }
}
.tool-body {
    background: white !important; /* Força o fundo branco */
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 15px 15px; /* Arredonda apenas as bordas inferiores */
}