/* -------------------------------------- */
/* Outsourcing de Impressão Styles */
/* -------------------------------------- */

/* Hero Section Personalizado */
.outsourcing-hero {
    background: linear-gradient(rgba(0, 77, 108, 0.9), rgba(0, 77, 108, 0.8)), url('../img/banner principal1.png'); /* Usando uma imagem existente como fallback */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0 5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.outsourcing-hero h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.outsourcing-hero .lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Feature Cards (Funcionalidades) */
.feature-box {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--tmg-shadow);
    height: 100%;
    transition: transform 0.3s ease;
    border-top: 5px solid var(--tmg-primary);
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--tmg-highlight);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.35rem;
    color: var(--tmg-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Section "Visão além do alcance" */
.section-vision {
    background-color: #f8fafc;
    padding: 6rem 0;
}

.vision-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--tmg-accent);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.vision-card h3 {
    font-size: 1.25rem;
    color: var(--tmg-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Security Section */
.section-security {
    padding: 6rem 0;
}

.security-list {
    list-style: none;
    padding: 0;
}

.security-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    background: #f1f5f9;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.security-list li::before {
    content: "🔒";
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Benefits Section (Override or extension of generic cards if needed, but generic might suffice) */
.benefits-section-custom {
    background-color: var(--tmg-primary);
    color: white;
    padding: 5rem 0;
}

.benefit-item-custom {
    text-align: center;
    padding: 2rem;
}

.benefit-icon-custom {
    font-size: 3.5rem;
    color: var(--tmg-accent);
    margin-bottom: 1.5rem;
}

.benefit-title-custom {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

/* Integration Section */
.section-integration {
    padding: 5rem 0;
    background: radial-gradient(circle at center, #f8fafc, #f1f5f9);
}

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