/* --- ESTILO INDUSTRIAL PARA PÁGINA SOBRE --- */

/* Hero Section */
.hero-factory {
    height: 450px;
    background: url('https://images.unsplash.com/photo-1516937941344-00b4e0337589?auto=format&fit=crop&q=80&w=1200') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    background: rgba(0, 31, 63, 0.75); /* Azul Marinho Industrial */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-factory h1 {
    font-size: 3.2rem;
    color: #fff;
    text-align: left;
    line-height: 1.1;
    margin-bottom: 15px;
    padding: 0;
}

.hero-factory p {
    font-size: 1.2rem;
    max-width: 600px;
    opacity: 0.9;
}

/* NOVO: Manifesto */
.manifesto-vendas {
    background: #fdfdfd;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.manifesto-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 6px solid #007bff;
}

.manifesto-icon {
    font-size: 3.5rem;
    color: #007bff;
}

.manifesto-text p {
    font-size: 1.35rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Seções Flex e Texto */
.flex-row {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.sobre-text-box { flex: 1.2; text-align: left; }
.sobre-img-box { flex: 1; }
.sobre-img-box img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 0 rgba(0, 123, 255, 0.1);
}

.sub-title {
    color: #007bff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

h2 { font-size: 2.4rem; color: #1a1a1a; line-height: 1.2; margin-bottom: 20px; }

/* Cards MVV */
.mvv-section { background: #f4f7f9; padding: 100px 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.card-industrial {
    background: #fff;
    padding: 40px;
    border-bottom: 4px solid #007bff;
    transition: all 0.3s ease;
}

.card-industrial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-icon { font-size: 2.8rem; color: #007bff; margin-bottom: 20px; }
.card-industrial h3 { font-size: 1.5rem; margin-bottom: 15px; }

.lista-clean { list-style: none; padding: 0; }
.lista-clean li { 
    margin-bottom: 12px; 
    font-weight: 600; 
    display: flex; 
    align-items: center;
}
.lista-clean i { color: #28a745; margin-right: 12px; font-size: 0.9rem; }

/* Localidade Industrial */
.localidade-box { background: #1a1e23; color: white; }
.localidade-box h2 { color: white; }
.info-local p { margin-bottom: 20px; font-size: 1.1rem; opacity: 0.8; }
.info-local i { color: #007bff; margin-right: 10px; width: 20px; }

.map-placeholder img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
}

/* Botão Custom */
.cta-industrial {
    background: #007bff;
    color: white;
    border: none;
    padding: 18px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 20px;
    transition: 0.3s;
}

.cta-industrial:hover { background: #0056b3; }

/* Responsividade */
@media (max-width: 992px) {
    .grid-3 { grid-template-columns: 1fr; }
    .flex-row { flex-direction: column; text-align: center; }
    .sobre-text-box { text-align: center; }
    .hero-factory h1 { font-size: 2.4rem; }
    .manifesto-content { flex-direction: column; text-align: center; padding: 30px; }
}