* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f4f7f5;
    min-height: 100vh;
}

/* CONTAINER */
.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
     margin-top: 2rem;
    
}

/* CARD */
.auth-card {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.auth-card.large {
    max-width: 520px;
}

/* LOGO */
.logo {
    padding-top: 15px;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    padding-bottom: 6px;
}

h1 {
    margin-bottom: 5px;
}

p {
    color: #6b7280;
    margin-bottom: 20px;
}

/* INPUTS */
.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    background: #fff;
    padding-bottom: 8px;
}

.input-group i {
    margin-right: 10px;
    color: #047857;
}

.input-group input,
.input-group select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* BOTﾃグ */
button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #047857;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #065f46;
}

/* INFO / PROMO */
.info, .promo {
    background: #ecfdf5;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 15px;
}

/* LINK */
.link {
    display: block;
    margin-top: 15px;
    font-size: 14px;
}

.link a {
    color: #047857;
    text-decoration: none;
    font-weight: bold;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }
}


.logoon {
    width: 300px;
    height: auto;
    object-fit: contain;
    border-radius: 3px;
    color: #047857;
}






/* BAR INICIO */
.bar-inicio {
    position: fixed;
    top: 60px; /* fica logo abaixo do topbar */
    left: 0;
    width: 100%;
    height: 58px;
    background: linear-gradient(135deg, #15803d, #5b74ff);
    border-bottom: 1px solid #e5e7eb;
    z-index: 999;
    display: flex;
    align-items: center;
}

.bar-inicio-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.bar-esquerda {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.bar-centro {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.bar-direita {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.bar-inicio a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

.bar-inicio a:hover {
    color: #080808;
}

.bar-centro a {
    position: relative;
}

.bar-centro a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #ffffff;
    transition: 0.3s ease;
}

.bar-centro a:hover::after {
    width: 100%;
}

.btn-cadastrar {
    background: #ffffff;
    color: #000000 !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-cadastrar:hover {
    background: #457466;
}



.content {
    margin-top: 130px;
}

@media (max-width: 768px) {
    .bar-inicio {
        height: auto;
        padding: 10px 0;
    }

    .bar-inicio-container {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .bar-esquerda,
    .bar-centro,
    .bar-direita {
        justify-content: center;
    }

    .bar-centro {
        gap: 20px;
        flex-wrap: wrap;
    }


    .content {
        margin-top: 160px;
    }
}*/



/* =========================
   MAIN INICIO / LANDING PAGE
========================= */
.inicio {
    width: 100%;
    background: #f8fafc;
    padding-top: 140px;
    overflow-x: hidden;
}

/* HERO */
.hero-inicio {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px 60px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
    min-height: 90vh;

    position: relative;
    overflow: hidden;

    background: radial-gradient(
        circle at 50% 40%,
        rgba(99, 241, 142, 0.15),
        rgba(99, 241, 158, 0.08) 30%,
        rgba(255, 255, 255, 1) 70%
    );
}


.hero-texto h1 {
    font-size: 62px;
    line-height: 1.05;
    font-weight: 800;
    color: #111827;
    margin: 20px 0 20px;
}

.hero-texto h1 span {
    color: #047857;
}

.hero-texto p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    max-width: 650px;
    margin-bottom: 25px;
}

.tag-hero,
.mini-titulo {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(53, 87, 255, 0.08);
    color: #047857;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-beneficios {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 25px 0 30px;
}

.hero-beneficios span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 30px;
    font-size: 14px;
    color: #374151;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.hero-beneficios i {
    color: #16a34a;
    font-size: 18px;
}

.hero-botoes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 15px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-principal {
    background: #047857;
    color: #fff;
    box-shadow: 0 10px 25px rgba(53, 87, 255, 0.25);
}

.btn-principal:hover {
    background: #047857;
    transform: translateY(-2px);
}

.btn-secundario {
    border: 1.5px solid #d1d5db;
    color: #111827;
    background: #fff;
}

.btn-secundario:hover {
    border-color:    #047857;
    color: #047857;
}

.hero-imagem {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-sistema {
    width: 100%;
    max-width: 560px;
    background: linear-gradient(135deg, #eef2ff, #ffffff);
    border-radius: 26px;
    padding: 18px;
    box-shadow: 0 20px 60px rgba(17, 24, 39, 0.10);
    border: 1px solid #e5e7eb;
}

.mockup-sistema img {
    width: 100%;
    display: block;
    border-radius: 18px;
}

/* CONFIANÇA */
.secao-confianca {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 70px;
    text-align: center;
}

.secao-confianca p {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 30px;
}

.secao-confianca p span {
    color: #047857;
    font-weight: 700;
}

.itens-confianca {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.item-confianca {
    padding: 14px 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    color: #374151;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

/* TOPO SEÇÃO */
.topo-secao {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
    padding: 0 20px;
}

.topo-secao h2 {
    font-size: 48px;
    color: #111827;
    line-height: 1.15;
    margin: 18px 0 15px;
}

.topo-secao p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.8;
}

/* RECURSOS */
.secao-recursos {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 90px;
}

.grid-recursos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card-recurso {
    background: #eef0ff;
    border-radius: 24px;
    padding: 30px;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.card-recurso:hover {
    transform: translateY(-6px);
    border-color: #c7d2fe;
    box-shadow: 0 12px 30px rgba(53, 87, 255, 0.08);
}

.card-recurso i {
    font-size: 42px;
    color: #047857;
    margin-bottom: 18px;
}

.card-recurso h3 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 12px;
}

.card-recurso p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
}

/* DESTAQUE */
.secao-destaque {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.destaque-texto h2 {
    font-size: 48px;
    line-height: 1.15;
    color: #111827;
    margin: 18px 0;
}

.destaque-texto p {
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 24px;
}

.lista-destaque {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.lista-destaque li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 17px;
    color: #374151;
}

.lista-destaque i {
    font-size: 20px;
    color: #047857;
}

.destaque-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mini-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mini-card h3 {
    font-size: 24px;
    color: #047857;
    margin-bottom: 12px;
}

.mini-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

/* CTA FINAL */
.secao-cta-final {
    padding: 20px 20px 100px;
}

.cta-final-box {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 30px;
    text-align: center;
     background: linear-gradient(135deg, #15803d, #5b74ff);
    border-radius: 30px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(53, 87, 255, 0.20);
}

.cta-final-box h2 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.cta-final-box p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.92);
}

.centralizar-botoes {
    justify-content: center;
}

.cta-final-box .btn-secundario {
    background: #ffffff;
    color: #111827;
    border: 1px solid transparent;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
    .hero-inicio,
    .secao-destaque {
        grid-template-columns: 1fr;
    }

    .hero-texto {
        text-align: center;
    }

    .hero-texto p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-beneficios,
    .hero-botoes {
        justify-content: center;
    }

    .destaque-texto {
        text-align: center;
    }

    .lista-destaque li {
        justify-content: center;
    }

    .destaque-texto .btn-principal {
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .grid-recursos {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-texto h1,
    .topo-secao h2,
    .destaque-texto h2,
    .cta-final-box h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .inicio {
        padding-top: 155px;
    }

    .hero-inicio {
        padding: 40px 20px 50px;
        min-height: auto;
    }

    .hero-texto h1,
    .topo-secao h2,
    .destaque-texto h2,
    .cta-final-box h2 {
        font-size: 32px;
    }

    .hero-texto p,
    .topo-secao p,
    .destaque-texto p,
    .cta-final-box p,
    .card-recurso p {
        font-size: 16px;
    }

    .grid-recursos,
    .destaque-cards {
        grid-template-columns: 1fr;
    }

    .secao-confianca p {
        font-size: 20px;
    }

    .card-recurso,
    .mini-card {
        padding: 24px;
    }
}


/* =========================
   DOWNLOAD PAGE
========================= */
.download-page {
    width: 100%;
    background: #f8fafc;
    padding-top: 140px;
    overflow-x: hidden;
}

.download-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
}

.download-hero-content {
    text-align: center;
    padding: 70px 25px;
    border-radius: 30px;
    background: radial-gradient(circle at center, #e9ecff 0%, #f4f6ff 35%, #ffffff 75%);
    border: 1px solid #ececff;
}

.download-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(53, 87, 255, 0.08);
    color: #3557ff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.download-hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 18px;
}

.download-hero-content p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
}

.section-title {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
    padding: 0 20px;
}

.section-title h2 {
    font-size: 44px;
    color: #111827;
    line-height: 1.15;
    margin: 18px 0 15px;
}

.section-title p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.8;
}

.download-intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 80px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.download-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.download-card:hover {
    transform: translateY(-6px);
}

.destaque-android {
    border: 1px solid #cfd8ff;
    box-shadow: 0 14px 35px rgba(53, 87, 255, 0.10);
}

.download-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 38px;
}

.download-icon.android {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.download-icon.ios {
    background: rgba(17, 24, 39, 0.08);
    color: #111827;
}

.download-icon.windows {
    background: rgba(59, 130, 246, 0.10);
    color: #2563eb;
}

.download-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 16px;
}

.download-card-top h3 {
    font-size: 24px;
    color: #111827;
}

.status {
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.status.disponivel {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.status.indisponivel {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
}

.download-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.download-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.download-info span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-size: 15px;
}

.download-info i {
    font-size: 18px;
    color: #15803d;
}

.download-actions {
    margin-bottom: 25px;
}

.btn-download-principal,
.btn-download-disabled {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    border-radius: 14px;
    padding: 15px 18px;
    font-weight: 700;
    font-size: 15px;
}

.btn-download-principal {
    background: #15803d;
    color: #fff;
}

.btn-download-principal:hover {
    background: #15803d;
}

.btn-download-disabled {
    background: #e5e7eb;
    color: #6b7280;
    cursor: not-allowed;
}

.download-versoes h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #111827;
}

.download-versoes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.download-versoes ul li {
    margin-bottom: 10px;
}

.download-versoes ul li a {
    text-decoration: none;
    color: #15803d;
    font-weight: 600;
}

.download-versoes ul li a:hover {
    text-decoration: underline;
}

/* COMO USAR */
.como-usar-vi-pos {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 90px;
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.passo-card {
    background: #eef2ff;
    border-radius: 24px;
    padding: 28px;
    transition: 0.3s ease;
}

.passo-card:hover {
    transform: translateY(-5px);
}

.passo-numero {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #15803d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.passo-card h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 12px;
}

.passo-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

/* AJUDA */
.download-ajuda {
    padding: 0 20px 100px;
}

.download-ajuda-box {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 25px;
    border-radius: 30px;
    background: linear-gradient(135deg, #15803d, #5b74ff);
    color: #fff;
    box-shadow: 0 20px 60px rgba(53, 87, 255, 0.20);
}

.download-ajuda-box h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.download-ajuda-box p {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
}

.download-ajuda-botoes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-ajuda-principal,
.btn-ajuda-secundario {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.btn-ajuda-principal {
    background: #fff;
    color: #111827;
}

.btn-ajuda-secundario {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.45);
}

/* RESPONSIVO */
@media (max-width: 1100px) {
    .download-grid,
    .passos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .download-page {
        padding-top: 155px;
    }

    .download-hero-content {
        padding: 50px 20px;
    }

    .download-hero-content h1,
    .section-title h2,
    .download-ajuda-box h2 {
        font-size: 32px;
    }

    .download-hero-content p,
    .section-title p,
    .download-ajuda-box p {
        font-size: 16px;
    }

    .download-grid,
    .passos-grid {
        grid-template-columns: 1fr;
    }

    .download-card-top {
        flex-direction: column;
        align-items: flex-start;
    }
}




/* SOBRE NOS *//* =========================
   SOBRE NÓS
========================= */
.sobre_nos {
    width: 100%;
    background: #f8fafc;
    padding-top: 140px;
    overflow-x: hidden;
}

/* HERO */
.sobre-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 30px;
}

.sobre-hero-content {
    text-align: center;
    padding: 70px 25px;
    border-radius: 30px;
    background: radial-gradient(circle at center, #e9ecff 0%, #f4f6ff 35%, #ffffff 75%);
    border: 1px solid #ececff;
}

.sobre-hero h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #111827;
    margin: 18px 0;
}

.sobre-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
}

/* BLOCO PRINCIPAL */
.sobre-bloco {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: start;
}

.sobre-texto {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.sobre-texto h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 18px;
}

.sobre-texto p {
    font-size: 17px;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 16px;
}

/* WHATSAPP */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #047857;
    color: #fff;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    margin-top: 10px;
    transition: 0.3s ease;
}

.btn-whatsapp:hover {
    background: #0a4420;
    transform: translateY(-2px);
}

.btn-whatsapp i {
    font-size: 20px;
}

/* CARDS LADO DIREITO */
.sobre-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.sobre-cards .mini-card {
    background: #eef2ff;
    border-radius: 22px;
    padding: 28px;
    min-height: 170px;
    border: 1px solid transparent;
    transition: 0.3s ease;
}

.sobre-cards .mini-card:hover {
    transform: translateY(-4px);
    border-color: #c7d2fe;
}

.sobre-cards .mini-card h3 {
    font-size: 24px;
    color: #3557ff;
    margin-bottom: 12px;
}

.sobre-cards .mini-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

/* MISSÃO */
.sobre-missao {
    padding: 0 20px 80px;
}

.sobre-missao-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 60px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.sobre-missao-box h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 18px;
}

.sobre-missao-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
    max-width: 760px;
    margin: 0 auto 12px;
}

/* TÍTULOS DE SEÇÃO */
.section-title {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
    padding: 0 20px;
}

.section-title h2 {
    font-size: 44px;
    line-height: 1.15;
    color: #111827;
    margin: 18px 0 15px;
}

.section-title p {
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
}

.mini-titulo {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(53, 87, 255, 0.08);
    color: #3557ff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* LOCAL */
.sobre-local {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 90px;
}

.local-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.local-card {
    background: #ffffff;
    padding: 30px 24px;
    border-radius: 22px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.local-card i {
    font-size: 40px;
    color: #3557ff;
    margin-bottom: 14px;
}

.local-card h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 10px;
}

.local-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

/* REDES */
.sobre-redes {
    padding: 0 20px 90px;
}

.sobre-redes-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: #eef2ff;
    padding: 60px 30px;
    border-radius: 28px;
}

.sobre-redes-box h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 16px;
}

.sobre-redes-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 24px;
}

.redes-botoes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #E1306C;
    color: #fff;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-instagram:hover {
    transform: translateY(-2px);
}

.btn-instagram i {
    font-size: 20px;
}

/* CTA FINAL */
.sobre-cta {
    padding: 0 20px 100px;
}

.sobre-cta-box {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 25px;
    background: linear-gradient(135deg, #3557ff, #5b74ff);
    color: #fff;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(53, 87, 255, 0.20);
}

.sobre-cta-box h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.sobre-cta-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.93);
}

.cta-botoes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-cta-principal,
.btn-cta-secundario {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 14px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.btn-cta-principal {
    background: #fff;
    color: #111827;
}

.btn-cta-secundario {
    border: 1.5px solid rgba(255,255,255,0.5);
    color: #fff;
    background: transparent;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1100px) {
    .sobre-grid {
        grid-template-columns: 1fr;
    }

    .sobre-texto {
        text-align: center;
    }

    .local-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .sobre-hero h1,
    .sobre-missao-box h2,
    .section-title h2,
    .sobre-redes-box h2,
    .sobre-cta-box h2 {
        font-size: 36px;
    }

    .sobre-texto h2 {
        font-size: 32px;
    }

    .sobre-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sobre_nos {
        padding-top: 155px;
    }

    .sobre-hero {
        padding: 40px 15px 20px;
    }

    .sobre-hero-content,
    .sobre-missao-box,
    .sobre-redes-box,
    .sobre-cta-box {
        padding: 40px 20px;
        border-radius: 22px;
    }

    .sobre-bloco,
    .sobre-local,
    .sobre-redes,
    .sobre-cta,
    .sobre-missao {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sobre-hero h1,
    .sobre-missao-box h2,
    .section-title h2,
    .sobre-redes-box h2,
    .sobre-cta-box h2 {
        font-size: 30px;
    }

    .sobre-hero p,
    .sobre-missao-box p,
    .section-title p,
    .sobre-redes-box p,
    .sobre-cta-box p,
    .sobre-texto p,
    .local-card p,
    .sobre-cards .mini-card p {
        font-size: 16px;
    }

    .sobre-texto {
        padding: 24px;
        border-radius: 20px;
    }

    .sobre-texto h2 {
        font-size: 28px;
    }

    .sobre-cards,
    .local-cards {
        grid-template-columns: 1fr;
    }

    .sobre-cards .mini-card,
    .local-card {
        padding: 24px;
        min-height: auto;
    }

    .btn-whatsapp,
    .btn-instagram,
    .btn-cta-principal,
    .btn-cta-secundario {
        width: 100%;
    }

    .redes-botoes,
    .cta-botoes {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .sobre_nos {
        padding-top: 160px;
    }

    .sobre-hero h1,
    .sobre-missao-box h2,
    .section-title h2,
    .sobre-redes-box h2,
    .sobre-cta-box h2 {
        font-size: 26px;
    }

    .mini-titulo {
        font-size: 11px;
        padding: 7px 12px;
    }

    .sobre-texto h2 {
        font-size: 24px;
    }

    .btn-whatsapp,
    .btn-instagram,
    .btn-cta-principal,
    .btn-cta-secundario {
        font-size: 14px;
        padding: 13px 16px;
    }
}


.divida_page{
    padding: 20px;
}

.alerta-divida-atrasada{
    display:flex;
    align-items:center;
    gap:12px;
    background:#ffe5e5;
    border:1px solid #ffb3b3;
    color:#a40000;
    padding:14px 16px;
    border-radius:12px;
    margin-bottom:20px;
}

.alerta-divida-atrasada i{
    font-size:26px;
}

.filtro-divida{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    align-items:center;
    margin:20px 0;
}

.filtro-divida select,
.filtro-divida input{
    padding:10px 12px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
}

.status-divida{
    padding:5px 10px;
    border-radius:6px;
    font-size:12px;
    font-weight:700;
    display:inline-block;
}

.status-divida.pendente{
    background:#f1f1f1;
    color:#555;
}

.status-divida.parcial{
    background:#fff3cd;
    color:#856404;
}

.status-divida.liquidada{
    background:#d4edda;
    color:#155724;
}

.status-divida.atrasada{
    background:#f8d7da;
    color:#721c24;
}

.produto-btn.whatsapp{
    background:#25D366;
    color:#fff;
}

.divida-charts{
    margin:20px 0;
}

.divida-charts .chart-box{
    background:#fff;
    border-radius:12px;
    padding:15px;
    box-shadow:0 3px 10px rgba(0,0,0,0.05);
}

@media (max-width: 768px){
    .divida_page{
        padding: 15px;
    }

    .filtro-divida{
        flex-direction:column;
        align-items:stretch;
    }

    .alerta-divida-atrasada{
        align-items:flex-start;
    }
}




.divida_page{
    padding: 20px;
}

.divida-layout{
    display:grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap:20px;
    margin-top:20px;
}

@media (max-width: 900px){
    .divida-layout{
        grid-template-columns: 1fr;
    }
}

.vendas-card.resumo {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.vendas-card.resumo h3 {
    font-size: 20px;
    margin-bottom: 18px;
    color: #222;
}

.vendas-card.resumo .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.vendas-card.resumo .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.vendas-card.resumo .form-group input,
.vendas-card.resumo .form-group select,
.vendas-card.resumo .form-group textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #dcdfe4;
    border-radius: 10px;
    background: #f9fafb;
    font-size: 14px;
    color: #222;
    outline: none;
    transition: 0.2s ease;
}

.vendas-card.resumo .form-group input:focus,
.vendas-card.resumo .form-group select:focus,
.vendas-card.resumo .form-group textarea:focus {
    border-color: #1b7f5c;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(27,127,92,0.10);
}

.vendas-card.resumo .form-group textarea {
    min-height: 90px;
    resize: vertical;
}

.vendas-card.resumo .resumo-total,
.vendas-card.resumo .resumo-lucro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fb;
    border: 1px solid #eceff3;
    border-radius: 10px;
    padding: 12px 14px;
    margin-top: 10px;
}

.vendas-card.resumo .resumo-total span,
.vendas-card.resumo .resumo-lucro span {
    font-size: 14px;
    color: #555;
    font-weight: 600;
}

.vendas-card.resumo .resumo-total strong,
.vendas-card.resumo .resumo-lucro strong {
    font-size: 18px;
    color: #1f2937;
}

.vendas-card.resumo .vendas-btn.fechar {
    width: 100%;
    margin-top: 18px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #1b7f5c;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.vendas-card.resumo .vendas-btn.fechar:hover {
    background: #145c43;
}

@media (max-width: 768px) {
    .vendas-card.resumo {
        padding: 15px;
    }

    .vendas-card.resumo h3 {
        font-size: 18px;
    }

    .vendas-card.resumo .resumo-total strong,
    .vendas-card.resumo .resumo-lucro strong {
        font-size: 16px;
    }
}

.status-divida {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

.status-divida.pendente {
    background: #f1f1f1;
    color: #555;
}

.status-divida.parcial {
    background: #fff3cd;
    color: #856404;
}

.status-divida.liquidada {
    background: #d4edda;
    color: #155724;
}

.status-divida.atrasada {
    background: #f8d7da;
    color: #721c24;
}



.sub-tabela{
    margin-top: 4px;
    font-size: 13px;
    color: #777;
}

.status-cliente,
.status-divida{
    display: inline-block;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.status-ok{
    background: #d4edda;
    color: #155724;
}

.status-bloqueado{
    background: #f8d7da;
    color: #721c24;
}

.status-pendente{
    background: #f1f1f1;
    color: #555;
}

.status-parcial{
    background: #fff3cd;
    color: #856404;
}

.status-liquidada{
    background: #d4edda;
    color: #155724;
}

.status-atrasada{
    background: #f8d7da;
    color: #721c24;
}

.saldo-devendo{
    color: #c0392b;
    font-weight: 700;
}

.saldo-ok{
    color: #198754;
    font-weight: 700;
}

.valor-pago{
    color: #198754;
    font-weight: 600;
}

.produto-btn.whatsapp{
    background: #25D366;
    color: #fff;
}

.produto-btn.whatsapp:hover{
    background: #1ebe5d;
}

.produto-acoes{
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}


.detalhes-cliente-box{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
}

.linha-detalhe{
    background: #f8f9fb;
    border: 1px solid #eceff3;
    border-radius: 10px;
    padding: 12px 14px;
    color: #333;
    font-size: 14px;
}

.linha-detalhe strong{
    color: #111;
}



/* =========================
   MODAL DETALHES CLIENTE
========================= */
#modalDetalhesCliente .modal-box,
#modalItensDivida .modal-box,
#modalHistoricoPagamentos .modal-box{
    width: 100%;
    max-width: 760px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

#modalDetalhesCliente .modal-header,
#modalItensDivida .modal-header,
#modalHistoricoPagamentos .modal-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #ececec;
}

#modalDetalhesCliente .modal-header h3,
#modalItensDivida .modal-header h3,
#modalHistoricoPagamentos .modal-header h3{
    margin: 0;
    font-size: 20px;
    color: #1f2937;
}

#modalDetalhesCliente .modal-close,
#modalItensDivida .modal-close,
#modalHistoricoPagamentos .modal-close{
    border: none;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
    color: #666;
}

#conteudoDetalhesCliente,
#conteudoItensDivida,
#conteudoHistoricoPagamentos{
    padding: 18px 20px;
}

.detalhes-cliente-box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.linha-detalhe{
    background: #f8f9fb;
    border: 1px solid #eceff3;
    border-radius: 12px;
    padding: 14px;
    color: #333;
    font-size: 14px;
    line-height: 1.45;
}

.linha-detalhe strong{
    display: block;
    color: #111827;
    margin-bottom: 4px;
    font-size: 13px;
}

.historico-pagamentos-vazio{
    text-align: center;
    color: #888;
    padding: 20px 0;
}

@media (max-width: 768px){
    .detalhes-cliente-box{
        grid-template-columns: 1fr;
    }

    #modalDetalhesCliente .modal-box,
    #modalItensDivida .modal-box,
    #modalHistoricoPagamentos .modal-box{
        max-width: 95%;
    }

    #modalDetalhesCliente .modal-header h3,
    #modalItensDivida .modal-header h3,
    #modalHistoricoPagamentos .modal-header h3{
        font-size: 18px;
    }
}

.produto-btn.apagar{
    background: #dc3545;
    color: #fff;
}

.produto-btn.apagar:hover{
    background: #bb2d3b;
}

/* ===== TOPBAR FIXA ===== */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 20px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1001;
}

.logoi {
    display: flex;
    align-items: center;
}

.logoon1 {
    width: 95px;
    height: auto;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

.language-select-wrapper {
    width: 170px;
    margin-right: auto;
    margin-left: 15px;
}

.user {
    text-align: right;
    line-height: 1.3;
}

.user span {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #111827;
}

.user small {
    font-size: 12px;
    color: #6b7280;
}

#menu-btn-inicio {
    font-size: 30px;
    color: #111827;
    cursor: pointer;
    display: none;
}

/* ===== BAR INICIO DESKTOP ===== */
.bar-inicio {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #15803d, #5b74ff);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
}

.bar-inicio-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.bar-esquerda,
.bar-centro,
.bar-direita {
    display: flex;
    align-items: center;
}

.bar-esquerda {
    justify-content: flex-start;
}

.bar-centro {
    justify-content: center;
    gap: 30px;
}

.bar-direita {
    justify-content: flex-end;
}

.bar-inicio a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

.bar-inicio a:hover {
    color: #111827;
}

.btn-cadastrar {
    background: #fff;
    color: #111827 !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.user-mobile {
    display: none;
}

.inicio,
.download-page,
.sobre_nos {
    padding-top: 140px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .topbar {
        height: 70px;
        padding: 0 14px;
        gap: 10px;
    }

    .logoon1 {
        width: 100px;
        height: auto;
        padding: 0;
        margin: 0;
    }

    .language-select-wrapper {
        width: 130px;
        margin: 0;
    }

    .user {
        display: none;
    }

    #menu-btn-inicio {
        display: block;
        font-size: 30px;
        color: #111827;
        cursor: pointer;
        flex-shrink: 0;
    }

    .bar-inicio {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        z-index: 999;
        padding: 0;
    }

    .bar-inicio.active {
        display: block;
    }

    .bar-inicio-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 18px 18px;
    }

    .bar-esquerda,
    .bar-centro,
    .bar-direita {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .bar-inicio a {
        display: block;
        width: 100%;
        text-align: center;
        color: #1f2937;
        font-size: 17px;
        font-weight: 500;
        padding: 14px 10px;
        border-bottom: 1px solid #f1f1f1;
        text-decoration: none;
    }

    .bar-centro a,
    .bar-esquerda a {
        background: transparent;
    }

    .bar-direita {
        margin-top: 14px;
    }

    .btn-cadastrar {
        width: 100% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 14px 18px !important;
        border-radius: 12px;
        background: #047857;
        color: #fff !important;
        font-size: 16px;
        font-weight: 700;
        border-bottom: none !important;
        margin: 0;
    }

    .btn-cadastrar:hover {
        background: #065f46;
    }

    .user-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid #e5e7eb;
    }

    .user-mobile span {
        font-size: 16px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 6px;
    }

    .user-mobile small {
        font-size: 14px;
        color: #6b7280;
        line-height: 1.5;
    }

    .inicio,
    .download-page,
    .sobre_nos {
        padding-top: 90px;
    }
}



.auth-container1 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    margin-top: 6rem;
}


