/* --- MODERN PAGE HEADER (HERO) --- */
.page-header-modern { 
    background: 
        linear-gradient(to right, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.4) 100%),
        url('../img/solucoes.jpg');
    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.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.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;
}

/* --- REGRAS GERAIS --- */
.fw-800 { font-weight: 800; }
.ls-1 { letter-spacing: 1px; }

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

/* --- SOFT UI CARDS --- */
.module-card {
    background: #ffffff;
    padding: 2.5rem;
    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);
    text-align: center;
}

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

.module-card:hover .feature-icon-box {
    background: var(--qsti-orange);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.3);
}

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

.custom-shape-img:hover {
    border-radius: 30px 30px 30px 140px;
    transform: scale(1.02);
}

/* Ajustes de lista */
ul li i { font-size: 0.85rem; }