/* about.css - Refatorado: Foco institucional e estética industrial limpa */

/* --- Moldura e Imagem Principal --- */
.image-frame {
    position: relative;
    border: 1px solid rgba(11, 11, 11, 0.05);
    padding: 1rem;
    border-radius: 4px;
    background: white;
    transition: transform 0.4s ease-in-out;
}

.image-frame:hover {
    transform: translateY(-5px);
}

.main-img {
    border-radius: 2px;
    filter: grayscale(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    object-fit: cover;
    height: 500px;
    display: block;
}

.image-frame:hover .main-img {
    filter: grayscale(0%);
}

/* --- Cards de Missão, Visão e Valores (MVV) --- */
.mvv-card {
    padding: 1.5rem;
    background: #fcfcfc;
    border-left: 2px solid #eee;
    transition: all 0.4s ease;
}

.mvv-card:hover {
    background: white;
    border-left-color: #00C3FF;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.03);
    transform: translateX(5px);
}

.mvv-card i {
    stroke-width: 1.5px; /* Traço fino elegante para ícones Lucide */
}

/* --- Ajustes Responsivos --- */
@media (max-width: 1024px) {
    .main-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .mvv-card {
        border-left: none;
        border-bottom: 2px solid #eee;
        padding: 1.5rem 0;
    }
}

@media (max-width: 640px) {
    .main-img {
        height: 350px;
    }
}