/*
 * landing.css
 * Estilos exclusivos da landing page (Home/Index).
 * Esta view usa Layout = null e carrega este arquivo diretamente no <head>.
 */


/* ── Variáveis ────────────────────────────────────────────────────────────── */

:root {
    --jt-primary:  #1e293b;
    --jt-accent:   #3b82f6;
    --jt-glow:     rgba(59, 130, 246, 0.4);
    --jt-gradient: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}


/* ── Hero ─────────────────────────────────────────────────────────────────── */

.hero-section {
    background: var(--jt-gradient);
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 160px 0 100px;
}

.hero-glow {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: var(--jt-glow);
    filter: blur(150px);
    border-radius: 50%;
    z-index: 0;
    animation: floatGlow 10s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    0%   { transform: translateY(0)    scale(1.0); }
    100% { transform: translateY(30px) scale(1.1); }
}


/* ── Cards ────────────────────────────────────────────────────────────────── */

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.feature-box:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: var(--jt-accent);
}


/* ── Ícone premium ────────────────────────────────────────────────────────── */

.icon-premium {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--jt-accent);
    font-size: 28px;
    margin-bottom: 20px;
}


/* ── Utilitários de texto ─────────────────────────────────────────────────── */

.text-gradient {
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ── Navbar ───────────────────────────────────────────────────────────────── */

.navbar-landing.is-sticky {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-link {
    font-weight: 500;
}


/* ── Preview da aplicação ─────────────────────────────────────────────────── */

.app-preview-mockup {
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 5px solid #334155;
    position: relative;
    z-index: 2;
}
