/* ==========================================================================
   TG STUDIO WEB - SOBRE PAGE STYLES
   Aesthetics: Premium Dark Glassmorphism, Neon Accents & Dynamic Timelines
   ========================================================================== */

.sobre-page {
    background-color: #060913;
    color: #f3f4f6;
}

/* --- Hero Section --- */
.sobre-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 10%, rgba(139, 92, 246, 0.12) 0%, rgba(6, 9, 19, 0) 70%);
}

.sobre-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.sobre-hero-content {
    max-width: 620px;
}

.sobre-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #a78bfa;
    font-size: 0.825rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

.sobre-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.18;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 30%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sobre-hero-support {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 36px;
}

.sobre-hero-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 92, 246, 0.15);
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sobre-hero-media:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(139, 92, 246, 0.25);
}

.sobre-hero-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- Origem e Propósito --- */
.sobre-section {
    padding: 100px 0;
    position: relative;
}

.sobre-origin-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.7) 0%, rgba(10, 15, 30, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 56px;
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

.sobre-origin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8b5cf6 0%, #ec4899 100%);
}

.sobre-origin-head h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.sobre-origin-body {
    font-size: 1.075rem;
    line-height: 1.8;
    color: #d1d5db;
}

.sobre-origin-body p {
    margin-bottom: 20px;
}

.sobre-origin-body p:last-child {
    margin-bottom: 0;
}

/* --- Nosso Método (5 Passos) --- */
.sobre-method-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.sobre-method-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.sobre-method-header p {
    color: #9ca3af;
    font-size: 1.05rem;
}

/* Desktop Horizontal Timeline / Mobile Vertical */
.sobre-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.sobre-timeline-item {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sobre-timeline-item:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(139, 92, 246, 0.15);
    background: rgba(17, 24, 39, 0.9);
}

.sobre-timeline-num {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    line-height: 1;
}

.sobre-timeline-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.sobre-timeline-item p {
    font-size: 0.925rem;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0;
}

/* --- Equipe Section --- */
.sobre-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.sobre-team-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.sobre-team-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.sobre-team-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.sobre-team-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.sobre-team-card p {
    font-size: 0.925rem;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0;
}

/* --- Results / Evidence Section --- */
.sobre-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.sobre-result-card {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.8) 0%, rgba(11, 15, 25, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: left;
    transition: all 0.3s ease;
}

.sobre-result-card:hover {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.1);
}

.sobre-result-number {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #06b6d4;
    line-height: 1;
    margin-bottom: 12px;
}

.sobre-result-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.sobre-result-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #9ca3af;
    margin: 0;
}

/* --- Institutional Info Section --- */
.sobre-institutional-box {
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px 36px;
    margin-top: 40px;
    max-width: 680px;
}

.sobre-institutional-box h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.sobre-institutional-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
}

.sobre-institutional-item {
    display: flex;
    gap: 12px;
    align-items: baseline;
}

.sobre-institutional-label {
    font-weight: 600;
    color: #d1d5db;
    min-width: 110px;
}

.sobre-institutional-value {
    color: #9ca3af;
}

/* --- CTA Section --- */
.sobre-cta-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 28px;
    padding: 64px 48px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.2);
}

.sobre-cta-card h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.25;
}

.sobre-cta-card p {
    font-size: 1.1rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.sobre-cta-card .btn {
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 700;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .sobre-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-timeline {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sobre-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .sobre-hero {
        padding: 100px 0 60px;
    }

    .sobre-origin-card {
        padding: 32px 24px;
    }

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

    .sobre-results-grid {
        grid-template-columns: 1fr;
    }

    .sobre-institutional-box {
        padding: 24px 20px;
    }

    .sobre-institutional-item {
        flex-direction: column;
        gap: 4px;
    }

    .sobre-institutional-label {
        min-width: auto;
    }

    .sobre-cta-card {
        padding: 40px 24px;
    }
}
