/**
 * Precatorize Enterprise - Institutional About Design V7.0
 * Localização: assets/css/sobre.css
 * Estilo: Authority / Tech-Legal / Minimalist
 */

/* --- 1. HERO INSTITUCIONAL --- */
.hero-premium {
    background: radial-gradient(circle at top right, #0f172a 0%, #002d5e 100%) !important;
    padding-top: 160px !important;
    padding-bottom: 120px !important;
    position: relative;
    overflow: hidden;
}

/* --- 2. PERFIL DO FUNDADOR (TECH CARD) --- */
.bg-dark {
    background-color: #0f172a !important;
}

.avatar-squircle {
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    border-radius: 12px;
}

/* Bloco de métricas do fundador (JetBrains Mono style) */
.fs-4.fw-800 {
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
}

.text-white-50 {
    letter-spacing: 1px;
    font-weight: 700;
}

/* --- 3. MANIFESTO CARDS --- */
.card-premium {
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
}

.card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.08) !important;
    border-color: rgba(0, 86, 179, 0.2);
}

/* --- 4. SEÇÃO DE IMPACTO (DARK MODE CARDS) --- */
/* Correção de alinhamento e contraste conforme solicitado */
.bg-dark .rounded-4.bg-white {
    background-color: #ffffff !important;
    transition: all 0.3s ease;
    border: none;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bg-dark .rounded-4.bg-white:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.bg-dark .rounded-4.bg-white i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0056b3; /* Preca Blue */
}

.bg-dark .rounded-4.bg-white h6 {
    color: #0f172a; /* Navy para contraste no card branco */
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.bg-dark .rounded-4.bg-white small {
    color: #64748b; /* Slate 500 */
    font-weight: 600;
    font-size: 0.75rem;
}

/* --- 5. UTILITÁRIOS DE TEXTO --- */
.line-height-lg {
    line-height: 1.8;
}

.border-start-primary {
    border-left: 5px solid #0056b3 !important;
}

/* --- 6. ANIMAÇÕES REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- 7. RESPONSIVIDADE --- */
@media (max-width: 991.98px) {
    .hero-premium {
        padding-top: 120px !important;
        padding-bottom: 80px !important;
    }
    
    .col-lg-5.reveal {
        margin-bottom: 40px;
    }

    .bg-dark .rounded-4.bg-white {
        min-height: 160px;
        margin-bottom: 10px;
    }
}