/* Landing one-page — apenas página inicial (não afeta área logada) */

.np-landing {
    font-family: var(--np-font-body, 'Segoe UI', system-ui, sans-serif);
    color: var(--np-text, #2c3e50);
    background: #fff;
}

.np-landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    background: rgba(18, 70, 82, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.np-landing-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--np-font-title, Montserrat, sans-serif);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
}

.np-landing-brand img {
    height: 36px;
    width: auto;
}

.np-landing-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.np-landing-nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.2s;
}

.np-landing-nav-links a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.np-landing-nav-links .btn-login {
    background: #fff;
    color: var(--np-primary, #124652) !important;
    font-weight: 600;
    margin-left: 8px;
}

.np-landing-nav-links .btn-login:hover {
    background: #f0f4f5;
}

.np-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 120px 32px 80px;
    background: linear-gradient(135deg, #0d353e 0%, #124652 45%, #1a5c6a 100%);
    overflow: hidden;
}

.np-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../light-bootstrap/img/modulos.png') center/cover no-repeat;
    opacity: 0.12;
}

.np-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.np-hero h1 {
    font-family: var(--np-font-title, Montserrat, sans-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 720px;
}

.np-hero-lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 32px;
}

.np-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.np-hero-actions .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: var(--np-primary, #124652);
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.np-hero-actions .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: var(--np-primary-dark, #0d353e);
    text-decoration: none;
}

.np-hero-actions .btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.np-hero-actions .btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
}

.np-stats {
    margin-top: -48px;
    position: relative;
    z-index: 2;
    padding: 0 32px 64px;
}

.np-stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.np-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--np-border-light, #eef1f5);
}

.np-stat-number {
    font-family: var(--np-font-title, Montserrat, sans-serif);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--np-primary, #124652);
    line-height: 1;
    margin-bottom: 8px;
}

.np-stat-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--np-text, #2c3e50);
    margin-bottom: 4px;
}

.np-stat-desc {
    font-size: 13px;
    color: var(--np-text-muted, #6c757d);
}

.np-section {
    padding: 72px 32px;
}

.np-section-alt {
    background: var(--np-bg, #f4f6f9);
}

.np-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.np-section-header h2 {
    font-family: var(--np-font-title, Montserrat, sans-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--np-primary, #124652);
    margin-bottom: 12px;
}

.np-section-header p {
    font-size: 16px;
    color: var(--np-text-muted, #6c757d);
    line-height: 1.6;
    margin: 0;
}

.np-systems-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.np-system-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px;
    border: 1px solid var(--np-border-light, #eef1f5);
    box-shadow: var(--np-shadow, 0 1px 3px rgba(0, 0, 0, 0.06));
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.np-section-alt .np-system-card {
    box-shadow: var(--np-shadow-md, 0 2px 8px rgba(0, 0, 0, 0.08));
}

.np-system-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(18, 70, 82, 0.12);
}

.np-system-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

.np-system-icon--mes { background: linear-gradient(135deg, #3498db, #2980b9); }
.np-system-icon--manut { background: linear-gradient(135deg, #17a589, #0d6e5e); }
.np-system-icon--insp { background: linear-gradient(135deg, #8e6cd8, #6f42c1); }

.np-system-card h3 {
    font-family: var(--np-font-title, Montserrat, sans-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--np-primary, #124652);
    margin-bottom: 12px;
}

.np-system-card p {
    font-size: 14px;
    color: var(--np-text-muted, #6c757d);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.np-system-card a {
    font-size: 14px;
    font-weight: 600;
    color: var(--np-accent, #0da8c3);
    text-decoration: none;
}

.np-system-card a:hover {
    text-decoration: underline;
}

.np-about {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.np-about p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--np-text-muted, #6c757d);
}

.np-cta {
    padding: 64px 32px;
    background: linear-gradient(135deg, #124652 0%, #1a5c6a 100%);
    text-align: center;
}

.np-cta h2 {
    font-family: var(--np-font-title, Montserrat, sans-serif);
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.np-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    font-size: 16px;
}

.np-cta .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff;
    color: var(--np-primary, #124652);
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
}

.np-landing-footer {
    padding: 24px 32px;
    text-align: center;
    font-size: 13px;
    color: var(--np-text-muted, #6c757d);
    border-top: 1px solid var(--np-border-light, #eef1f5);
}

/* Esconde navbar padrão do layout nesta página */
body.np-welcome-page .wrapper-full-page > .main-panel > .navbar {
    display: none !important;
}

body.np-welcome-page .wrapper-full-page .main-panel {
    width: 100%;
    float: none;
}

body.np-welcome-page .wrapper-full-page .main-panel .content {
    padding: 0;
    margin: 0;
}

@media (max-width: 992px) {
    .np-systems-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .np-landing-nav {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .np-landing-nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .np-stats-inner {
        grid-template-columns: 1fr;
    }

    .np-hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }

    .np-section {
        padding: 48px 20px;
    }
}
