/* --- PÁGINA SOBRE: DESIGN REVISADO --- */

/* Hero com imagem de fundo para matar o vazio */
/* --- HERO PADRONIZADO (PÁGINA SOBRE) --- */
.hero-sobre {
    padding: 150px 0 80px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 194, 238, 0.05) 0%, transparent 70%);
}

.hero-sobre h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

@media (max-width: 600px) {
    .hero-sobre h1 { font-size: 42px; }
}

/* Redução de espaçamentos para a página não parecer esticada */
.section-sobre {
    padding: 80px 0;
}

/* Grid institucional mais robusto */
.sobre-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-img-box {
    position: relative;
}

.sobre-img-box img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

/* Selo de 10 anos flutuante */
.selo-10anos {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-violet);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px var(--violet-glow-strong);
}

.selo-10anos strong {
    display: block;
    font-size: 42px;
    line-height: 1;
}

/* Fundadores em Grid compacto */
.founders-section {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.founder-card {
    padding: 40px;
    border-radius: 24px;
    text-align: center;
}

.founder-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--accent-violet);
    padding: 5px;
}

.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* MVV */
.section-sobre h3 {
    margin-top: 20px;
}


@media (max-width: 900px) {
    .sobre-split { grid-template-columns: 1fr; }
    .hero-sobre h1 { font-size: 42px; }
}

/* =========================================
   PÁGINA SOBRE (MOBILE)
   ========================================= */

@media (max-width: 992px) {
    /* 1. Empilha tudo que é Grid */
    .sobre-split, 
    .founders-grid,
    .grid-premium { 
        grid-template-columns: 1fr !important; 
        gap: 30px !important;
    }

    /* 2. O FIX DA BADGE (Evita quebrar a tela) */
    .selo-10anos {
        right: 15px !important; /* Puxa para dentro da tela */
        bottom: -15px !important;
        padding: 15px 20px !important; /* Reduz o tamanho do balão */
    }

    .selo-10anos strong {
        font-size: 28px !important; /* Fonte menor para caber na foto menor */
    }

    .selo-10anos span {
        font-size: 11px !important;
    }
}

@media (max-width: 600px) {
    
    /* 6. A REGRA DE OURO: Respiro Lateral (Mobile) */
    .hero-interno .container,
    .sobre-split,
    .founders-grid,
    .grid-premium {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* Garante que o texto longo do Hero não encoste na borda */
    .hero-interno p {
        padding: 0 10px;
    }
    /* 3. Ajuste do Hero Interno */
    .hero-interno {
        padding: 120px 0 60px !important;
    }

    .hero-interno h1 {
        font-size: 38px !important;
        line-height: 1.2;
    }

    .hero-interno h1 br {
        display: none !important; /* Tira a quebra de linha forçada */
    }

    .hero-interno p {
        font-size: 16px !important;
        padding: 0 10px;
    }

    /* 4. Respiros das Seções Gerais */
    .section-sobre {
        padding: 50px 0 !important; /* Reduz o padding de 80px para 50px */
    }

    .sobre-texto h2,
    .founders-section h2 {
        font-size: 32px !important;
    }

    .sobre-texto h2 br {
        display: none !important;
    }

    .sobre-texto p {
        font-size: 15px !important;
    }

    /* 5. Ajustes finos nos Cards (Fundadores e MVV) */
    .founder-card {
        padding: 30px 20px !important;
    }

    .founder-img {
        width: 110px !important;
        height: 110px !important;
        margin-bottom: 15px !important;
    }

    .founder-card h4 {
        font-size: 20px !important;
    }

    .card-premium {
        padding: 35px 25px !important; /* Diminui o padding interno do Missão/Visão/Valores */
        text-align: center; /* Centraliza para ficar mais elegante no celular */
    }

    .card-premium .list-icon {
        margin: 0 auto 20px !important; /* Centraliza o ícone */
    }
}