/* Estilo Geral da Página Sobre */
main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 5%;
    color: #f0e6ff;
    position: relative;
    overflow: hidden;
}

main::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(110,0,255,0.2) 0%, rgba(110,0,255,0) 70%);
    z-index: -1;
}

main::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,255,204,0.1) 0%, rgba(0,255,204,0) 70%);
    z-index: -1;
}

h1 {
    font-family: 'Oxanium', sans-serif;
    color: #00ffcc;
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.4);
    position: relative;
    padding-bottom: 20px;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #6e00ff, #ff00aa);
    border-radius: 4px;
}

p {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(240, 230, 255, 0.9);
    font-size: 1.1rem;
    text-align: justify;
}

/* Destaques no Texto */
.highlight {
    color: #00ffcc;
    font-weight: 600;
}

.team-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 50px 0;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(42, 36, 56, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(110, 0, 255, 0.3);
    min-width: 150px;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(110, 0, 255, 0.2);
    border-color: #00ffcc;
}

.stat-number {
    font-family: 'Oxanium', sans-serif;
    font-size: 2.5rem;
    color: #6e00ff;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    color: rgba(240, 230, 255, 0.8);
    font-size: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    p {
        font-size: 1rem;
        text-align: left;
    }
    
    .team-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 80%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    main::before, main::after {
        display: none;
    }
}