/* ==========================================================================
   PÁGINA SOBRE NÓS (MIGRADO PARA NOVA IDENTIDADE ESCURA & FUTURISTA)
   ========================================================================== */

.about-page-section {
    position: relative;
    width: 100%;
    z-index: 2;
    
    /* Remove a margin e usa o padding forçado com !important */
    margin-top: 0 !important;
    padding-top: 80px !important; /* Cria o espaço exato empurrando o banner para baixo */
    
    /* Garante que o navegador calcule o espaço corretamente */
    display: block !important;
    box-sizing: border-box;
    background: transparent !important; /* Garante que o fundo escuro global e partículas fiquem visíveis */
}

/* 1. Ajuste do Banner Superior para Ocupar a Janela Inteira sem distorcer (1717x916) */
.about-top-banner {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 540px; /* Altura ideal balanceada para telas wide */
    overflow: hidden;
    
}

.about-banner-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    opacity: 0.85; /* Mistura sutilmente a imagem com o ambiente escuro */
}

/* 2. Wrapper do Miolo em Fundo Transparente */
.about-content-wrapper {
    background-color: transparent !important; /* REMOVIDO #ffffff - Torna a seção transparente para revelar as partículas */
    padding: 90px 0 100px 0;
    color: #f1f5f9; /* Mudado para cinza claro (Slate 100) para leitura no fundo escuro */
}

/* Títulos e Cabeçalhos internos */
.about-header-block {
    text-align: center;
    margin-bottom: 55px;
}

.about-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f97316;
    text-transform: uppercase;
}

.about-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff; /* Alterado de #0f172a para Branco Puro */
    margin-top: 8px;
    margin-bottom: 15px;
}

.about-line-orange {
    width: 45px;
    height: 3px;
    background-color: #f97316;
    margin: 0 auto;
}

/* 3. Grid de Missão, Visão e Valores (3 colunas com Glassmorphism) */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.mvv-card {
    /* Efeito de Vidro Fosco (Glassmorphism) */
    background: rgba(30, 41, 59, 0.45) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mvv-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.65) !important;
    border-color: rgba(56, 189, 248, 0.4) !important; /* Brilho sutil em azul no hover */
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.1);
}

.mvv-icon-area {
    width: 60px;
    height: 60px;
    background: #0f172a; 
    border: 1px solid rgba(56, 189, 248, 0.2); /* Borda em azul futurista */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px auto;
}

.mvv-icon {
    font-size: 1.6rem;
    color: #38bdf8; /* Ícone alterado de branco para azul ciano tecnológico */
}

.mvv-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff; /* Alterado para Branco */
    margin-bottom: 15px;
}

.mvv-card p {
    font-size: 0.98rem;
    color: #cbd5e1; /* Alterado para cinza claro legível (Slate 300) */
    line-height: 1.6;
}

.mvv-card p strong {
    color: #38bdf8; /* Destaques em azul ciano */
    font-weight: 600;
}

/* Lista customizada para os Valores */
.valores-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.valores-list li {
    font-size: 0.95rem;
    color: #cbd5e1; /* Ajustado para contraste claro */
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.valores-list li::before {
    content: "•";
    color: #f97316;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* 4. Grid de Diferenciais (5 colunas responsivas em formato Glass) */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 90px;
}

.diff-card {
    /* Glassmorphism translúcido */
    background: rgba(15, 23, 42, 0.4) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.diff-card:hover {
    background: rgba(15, 23, 42, 0.6) !important;
    border-color: #f97316 !important; /* Destaca a borda em laranja no hover */
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.15);
}

.diff-icon {
    font-size: 2rem;
    color: #f97316;
    margin-bottom: 15px;
}

.diff-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff; /* Alterado para Branco */
    margin-bottom: 10px;
    line-height: 1.3;
}

.diff-card p {
    font-size: 0.88rem;
    color: #94a3b8; /* Cinza suave e visível */
    line-height: 1.5;
}

/* 5. Banner de CTA Inferior (Vidro Reforçado) */
.about-cta-banner {
    background: rgba(15, 23, 42, 0.65) !important; /* Transforma o fundo sólido num painel de vidro escuro */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.about-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-cta-circle {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #f97316;
    flex-shrink: 0;
}

.about-cta-text h3 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-cta-text p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-about-cta {
    background: #f97316;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-about-cta:hover {
    background: #ea580c;
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
    transform: scale(1.02);
}

/* Responsividade Completa */
@media (max-width: 1200px) {
    .differentials-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .mvv-grid { grid-template-columns: 1fr; gap: 20px; }
    .differentials-grid { grid-template-columns: repeat(2, 1fr); }
    .about-cta-banner { flex-direction: column; text-align: center; padding: 35px 25px; }
    .about-cta-left { flex-direction: column; }
    .about-title { font-size: 2.1rem; }
}

@media (max-width: 640px) {
    .differentials-grid { grid-template-columns: 1fr; }
    .about-top-banner { height: 350px; }
}