/* --- MODERN PAGE HEADER (HERO) --- */
.page-header-modern { 
    background: 
        linear-gradient(to right, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.45) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1470&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* IGUALADO À PÁGINA SOLUÇÕES */
    padding: 180px 0 120px;
    min-height: 70vh; 
    display: flex;
    align-items: center;
    position: relative;
}

/* Glassmorphism Panel */
.hero-glass-content {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.modern-title { font-weight: 800; font-size: 3.8rem; color: white; line-height: 1.1; letter-spacing: -2px; }
.modern-subtitle { color: rgba(255,255,255,0.7); font-size: 1.25rem; max-width: 600px; margin-top: 20px; font-weight: 300; line-height: 1.6; }

.breadcrumb-modern {
    background: rgba(255, 106, 0, 0.2);
    color: var(--qsti-orange);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- CARDS E ÍCONES --- */
.module-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
    border-color: var(--qsti-orange);
}

.feature-icon-box {
    width: 60px; height: 60px;
    background: rgba(255, 106, 0, 0.1);
    color: var(--qsti-orange);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

/* CUSTOM SHAPE IMAGE */
.custom-shape-img {
    border-radius: 30px 140px 30px 30px;
    border-bottom: 10px solid var(--qsti-orange);
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.fw-800 { font-weight: 800 !important; }
.x-small { font-size: 0.75rem; }