﻿/* =====================================
   SOBRE - NOVA VERSÃO
===================================== */

.sobreNova {
    padding-top: 100px;
}

/* WRAPPER */
.sobreWrapper {
    width: 85%;
    max-width: 1300px;
    margin: 0 auto;
}

/* HEADERS */
.sobreHeaderCentral {
    text-align: center;
    margin-bottom: 60px;
}

    .sobreHeaderCentral h2 {
        font-size: 34px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .sobreHeaderCentral p {
        color: #666;
        font-size: 16px;
    }

.sobreHeaderEsquerda {
    max-width: 700px;
    margin-bottom: 60px;
}

.badgeSobre {
    display: inline-block;
    background: rgba(240,90,35,0.1);
    color: var(--laranja-padrao);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ================= NUMEROS ================= */

.sobreNumerosNova {
    padding-bottom: 120px;
}

.sobreNumerosGrid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.numeroBox {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

    .numeroBox strong {
        display: block;
        font-size: 42px;
        color: var(--laranja-padrao);
        margin-bottom: 10px;
    }

    .numeroBox span {
        font-size: 15px;
        color: #666;
    }

    .numeroBox:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    }

    .numeroBox.destaque {
        border: 2px solid var(--laranja-padrao);
    }

/* ================= DIFERENCIAIS ================= */

.sobreDiferenciaisNova {
    padding: 120px 0;
    background: #fafafa;
}

.sobreDiferenciaisGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sobreCard {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: left;
    transition: 0.3s;
}

    .sobreCard:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.08);
        border-color: var(--laranja-padrao);
    }

    .sobreCard .icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .sobreCard h3 {
        font-size: 18px;
        color: var(--laranja-padrao);
        margin-bottom: 10px;
    }

    .sobreCard p {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
    }

/* ================= INSTITUCIONAL ================= */

.sobreInstitucionalNova {
    padding: 140px 0;
}

.sobreGridInstitucional {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobreTexto h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.sobreTexto p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.linhaInstitucional {
    width: 80px;
    height: 4px;
    background: var(--laranja-padrao);
    border-radius: 10px;
    margin-top: 30px;
}

.sobreImagem {
    height: 450px;
    border-radius: 30px;
    background-image: url('../images/imgContentInicial.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

/* ================= FUNCIONALIDADES BADGES ================= */

.funcionalidadesWrapper {
    margin-top: 35px;
}

.funcionalidadesGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.funcBadge {
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(240, 90, 35, 0.12);
    color: var(--laranja-padrao);
    border: 1px solid rgba(240, 90, 35, 0.25);
    transition: 0.3s ease;
    cursor: default;
}

    .funcBadge:hover {
        background: var(--laranja-padrao);
        color: #fff;
        box-shadow: 0 8px 20px rgba(240, 90, 35, 0.35);
    }

.mockupWrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    padding: 40px;
    max-width: 600px;
    margin: auto;
    position: relative;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #444;
}

/* Container geral */
.mockupContainer {
    position: relative;
    width: 100%;
}

/* Cards flutuantes */
.floatingCards {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 15px;
    position: relative;
    z-index: 10;
}

.cardFloat {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 16px rgba(255, 165, 0, 0.25);
    border-radius: 12px;
    padding: 12px 20px;
    flex: 1;
    min-width: 90px;
    text-align: center;
    cursor: default;
    transition: box-shadow 0.3s ease;
}

    .cardFloat:hover {
        box-shadow: 0 10px 24px rgba(255, 165, 0, 0.45);
    }

    .cardFloat .icon {
        font-size: 22px;
        margin-bottom: 6px;
        color: #ff7f00; /* Neon laranja */
    }

    .cardFloat .cardTitle {
        font-weight: 600;
        font-size: 14px;
        color: #ff7f00;
    }

/* Mockup do dispositivo */
.deviceMockup {
    width: 100%;
    background: #fefefe;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 2px solid #eee;
}

/* Tela do dispositivo */
.deviceScreen {
    background: #fff;
    border-radius: 12px;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.04);
    padding: 40px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Header do dashboard - as bolinhas */
.dashboardHeader {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
}

    .dot.red {
        background: #ff5f57;
    }

    .dot.yellow {
        background: #ffbd2e;
    }

    .dot.green {
        background: #27c93f;
    }

/* Conteúdo do dashboard */
.dashboardContent {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0px;
}

/* Cartão grande */
.dashboardCard.largeCard {
    background: #fff7e6;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.18);
    padding: 20px;
    color: #a45f00;
    font-weight: 600;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 25px;
}

    .dashboardCard.largeCard h4 {
        margin-bottom: 8px;
    }

/* Barra de progresso */
.progressBar {
    width: 100%;
    height: 8px;
    background: #ffdca8;
    border-radius: 6px;
    margin-top: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #ff7f00;
    border-radius: 6px;
    transition: width 0.5s ease;
}

/* Linha de cards pequenos */
.dashboardRow {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

/* Cartões pequenos */
.dashboardCard.smallCard {
    background: #fff3e0;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(255, 165, 0, 0.15);
    padding: 15px;
    flex: 1;
    color: #bf7000;
    font-weight: 600;
    text-align: center;
    cursor: default;
    transition: box-shadow 0.3s ease;
    font-size: 14px;
    margin-bottom: 15px
}

    .dashboardCard.smallCard:hover {
        box-shadow: 0 10px 24px rgba(255, 165, 0, 0.35);
    }

    .dashboardCard.smallCard h5 {
        margin-bottom: 6px;
        font-weight: 700;
    }

/* Responsividade básica */
@media (max-width: 550px) {
    .floatingCards {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cardFloat {
        flex: 1 1 45%;
        min-width: unset;
        margin-top: 24px;
    }

    .dashboardRow {
        flex-direction: column;
    }

    .dashboardCard.smallCard {
        margin-bottom: 12px;
    }
}

/* ================= RESPONSIVO ================= */

@media (max-width: 1024px) {

    .sobreNumerosGrid {
        flex-direction: column;
    }

    .sobreDiferenciaisGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobreGridInstitucional {
        grid-template-columns: 1fr;
    }

    .sobreImagem {
        height: 300px;
    }
}

@media (max-width: 600px) {

    .sobreDiferenciaisGrid {
        grid-template-columns: 1fr;
    }
}


/* ================= O QUE NOS TORNA DIFERENTES ================= */

.sobreDiferenteNova {
    padding: 100px 20px;
    background: #f4f6fa;
}

.sobreDiferenteGrid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.diferenteLeft h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.diferenteIntro {
    font-size: 18px;
    color: #5c5c5c;
    margin-bottom: 40px;
    line-height: 1.7;
}

.diferenteLista {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.diferenteItem {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.iconBox {
    width: 48px;
    height: 48px;
    background: rgba(63, 81, 181, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}

.diferenteItem h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.diferenteItem p {
    color: #6b6b6b;
    line-height: 1.6;
    font-size: 15px;
}

/* COLUNA DIREITA */

.diferenteRight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefitBox {
    background: #ffffff;
    padding: 18px 22px;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

    .benefitBox:hover {
        border: 1px solid #f05a23;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

/* RESPONSIVO */

@media (max-width: 1000px) {
    .sobreDiferenteGrid {
        grid-template-columns: 1fr;
    }

    .diferenteRight {
        grid-template-columns: 1fr;
    }
}
