/* ========================================
   Wagner Danielli - Portal Premium v2
   Design profissional inspirado em SaaS
   ======================================== */

:root {
    /* Core */
    --wd-bg: #020617;
    --wd-bg-elevated: #0b1221;
    --wd-surface: #0f172a;
    --wd-surface-2: #1e293b;
    --wd-surface-3: #334155;
    --wd-border: rgba(148, 163, 184, 0.12);
    --wd-border-strong: rgba(148, 163, 184, 0.22);
    --wd-text: #f8fafc;
    --wd-text-secondary: #e2e8f0;
    --wd-muted: #94a3b8;
    --wd-muted-dim: #64748b;

    /* Brand */
    --wd-primary: #0ea5e9;
    --wd-primary-light: #38bdf8;
    --wd-primary-glow: rgba(14, 165, 233, 0.35);
    --wd-secondary: #2dd4bf;
    --wd-secondary-glow: rgba(45, 212, 191, 0.35);
    --wd-accent: #22d3ee;
    --wd-success: #22c55e;
    --wd-warning: #f59e0b;

    /* Radius */
    --wd-radius-sm: 0.5rem;
    --wd-radius: 0.875rem;
    --wd-radius-lg: 1.25rem;
    --wd-radius-xl: 1.5rem;
    --wd-radius-full: 9999px;

    /* Shadows */
    --wd-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
    --wd-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.35), 0 2px 4px -2px rgba(0, 0, 0, 0.35);
    --wd-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.45), 0 4px 6px -4px rgba(0, 0, 0, 0.45);
    --wd-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
    --wd-shadow-glow: 0 0 40px rgba(14, 165, 233, 0.15);
    --wd-shadow-glow-sm: 0 0 20px rgba(14, 165, 233, 0.12);

    /* Transitions */
    --wd-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--wd-bg);
    color: var(--wd-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Navbar Premium
   ======================================== */
.wd-navbar {
    background: rgba(2, 6, 23, 0.72);
    border-bottom: 1px solid var(--wd-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
    padding-bottom: 0.9rem;
    transition: var(--wd-transition);
}

.wd-navbar.scrolled {
    background: rgba(2, 6, 23, 0.9);
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    box-shadow: var(--wd-shadow);
}

.wd-navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    letter-spacing: -0.02em;
}

.wd-navbar .navbar-brand img {
    height: 120px;
    width: auto;
    border-radius: 16px;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.55));
    transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}

.wd-navbar .navbar-brand img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 8px 28px rgba(0,0,0,0.7));
}

.wd-logo-img {
    height: 120px;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.3);
}

.wd-logo-img-footer {
    height: 100px;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(14, 165, 233, 0.28);
}

.wd-navbar .nav-link {
    color: var(--wd-muted);
    font-weight: 500;
    font-size: 0.93rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--wd-radius-sm);
    transition: var(--wd-transition);
    position: relative;
}

.wd-navbar .nav-link:hover,
.wd-navbar .nav-link:focus,
.wd-navbar .nav-link.active {
    color: var(--wd-text);
    background: rgba(255,255,255,0.04);
}

.wd-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: linear-gradient(90deg, var(--wd-primary), var(--wd-secondary));
    border-radius: 2px;
}

.wd-navbar .btn-login {
    color: var(--wd-text);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    border-radius: var(--wd-radius-full);
    border: 1.5px solid var(--wd-border-strong);
    background: transparent;
    transition: var(--wd-transition);
}

.wd-navbar .btn-login:hover {
    border-color: var(--wd-primary);
    color: var(--wd-primary-light);
    background: rgba(14, 165, 233, 0.08);
}

.wd-navbar .btn-cta {
    background: linear-gradient(135deg, var(--wd-primary) 0%, var(--wd-secondary) 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.35rem;
    border-radius: var(--wd-radius-full);
    border: none;
    transition: var(--wd-transition);
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}

.wd-navbar .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
    color: #fff;
}

.wd-navbar .form-search {
    position: relative;
}

.wd-navbar .form-search input {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--wd-border-strong);
    color: var(--wd-text);
    border-radius: var(--wd-radius-full);
    padding-left: 1.1rem;
    padding-right: 2.6rem;
    font-size: 0.9rem;
    width: 190px;
    transition: var(--wd-transition);
}

.wd-navbar .form-search input:focus {
    background: rgba(255,255,255,0.07);
    border-color: var(--wd-primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
    width: 240px;
}

.wd-navbar .form-search input::placeholder {
    color: var(--wd-muted-dim);
}

.wd-navbar .form-search button {
    position: absolute;
    right: 0.3rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--wd-muted);
    padding: 0.4rem 0.7rem;
    border-radius: 50%;
    transition: color 0.2s;
}

.wd-navbar .form-search button:hover {
    color: var(--wd-text);
}

.navbar-toggler {
    border-color: var(--wd-border-strong);
    padding: 0.45rem 0.7rem;
    border-radius: var(--wd-radius-sm);
}

.navbar-toggler-icon {
    filter: invert(1);
    opacity: 0.85;
}

/* ========================================
   Hero Premium v2
   ======================================== */
.wd-hero {
    position: relative;
    background:
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(14, 165, 233, 0.18), transparent),
        radial-gradient(ellipse 60% 40% at 80% 10%, rgba(99, 102, 241, 0.14), transparent),
        linear-gradient(180deg, var(--wd-bg) 0%, var(--wd-bg-elevated) 100%);
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.wd-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (max-width: 991.98px) {
    .wd-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
}

.wd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.25);
    color: var(--wd-primary-light);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: var(--wd-radius-full);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(14, 165, 233, 0.1);
}

.wd-hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.35rem;
    letter-spacing: -0.03em;
}

.wd-hero-title .text-gradient {
    background: linear-gradient(135deg, var(--wd-primary-light) 0%, var(--wd-secondary) 55%, var(--wd-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wd-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--wd-muted);
    max-width: 560px;
    margin-bottom: 2.25rem;
    line-height: 1.65;
}

.wd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 991.98px) {
    .wd-hero-actions {
        justify-content: center;
    }
}

.btn-wd-primary {
    background: linear-gradient(135deg, var(--wd-primary) 0%, var(--wd-secondary) 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.95rem 2.2rem;
    border-radius: var(--wd-radius-full);
    transition: var(--wd-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
}

.btn-wd-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(14, 165, 233, 0.5);
    color: #fff;
}

.btn-wd-outline {
    border: 1.5px solid var(--wd-border-strong);
    color: var(--wd-text);
    background: transparent;
    border-radius: var(--wd-radius-full);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.95rem 2.2rem;
    transition: var(--wd-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.btn-wd-outline:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--wd-primary);
    color: var(--wd-primary-light);
}

.wd-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
}

@media (max-width: 991.98px) {
    .wd-hero-trust {
        justify-content: center;
    }
}

.wd-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--wd-muted);
    font-size: 0.92rem;
    font-weight: 500;
}

.wd-trust-item i {
    color: var(--wd-success);
    font-size: 1.1rem;
}

/* Hero visual card */
.wd-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wd-visual-card {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid var(--wd-border-strong);
    border-radius: var(--wd-radius-xl);
    padding: 2rem;
    width: 100%;
    max-width: 480px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--wd-shadow-xl), var(--wd-shadow-glow-sm);
    position: relative;
    overflow: hidden;
}

.wd-visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 0% 0%, rgba(14, 165, 233, 0.12), transparent 60%);
    pointer-events: none;
}

.wd-visual-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.wd-visual-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.wd-visual-dot.red { background: #ef4444; }
.wd-visual-dot.yellow { background: #f59e0b; }
.wd-visual-dot.green { background: #22c55e; }

.wd-visual-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: var(--wd-radius);
    margin-bottom: 0.75rem;
    border: 1px solid var(--wd-border);
    transition: var(--wd-transition);
}

.wd-visual-row:hover {
    background: rgba(255,255,255,0.06);
    transform: translateX(4px);
}

.wd-visual-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--wd-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.wd-visual-icon.blue { background: rgba(14, 165, 233, 0.12); color: var(--wd-primary-light); }
.wd-visual-icon.purple { background: rgba(99, 102, 241, 0.12); color: #a5b4fc; }
.wd-visual-icon.cyan { background: rgba(34, 211, 238, 0.12); color: var(--wd-accent); }

.wd-visual-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: var(--wd-text);
}

.wd-visual-info p {
    font-size: 0.8rem;
    color: var(--wd-muted);
    margin-bottom: 0;
}

.wd-visual-progress {
    height: 5px;
    background: var(--wd-surface-2);
    border-radius: 3px;
    margin-top: 0.75rem;
    overflow: hidden;
}

.wd-visual-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--wd-primary), var(--wd-secondary));
    border-radius: 3px;
}

/* Hero floating decorations */
.wd-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.wd-hero-glow.glow-1 {
    width: 300px;
    height: 300px;
    background: var(--wd-primary);
    top: 10%;
    right: 5%;
}

.wd-hero-glow.glow-2 {
    width: 220px;
    height: 220px;
    background: var(--wd-secondary);
    bottom: 15%;
    right: 25%;
}

/* ========================================
   Stats Bar
   ======================================== */
.wd-stats-bar {
    background: linear-gradient(90deg, rgba(14,165,233,0.08), rgba(99,102,241,0.08));
    border-top: 1px solid var(--wd-border);
    border-bottom: 1px solid var(--wd-border);
    padding: 2.5rem 0;
}

.wd-stat {
    text-align: center;
}

.wd-stat-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.35rem;
    background: linear-gradient(135deg, #fff 0%, var(--wd-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wd-stat-label {
    color: var(--wd-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ========================================
   Section Headers
   ======================================== */
.wd-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.wd-section-label {
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    color: var(--wd-primary-light);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: var(--wd-radius-full);
    margin-bottom: 0.75rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.wd-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.9rem;
    letter-spacing: -0.02em;
}

.wd-section-desc {
    color: var(--wd-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   Cards Premium
   ======================================== */
.wd-card {
    background: var(--wd-surface);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-lg);
    transition: var(--wd-transition);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.wd-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

.wd-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.35);
    box-shadow: var(--wd-shadow-lg), var(--wd-shadow-glow-sm);
}

.wd-card .card-img-top {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wd-card:hover .card-img-top {
    transform: scale(1.06);
}

.wd-card .card-body {
    padding: 1.6rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.wd-card .card-title {
    color: var(--wd-text);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 0.7rem;
}

.wd-card .card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.wd-card .card-title a:hover {
    color: var(--wd-primary-light);
}

.wd-card .card-text {
    color: var(--wd-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.4rem;
}

.wd-card .card-footer {
    background: transparent;
    border-top: 1px solid var(--wd-border);
    padding: 1rem 1.6rem;
    color: var(--wd-muted-dim);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wd-card .card-header {
    background: var(--wd-surface-2);
    border-bottom: 1px solid var(--wd-border);
    color: var(--wd-text);
    font-weight: 700;
    padding: 1.1rem 1.6rem;
    font-size: 1.05rem;
}

/* Badges */
.badge-wd {
    background: var(--wd-surface-2);
    color: var(--wd-text);
    border: 1px solid var(--wd-border-strong);
    font-weight: 600;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.4em 0.85em;
    border-radius: var(--wd-radius-sm);
}

.badge-wd-primary {
    background: rgba(14, 165, 233, 0.12);
    color: var(--wd-primary-light);
    border: 1px solid rgba(14, 165, 233, 0.25);
}

/* ========================================
   Category Cards
   ======================================== */
.wd-category-card {
    background: var(--wd-surface);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-lg);
    padding: 2rem 1.25rem;
    text-align: center;
    transition: var(--wd-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.wd-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wd-primary), var(--wd-secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.wd-category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, 0.35);
    box-shadow: var(--wd-shadow-lg), var(--wd-shadow-glow-sm);
}

.wd-category-card:hover::before {
    opacity: 1;
}

.wd-category-card .cat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.1rem;
    background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(99,102,241,0.12));
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--wd-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wd-primary-light);
    font-size: 1.6rem;
    transition: var(--wd-transition);
}

.wd-category-card:hover .cat-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.2);
}

.wd-category-card h3 {
    color: var(--wd-text);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.wd-category-card p {
    color: var(--wd-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ========================================
   Download Groups & Items
   ======================================== */
.wd-download-group-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--wd-border);
}

.wd-download-group-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.wd-download-group-count {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--wd-muted);
    background: var(--wd-surface);
    border: 1px solid var(--wd-border);
    padding: 0.2rem 0.6rem;
    border-radius: var(--wd-radius-full);
}

.wd-download-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.wd-download-item {
    background: var(--wd-surface);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius);
    padding: 1.25rem 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: var(--wd-transition);
}

.wd-download-item:hover {
    background: var(--wd-surface-2);
    border-color: rgba(14, 165, 233, 0.35);
    transform: translateX(4px);
}

.wd-download-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--wd-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wd-primary-light);
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: var(--wd-transition);
}

.wd-download-item:hover .wd-download-icon {
    background: rgba(14, 165, 233, 0.18);
    transform: scale(1.1);
}

.wd-download-body {
    flex: 1 1 auto;
    min-width: 0;
}

.wd-download-title {
    color: var(--wd-text);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.wd-download-desc {
    color: var(--wd-muted);
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
}

.wd-download-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.wd-download-badge {
    background: rgba(14, 165, 233, 0.12);
    color: var(--wd-primary-light);
    border: 1px solid rgba(14, 165, 233, 0.25);
    padding: 0.15rem 0.45rem;
    border-radius: var(--wd-radius-sm);
    font-weight: 600;
    text-transform: uppercase;
}

.wd-download-size {
    color: var(--wd-muted);
}

.wd-download-count {
    color: var(--wd-muted-dim);
}

.wd-download-btn {
    flex-shrink: 0;
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
}

/* Sidebar categories */
.wd-category-list li + li {
    border-top: 1px solid var(--wd-border);
}

.wd-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.1rem;
    color: var(--wd-text);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--wd-transition);
}

.wd-category-link:hover {
    background: var(--wd-surface-2);
    color: var(--wd-primary-light);
}

.wd-category-badge {
    background: var(--wd-surface-2);
    color: var(--wd-muted);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.45rem;
    border-radius: var(--wd-radius-full);
    border: 1px solid var(--wd-border);
}

.wd-category-link:hover .wd-category-badge {
    background: var(--wd-surface);
    color: var(--wd-primary-light);
    border-color: rgba(14, 165, 233, 0.3);
}

@media (max-width: 991.98px) {
    .wd-download-item {
        flex-wrap: wrap;
    }
    .wd-download-btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Legacy compatibility for home page download cards */
.wd-download-item .download-info h4 {
    color: var(--wd-text);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.wd-download-item .download-info p {
    color: var(--wd-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.wd-download-item .download-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--wd-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wd-primary-light);
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: var(--wd-transition);
}

.wd-download-item:hover .download-icon {
    background: rgba(14, 165, 233, 0.18);
    transform: scale(1.1);
}

/* ========================================
   Breadcrumb
   ======================================== */
.wd-breadcrumb {
    background: var(--wd-surface);
    border-bottom: 1px solid var(--wd-border);
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.wd-breadcrumb .breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.wd-breadcrumb .breadcrumb-item a {
    color: var(--wd-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.wd-breadcrumb .breadcrumb-item a:hover {
    color: var(--wd-primary-light);
}

.wd-breadcrumb .breadcrumb-item.active {
    color: var(--wd-text);
    font-weight: 500;
}

.wd-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: var(--wd-muted-dim);
}

/* ========================================
   Post content
   ======================================== */
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--wd-radius);
    border: 1px solid var(--wd-border);
}

.post-content h2,
.post-content h3,
.post-content h4 {
    color: var(--wd-text);
    margin-top: 2.75rem;
    margin-bottom: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.post-content p {
    line-height: 1.85;
    margin-bottom: 1.35rem;
    color: var(--wd-text-secondary);
}

.post-content pre {
    background: var(--wd-surface-2);
    color: var(--wd-text);
    padding: 1.35rem;
    border-radius: var(--wd-radius);
    overflow-x: auto;
    border: 1px solid var(--wd-border);
    font-size: 0.9rem;
}

.post-content code {
    background: var(--wd-surface-2);
    color: var(--wd-primary-light);
    padding: .25rem .5rem;
    border-radius: var(--wd-radius-sm);
    font-size: 0.9em;
    font-weight: 500;
}

.post-content a {
    color: var(--wd-primary-light);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
    font-weight: 500;
}

.post-content a:hover {
    border-bottom-color: var(--wd-primary-light);
}

.post-content blockquote {
    border-left: 4px solid var(--wd-primary);
    padding: 1.25rem 1.75rem;
    margin: 1.75rem 0;
    background: var(--wd-surface);
    border-radius: 0 var(--wd-radius) var(--wd-radius) 0;
    color: var(--wd-muted);
    font-style: italic;
}

.post-content iframe {
    max-width: 100%;
    border-radius: var(--wd-radius);
    border: 1px solid var(--wd-border);
}

/* ========================================
   Sidebar
   ======================================== */
.wd-sidebar .card {
    background: var(--wd-surface);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-lg);
    overflow: hidden;
}

.wd-sidebar .card-header {
    background: var(--wd-surface-2);
    border-bottom: 1px solid var(--wd-border);
    color: var(--wd-text);
    font-weight: 700;
    padding: 1.1rem 1.35rem;
}

.wd-sidebar .list-group-item {
    background: transparent;
    border-color: var(--wd-border);
    color: var(--wd-text);
    padding: 0.95rem 1.35rem;
}

.wd-sidebar .list-group-item a {
    color: var(--wd-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.wd-sidebar .list-group-item a:hover {
    color: var(--wd-primary-light);
}

/* ========================================
   Pagination
   ======================================== */
.pagination {
    flex-wrap: wrap;
    gap: .25rem;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    background: var(--wd-surface);
    border-color: var(--wd-border);
    color: var(--wd-text);
    border-radius: var(--wd-radius-sm);
    padding: .35rem .55rem;
    font-size: .85rem;
    min-width: 2rem;
    text-align: center;
    margin: 0 0.25rem;
    padding: 0.55rem 1rem;
    font-weight: 500;
    transition: var(--wd-transition);
}

.pagination .page-link:hover {
    background: var(--wd-surface-2);
    border-color: var(--wd-border-strong);
    color: var(--wd-primary-light);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--wd-primary) 0%, var(--wd-secondary) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.35);
}

.pagination .page-item.disabled .page-link {
    background: var(--wd-surface);
    border-color: var(--wd-border);
    color: var(--wd-muted-dim);
}

/* ========================================
   Footer Premium
   ======================================== */
.wd-footer {
    background:
        radial-gradient(ellipse 80% 30% at 50% 100%, rgba(14, 165, 233, 0.08), transparent),
        var(--wd-surface);
    border-top: 1px solid var(--wd-border);
    color: var(--wd-muted);
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    margin-top: auto;
}

.wd-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.wd-footer-brand img {
    height: 100px;
    width: auto;
    border-radius: 16px;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45));
}

.wd-footer-desc {
    max-width: 320px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.wd-footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.4rem;
}

.wd-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wd-footer-links li {
    margin-bottom: 0.75rem;
}

.wd-footer-links a {
    color: var(--wd-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--wd-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.wd-footer-links a:hover {
    color: var(--wd-primary-light);
    transform: translateX(3px);
}

.wd-footer-bottom {
    border-top: 1px solid var(--wd-border);
    margin-top: 3.5rem;
    padding-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--wd-muted-dim);
}

.wd-footer-social {
    display: flex;
    gap: 0.6rem;
}

.wd-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--wd-surface-2);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-sm);
    color: var(--wd-muted);
    transition: var(--wd-transition);
    text-decoration: none;
    font-size: 1.1rem;
}

.wd-footer-social a:hover {
    background: linear-gradient(135deg, var(--wd-primary) 0%, var(--wd-secondary) 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.35);
}

/* ========================================
   Forms
   ======================================== */
.form-control {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--wd-border-strong);
    color: var(--wd-text);
    border-radius: var(--wd-radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--wd-transition);
}

.form-control:focus {
    background: rgba(255,255,255,0.05);
    border-color: var(--wd-primary);
    color: var(--wd-text);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
    outline: none;
}

.form-control::placeholder {
    color: var(--wd-muted-dim);
}

.form-label {
    color: var(--wd-text-secondary);
    font-weight: 500;
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
}

.form-select {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid var(--wd-border-strong);
    color: var(--wd-text);
    border-radius: var(--wd-radius-sm);
}

.form-select:focus {
    border-color: var(--wd-primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

textarea.form-control {
    min-height: 120px;
}

/* ========================================
   Alerts & Utilities
   ======================================== */
.alert-wd-info {
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--wd-primary-light);
    border-radius: var(--wd-radius);
    padding: 1.25rem 1.5rem;
}

.text-wd-muted { color: var(--wd-muted) !important; }
.border-wd { border-color: var(--wd-border) !important; }
.bg-wd-surface { background-color: var(--wd-surface) !important; }

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wd-animate-in {
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 991.98px) {
    .wd-navbar .form-search {
        margin: 1rem 0;
    }
    .wd-navbar .form-search input {
        width: 100%;
    }
    .wd-navbar .form-search input:focus {
        width: 100%;
    }
    .wd-hero {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .wd-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .wd-hero-title {
        font-size: 2.2rem;
    }
    .wd-visual-card {
        padding: 1.5rem;
    }
}


/* ========================================
   Wagner Danielli - Componentes Premium v2
   Inspirado em referências profissionais
   ======================================== */

/* Section Header Premium */
.wd-section-header-v2 {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.5rem;
}

.wd-section-label-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--wd-primary-light);
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    padding: 0.45rem 0.9rem;
    border-radius: var(--wd-radius-full);
    margin-bottom: 1rem;
}

.wd-section-title-v2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: #fff;
}

.wd-section-title-v2 .text-gradient {
    background: linear-gradient(135deg, var(--wd-primary-light) 0%, var(--wd-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wd-section-desc-v2 {
    color: var(--wd-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Feature Cards */
.wd-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.wd-feature-card {
    background: var(--wd-surface);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--wd-transition);
    position: relative;
    overflow: hidden;
}

.wd-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(14, 165, 233, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.wd-feature-card:hover::before {
    opacity: 1;
}

.wd-feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--wd-border-strong);
    box-shadow: var(--wd-shadow-xl), var(--wd-shadow-glow-sm);
}

.wd-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--wd-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.wd-feature-icon.cyan { background: rgba(34, 211, 238, 0.12); color: #22d3ee; box-shadow: 0 0 20px rgba(34, 211, 238, 0.15); }
.wd-feature-icon.blue { background: rgba(14, 165, 233, 0.12); color: #38bdf8; box-shadow: 0 0 20px rgba(14, 165, 233, 0.15); }
.wd-feature-icon.purple { background: rgba(168, 85, 247, 0.12); color: #c084fc; box-shadow: 0 0 20px rgba(168, 85, 247, 0.15); }
.wd-feature-icon.green { background: rgba(34, 197, 94, 0.12); color: #4ade80; box-shadow: 0 0 20px rgba(34, 197, 94, 0.15); }
.wd-feature-icon.rose { background: rgba(244, 63, 94, 0.12); color: #fb7185; box-shadow: 0 0 20px rgba(244, 63, 94, 0.15); }
.wd-feature-icon.amber { background: rgba(245, 158, 11, 0.12); color: #fbbf24; box-shadow: 0 0 20px rgba(245, 158, 11, 0.15); }

.wd-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--wd-text);
}

.wd-feature-card p {
    font-size: 0.92rem;
    color: var(--wd-muted);
    margin: 0;
    line-height: 1.6;
}

/* Step Cards */
.wd-steps-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.wd-step-card {
    flex: 1 1 220px;
    max-width: 280px;
    background: var(--wd-surface);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--wd-transition);
}

.wd-step-card:hover {
    border-color: var(--wd-primary);
    transform: translateY(-4px);
}

.wd-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--wd-primary) 0%, var(--wd-secondary) 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
}

.wd-step-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.wd-step-card p {
    font-size: 0.9rem;
    color: var(--wd-muted);
    margin: 0;
}

/* Testimonial Cards */
.wd-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.wd-testimonial-card {
    background: var(--wd-surface);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--wd-transition);
}

.wd-testimonial-card:hover {
    border-color: var(--wd-border-strong);
    transform: translateY(-4px);
}

.wd-testimonial-quote {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--wd-primary);
    opacity: 0.35;
    margin-bottom: 0.5rem;
}

.wd-testimonial-text {
    font-size: 0.98rem;
    color: var(--wd-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.wd-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.wd-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wd-primary) 0%, var(--wd-secondary) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.wd-testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin: 0;
}

.wd-testimonial-role {
    font-size: 0.82rem;
    color: var(--wd-muted);
    margin: 0;
}

/* FAQ Accordion */
.wd-faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.wd-faq-item {
    background: var(--wd-surface);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius);
    margin-bottom: 0.875rem;
    overflow: hidden;
    transition: var(--wd-transition);
}

.wd-faq-item:hover {
    border-color: var(--wd-border-strong);
}

.wd-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--wd-text);
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.wd-faq-question i {
    transition: transform 0.3s ease;
    color: var(--wd-primary-light);
    font-size: 1.1rem;
}

.wd-faq-item.active .wd-faq-question i {
    transform: rotate(180deg);
}

.wd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.wd-faq-item.active .wd-faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.wd-faq-answer p {
    color: var(--wd-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* CTA Banners */
.wd-cta-banner {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: var(--wd-radius-xl);
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wd-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.wd-cta-banner h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.wd-cta-banner p {
    color: var(--wd-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

/* Newsletter */
.wd-newsletter-box {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.wd-newsletter-box input {
    min-width: 280px;
    max-width: 380px;
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid var(--wd-border-strong);
    border-radius: var(--wd-radius-full);
    padding: 0.85rem 1.25rem;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: var(--wd-transition);
}

.wd-newsletter-box input:focus {
    border-color: var(--wd-primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

.wd-newsletter-box input::placeholder {
    color: var(--wd-muted-dim);
}

.wd-newsletter-box button {
    border-radius: var(--wd-radius-full);
    padding: 0.85rem 1.75rem;
    font-weight: 600;
}

/* Category Cards v2 */
.wd-category-card-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    background: linear-gradient(145deg, var(--wd-surface) 0%, var(--wd-surface-2) 100%);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-lg);
    padding: 2rem 1.25rem;
    text-decoration: none;
    transition: var(--wd-transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 180px;
}

.wd-category-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(500px circle at 50% 0%, rgba(14, 165, 233, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.wd-category-card-v2:hover::before {
    opacity: 1;
}

.wd-category-card-v2:hover {
    transform: translateY(-5px);
    border-color: var(--wd-primary);
    box-shadow: var(--wd-shadow-glow-sm);
}

.wd-category-card-v2 .cat-icon-v2 {
    width: 72px;
    height: 72px;
    border-radius: var(--wd-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(14, 165, 233, 0.1);
    color: var(--wd-primary-light);
    position: relative;
    z-index: 1;
    transition: var(--wd-transition);
}

.wd-category-card-v2:hover .cat-icon-v2 {
    background: rgba(14, 165, 233, 0.2);
    transform: scale(1.05);
}

.wd-category-card-v2 h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 1;
}

.wd-category-card-v2 p {
    font-size: 0.85rem;
    color: var(--wd-muted);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Enhanced Stats */
.wd-stat-card {
    background: var(--wd-surface);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-lg);
    padding: 1.75rem 1rem;
    text-align: center;
    transition: var(--wd-transition);
}

.wd-stat-card:hover {
    border-color: var(--wd-border-strong);
    transform: translateY(-4px);
}

.wd-stat-card .wd-stat-icon {
    font-size: 1.6rem;
    color: var(--wd-primary-light);
    margin-bottom: 0.75rem;
}

.wd-stat-card .wd-stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--wd-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.wd-stat-card .wd-stat-label {
    font-size: 0.9rem;
    color: var(--wd-muted);
    font-weight: 500;
}

/* Enhanced Hero Visual */
.wd-hero-visual-v2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wd-hero-mockup {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.wd-mockup-ring {
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 50%;
    animation: pulseRing 4s ease-in-out infinite;
}

.wd-mockup-ring:nth-child(2) {
    inset: -40px;
    border-color: rgba(99, 102, 241, 0.1);
    animation-delay: 1s;
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.03); opacity: 1; }
}

.wd-mockup-center {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wd-primary) 0%, var(--wd-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.4);
}

.wd-mockup-float {
    position: absolute;
    background: var(--wd-surface);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius);
    padding: 0.875rem 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--wd-shadow-lg);
    z-index: 3;
    animation: floatY 5s ease-in-out infinite;
}

.wd-mockup-float .icon {
    width: 40px;
    height: 40px;
    border-radius: var(--wd-radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.wd-mockup-float:nth-child(3) { top: 10%; left: 0; animation-delay: 0s; }
.wd-mockup-float:nth-child(4) { top: 5%; right: 0; animation-delay: 1.5s; }
.wd-mockup-float:nth-child(5) { bottom: 15%; left: 5%; animation-delay: 3s; }
.wd-mockup-float:nth-child(6) { bottom: 10%; right: 0; animation-delay: 2s; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Navbar v2 enhancements */
.wd-navbar-v2 {
    background: rgba(2, 6, 23, 0.85) !important;
    border-bottom: 1px solid var(--wd-border) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

.wd-navbar-v2 .nav-link {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--wd-text-secondary) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--wd-radius-sm);
    transition: var(--wd-transition);
}

.wd-navbar-v2 .nav-link:hover,
.wd-navbar-v2 .nav-link.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05);
}

/* Footer v2 */
.wd-footer-v2 {
    background: var(--wd-surface);
    border-top: 1px solid var(--wd-border);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

/* Responsive additions */
@media (max-width: 991.98px) {
    .wd-section-title-v2 {
        font-size: 1.75rem;
    }
    .wd-cta-banner h2 {
        font-size: 1.5rem;
    }
    .wd-mockup-float {
        display: none;
    }
}

/* ==========================================================================
   Sites Parceiros - Rodap� Compartilhado
   ========================================================================== */

.wd-parceiros-footer {
    border-top: 1px solid var(--wd-border, rgba(255,255,255,0.06));
    border-bottom: 1px solid var(--wd-border, rgba(255,255,255,0.06));
    background: rgba(14, 165, 233, 0.03);
    padding: 1.25rem 0;
    margin: 2rem 0 1.5rem;
}

.wd-parceiros-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
    text-align: center;
}

.wd-parceiros-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--wd-text-secondary, #94a3b8);
    white-space: nowrap;
}

.wd-parceiros-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.25rem;
}

.wd-parceiro-link {
    color: var(--wd-text-primary, #e2e8f0);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.wd-parceiro-link:hover {
    color: var(--wd-primary, #0ea5e9);
    background: rgba(14, 165, 233, 0.1);
    text-decoration: none;
}

.wd-parceiro-sep {
    color: var(--wd-border, rgba(255,255,255,0.1));
    font-weight: 300;
    margin: 0 0.1rem;
    user-select: none;
}

/* Responsivo */
@media (max-width: 767.98px) {
    .wd-parceiros-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    .wd-parceiros-nav {
        gap: 0.25rem 0.15rem;
    }
    .wd-parceiro-link {
        font-size: 0.85rem;
    }
}

