/* ============================================================
   RCONECT WORLD — SOBRE 2.0 CINEMATOGRÁFICA
   Design premium baseado em UI futurista + glassmorphism
=============================================================== */

:root {
    --bg-dark: #0d0d10;
    --bg-soft: #15151b;
    --neon: #9b59ff;
    --neon-strong: #b76bff;
    --text: #ffffff;
    --gray: #bdbdbd;
}

body {
    background: radial-gradient(circle at top, #17141f, #0d0d10 75%);
    color: var(--text);
}

/* HERO */
.sobre-hero {
    text-align: center;
    padding: 140px 25px 110px;
}

.sobre-hero .titulo {
    font-size: 3rem;
    font-weight: 700;
}

.neon {
    color: var(--neon);
    text-shadow: 0 0 12px rgba(155, 89, 255, 0.8);
}

.sub {
    font-size: 1.2rem;
    margin-top: 10px;
    color: var(--gray);
}

/* BLOCO LATERAL */
.sobre-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 25px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.sobre-bloco {
    flex: 1;
}

.sobre-bloco h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--neon);
}

.sobre-bloco p {
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 1.05rem;
}

/* IMAGEM DESTAQUE DO SOBRE — usando logo.png + efeito neon */
.sobre-imagem {
    flex: 1;
    height: 350px;
    border-radius: 18px;

    background: radial-gradient(
        circle at center,
        rgba(155, 89, 255, 0.35),
        rgba(13, 13, 16, 0.95)
    ),
    url('../images/logo.png') center/45% no-repeat;

    backdrop-filter: blur(6px);
    border: 1px solid rgba(155, 89, 255, 0.25);

    box-shadow: 
        0 0 35px rgba(155, 89, 255, 0.45),
        inset 0 0 25px rgba(155, 89, 255, 0.15);

    display: flex;
    justify-content: center;
    align-items: center;
}

/* GRID DE ENTREGA */
.entregamos {
    padding: 90px 25px;
    text-align: center;
}

.entregamos h2 {
    font-size: 2.3rem;
    margin-bottom: 45px;
}

.grid {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.card {
    background: var(--bg-soft);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 0 12px rgba(155, 89, 255, 0.15);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(155, 89, 255, 0.5);
    box-shadow: 0 0 35px rgba(155, 89, 255, 0.35);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--neon);
}

.card p {
    color: var(--gray);
}

/* MISSÃO VISÃO VALORES */
.mvv {
    margin-top: 100px;
    padding: 80px 25px;
    display: flex;
    gap: 25px;
    justify-content: center;
}

.mvv-box {
    background: var(--bg-soft);
    padding: 35px 25px;
    width: 320px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: .3s;
}

.mvv-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(155, 89, 255, 0.25);
}

.mvv-box h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--neon);
}

.mvv-box p {
    color: var(--gray);
}

/* CTA FINAL */
.cta-final {
    padding: 100px 25px;
    text-align: center;
}

.cta-final h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.btn-cta {
    padding: 15px 40px;
    font-size: 1.2rem;
    background: var(--neon);
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(155, 89, 255, 0.45);
    transition: .3s;
}

.btn-cta:hover {
    background: var(--neon-strong);
    box-shadow: 0 0 30px rgba(155, 89, 255, 0.75);
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .sobre-container {
        flex-direction: column;
        text-align: center;
    }
    .sobre-imagem {
        width: 100%;
    }
    .mvv {
        flex-direction: column;
        align-items: center;
    }
}
