/*
Theme Name: Leeds Negócios Digitais
Theme URI: https://leedsdigital.com.br
Author: Leeds Negócios Digitais
Author URI: https://leedsdigital.com.br
Description: Tema FSE para Leeds Negócios Digitais — consultoria em tecnologia, automação com IA e gestão de produto.
Version: 1.0.0
Requires at least: 6.3
Tested up to: 6.7
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: vuker-leeds
Tags: full-site-editing, block-theme, dark, glassmorphism
*/

/* Leeds Negócios Digitais — VUKER Theme */
:root {
    --leeds-bg: #0a0a1a;
    --leeds-dark: #1a1a3e;
    --leeds-primary: #4f46e5;
    --leeds-accent: #06b6d4;
    --leeds-text: #ffffff;
    --leeds-text-muted: rgba(255,255,255,0.7);
    --leeds-glass: rgba(255,255,255,0.05);
    --leeds-glass-border: rgba(255,255,255,0.1);
    --leeds-radius: 16px;
    --leeds-radius-sm: 8px;
}

body {
    background-color: var(--leeds-bg);
    color: var(--leeds-text);
    font-family: 'Inter', sans-serif;
}

.vuker-glass {
    background: var(--leeds-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--leeds-glass-border);
    border-radius: var(--leeds-radius);
}

.vuker-glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--leeds-primary) 0%, transparent 70%);
    opacity: 0.25;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.vuker-glow-orb--accent {
    background: radial-gradient(circle, var(--leeds-accent) 0%, transparent 70%);
}

.vuker-reveal {
    opacity: 1; /* GSAP controla a animação via gsap.from() — não esconder via CSS */
}

.leeds-btn-primary {
    background: var(--leeds-primary);
    color: var(--leeds-text);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.leeds-btn-primary:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

.leeds-btn-outline {
    border: 2px solid var(--leeds-accent);
    color: var(--leeds-accent);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.leeds-btn-outline:hover {
    background: var(--leeds-accent);
    color: var(--leeds-bg);
}

section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--leeds-text-muted);
    max-width: 600px;
    margin-bottom: 48px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    section { padding: 60px 16px; }
}

@media (max-width: 480px) {
    section { padding: 48px 16px; }
}
