/* Extensões específicas para a página sobre */
.sobre-hero {
    position: relative;
    isolation: isolate;
    padding: clamp(50px, 10vw, 120px) 0;
    text-align: center;
}

.sobre-hero::before {
    content: "";
    position: absolute;
    right: clamp(-120px, -10vw, -60px);
    top: -80px;
    width: min(70vw, 800px);
    aspect-ratio: 1 / 0.7;
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    background: radial-gradient(
        closest-side,
        #4b6bff 0 25%,
        #ff6a88 26% 50%,
        #ff8e53 51% 75%,
        #2d1a7a 76% 100%
    );
    filter: blur(60px) saturate(140%);
    opacity: 0.3;
    transform: rotate(-15deg);
    z-index: -1;
}

.stats-section {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.02)
    );
    border-radius: var(--radius);
    margin: clamp(20px, 4vw, 40px) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(16px, 3vw, 32px);
    padding: clamp(24px, 5vw, 48px);
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--cta-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--muted);
    font-size: var(--fs-p);
    font-weight: 600;
}

.content-section {
    padding: clamp(30px, 6vw, 60px) 0;
}

.section-title {
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--text);
    margin: 0 0 clamp(16px, 3vw, 24px);
    text-align: center;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(20px, 4vw, 32px);
    margin-top: clamp(24px, 5vw, 40px);
}

.content-card {
    position: relative;
    border-radius: var(--radius);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.02)
    );
    box-shadow: var(--shadow-1);
    padding: clamp(20px, 4vw, 28px);
    overflow: hidden;
    isolation: isolate;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: var(--card-grad);
}

.content-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--white);
    position: relative;
}

.card-icon.mission {
    background: linear-gradient(135deg, #4ea7ff 0%, #2aa6ff 100%);
}

.card-icon.vision {
    background: linear-gradient(135deg, #ff6a88 0%, #ff4fa1 100%);
}

.card-icon.values {
    background: linear-gradient(135deg, #ffcc40 0%, #ff7a3d 100%);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 12px;
    text-align: center;
}

.card-description {
    color: var(--muted);
    font-size: var(--fs-p);
    line-height: 1.6;
    text-align: center;
}

.team-section {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.01)
    );
    border-radius: var(--radius);
    padding: clamp(30px, 6vw, 50px);
    margin: clamp(40px, 8vw, 80px) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(20px, 4vw, 28px);
    margin-top: clamp(24px, 5vw, 40px);
}

.team-card {
    text-align: center;
    padding: 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-2);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: var(--cta-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
}

.team-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 4px;
}

.team-role {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-description {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.cta-section {
    text-align: center;
    padding: clamp(40px, 8vw, 80px) 0;
}

.cta-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    margin: 0 0 16px;
}

.cta-description {
    color: var(--muted);
    font-size: var(--fs-p);
    margin: 0 0 32px;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

/* Animações */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-up {
    animation: slideUp 1s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.bounce-subtle {
    animation: bounceSubtle 4s infinite;
}

@keyframes bounceSubtle {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsividade específica */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
