/* Sistema Completo - Layout Moderno */
.sistema-completo {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
}

.sistema-completo .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sistema-completo .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #314563;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sistema-completo .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    flex: 1;
}

.image-section {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(49, 69, 99, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(49, 69, 99, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, rgba(56, 164, 181, 1) 0%, rgba(39, 175, 225, 1) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(49, 69, 99, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, rgba(56, 164, 181, 1) 0%, rgba(39, 175, 225, 1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(45deg, rgba(39, 175, 225, 1) 0%, rgba(56, 164, 181, 1) 100%);
}

.feature-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #314563;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .image-section {
        flex: none;
        order: -1;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sistema-completo {
        padding: 60px 0;
    }
    
    .sistema-completo .section-header h2 {
        font-size: 2rem;
    }
    
    .content-wrapper {
        margin-top: 40px;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 42px;
        height: 42px;
    }
    
    .feature-icon i {
        font-size: 1.1rem;
    }
    
    .image-section {
        flex: none;
    }
}

@media (max-width: 576px) {
    .sistema-completo .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
}