/* ============================================================
   SOBRE (ABOUT) PAGE — Social AI
   Vibe: Estúdio de Design. Tipografia como imagem.
   ============================================================ */

/* ---------- HERO — MANIFESTO ---------- */
.sb-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

/* Aurora blobs */
.sb-hero__aurora {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.5;
}

.sb-hero__aurora--1 {
    width: 600px;
    height: 600px;
    top: -15%;
    right: -10%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.18) 0%, transparent 70%);
    animation: aurora-drift-1 10s ease-in-out infinite alternate;
}

.sb-hero__aurora--2 {
    width: 500px;
    height: 500px;
    bottom: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    animation: aurora-drift-2 12s ease-in-out infinite alternate;
}

@keyframes aurora-drift-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-40px, 30px) scale(1.1);
    }
}

@keyframes aurora-drift-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -20px) scale(1.05);
    }
}

.sb-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.sb-hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1.02;
    color: var(--text-dark);
    letter-spacing: -0.04em;
    margin-bottom: var(--space-xl);
}

.sb-hero__title .gradient-text {
    font-style: italic;
    display: inline;
}

.sb-hero__emoji {
    display: inline-block;
    font-size: 0.75em;
    animation: emoji-float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(255, 100, 0, 0.35));
}

@keyframes emoji-float {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-12px) rotate(5deg);
    }
}

.sb-hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-body);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ---------- DIVIDER ---------- */
.sb-divider {
    width: 100%;
    max-width: 600px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), rgba(255, 20, 147, 0.35), rgba(138, 43, 226, 0.3), transparent);
}


/* ---------- SECTION 02: ORIGEM ---------- */
.sb-origin {
    padding: var(--space-5xl) 0;
    position: relative;
}

.sb-origin__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.sb-origin__image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}

.sb-origin__img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* Selo giratório */
.sb-origin__badge {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
    z-index: 10;
}

.sb-origin__badge-svg {
    width: 100%;
    height: 100%;
    animation: badge-spin 20s linear infinite;
}

.sb-origin__badge-svg text {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    fill: var(--text-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes badge-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.sb-origin__badge-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.sb-origin__badge-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sb-origin__text {
    padding-right: var(--space-xl);
}

.sb-origin__tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--purple);
    margin-bottom: var(--space-lg);
}

.sb-origin__text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.sb-origin__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
    max-width: 480px;
}


/* ---------- SECTION 03: VALORES ---------- */
.sb-values {
    padding: var(--space-5xl) 0;
    background: rgba(255, 255, 255, 0.45);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    position: relative;
}

.sb-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), rgba(255, 20, 147, 0.3), transparent);
}

.sb-values__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.sb-values__tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--purple);
    margin-bottom: var(--space-md);
}

.sb-values__header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
}

.sb-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.sb-value-card {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-md);
    transition: transform var(--duration-normal) var(--ease-out),
        box-shadow var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.sb-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-normal) var(--ease-out);
}

.sb-value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.sb-value-card:hover::before {
    transform: scaleX(1);
}

.sb-value-card__emoji {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.sb-value-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.sb-value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    max-width: 30ch;
    margin: 0 auto;
}


/* ---------- SECTION 04: EQUIPE ---------- */
.sb-team {
    padding: var(--space-5xl) 0;
}

.sb-team__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.sb-team__tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--purple);
    margin-bottom: var(--space-md);
}

.sb-team__header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.sb-team__subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

.sb-team__image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-height: 500px;
}

.sb-team__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 500px;
    display: block;
}

.sb-team__glass-overlay {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.55);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.sb-team__overlay-tag {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}


/* ---------- SECTION 05: CTA FINAL ---------- */
.sb-cta {
    padding: var(--space-5xl) 0;
    background: var(--gradient);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    text-align: center;
}

.sb-cta__content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--space-md);
}

.sb-cta__content .gradient-text {
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sb-cta__content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
}

.sb-cta__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.sb-cta .btn-primary {
    background: #fff;
    color: var(--purple);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.sb-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.sb-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.sb-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}


/* ============================================================
   RESPONSIVE — Sobre Page
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .sb-origin__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .sb-origin__text {
        padding-right: 0;
        text-align: center;
    }

    .sb-origin__text p {
        margin: 0 auto;
    }

    .sb-origin__badge {
        bottom: -30px;
        right: 10px;
        width: 110px;
        height: 110px;
    }

    .sb-values__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .sb-hero__title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .sb-hero {
        min-height: 80vh;
        padding-top: 120px;
    }

    .sb-origin__badge {
        width: 90px;
        height: 90px;
        bottom: -20px;
        right: 0;
    }

    .sb-origin__badge-icon {
        width: 36px;
        height: 36px;
    }

    .sb-origin__badge-svg text {
        font-size: 10px;
    }

    .sb-team__image-wrap {
        max-height: 300px;
    }

    .sb-team__img {
        max-height: 300px;
    }

    .sb-team__glass-overlay {
        left: var(--space-md);
        bottom: var(--space-md);
        padding: 10px 18px;
    }

    .sb-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}