* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0f172a;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.secao {
    padding: 90px 0;
}

.cabecalho-secao {
    text-align: center;
    margin-bottom: 50px;
}

.titulo-menor {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #facc15;
    margin-bottom: 12px;
}

.cabecalho-secao h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.bloco-texto {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.bloco-texto p {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 18px;
}

.topo-site {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 20px;
}

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #facc15;
    letter-spacing: 1px;
}

.menu ul {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.menu a {
    color: #e5e7eb;
    font-size: 0.98rem;
    font-weight: 600;
    transition: 0.25s ease;
}

.menu a:hover {
    color: #facc15;
}

/* HERO COM IMAGEM DE FUNDO */
.hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 100px;
    background:
        linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.84)),
        url("/static/img/fundo-hero.jpg") center center / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(250, 204, 21, 0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.10), transparent 30%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-texto {
    max-width: 860px;
    text-align: center;
}

.tag-linha {
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(250, 204, 21, 0.12);
    border: 1px solid rgba(250, 204, 21, 0.25);
    color: #facc15;
    font-size: 0.92rem;
    font-weight: bold;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.35);
}

.subtitulo {
    max-width: 760px;
    margin: 0 auto 18px;
    font-size: 1.08rem;
    color: #e2e8f0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-botoes {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-principal {
    background: #facc15;
    color: #111827;
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.22);
}

.btn-principal:hover {
    background: #eab308;
    transform: translateY(-2px);
}

.btn-secundario {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

.btn-secundario:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.32);
    transform: translateY(-2px);
}

.sobre {
    background: #111827;
}

.solucoes {
    background: #0f172a;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(250, 204, 21, 0.22);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.card h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 14px;
}

.card p {
    color: #cbd5e1;
    font-size: 1rem;
}

.demonstracoes {
    background: #0f172a;
}

.grid-galeria {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.galeria-card {
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
    transition: 0.3s ease;
}

.galeria-card:hover {
    transform: translateY(-6px);
    border-color: rgba(250, 204, 21, 0.22);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.galeria-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.galeria-conteudo {
    padding: 22px;
}

.galeria-conteudo h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.galeria-conteudo p {
    color: #cbd5e1;
    font-size: 1rem;
}

.video-institucional {
    background: #111827;
}

.video-box {
    max-width: 950px;
    margin: 0 auto 30px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.30);
    background: #000000;
}

.video-box video {
    width: 100%;
    display: block;
}

.chamada-final {
    background:
        linear-gradient(135deg, rgba(250, 204, 21, 0.10), rgba(59, 130, 246, 0.10)),
        #0f172a;
}

.chamada-box {
    text-align: center;
    max-width: 900px;
}

.chamada-box h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.chamada-box p {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.contato {
    background: #111827;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
    align-items: start;
    margin-top: 30px;
}

.contato-whats-box,
.form-contato {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.contato-whats-box h3,
.form-contato h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: #ffffff;
}

.contato-whats-box p {
    color: #cbd5e1;
    margin-bottom: 22px;
}

.form-contato {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.campo-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.campo-form label {
    font-size: 0.96rem;
    font-weight: bold;
    color: #e5e7eb;
}

.campo-form input,
.campo-form textarea {
    width: 100%;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.98rem;
    outline: none;
    transition: 0.25s ease;
}

.campo-form input::placeholder,
.campo-form textarea::placeholder {
    color: #94a3b8;
}

.campo-form input:focus,
.campo-form textarea:focus {
    border-color: #facc15;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.12);
}

.campo-form textarea {
    resize: vertical;
    min-height: 140px;
}

.rodape-site {
    background: #0b1120;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 0;
}

.rodape-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.rodape-marca h3 {
    color: #facc15;
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.rodape-marca p,
.rodape-info p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .topo-container {
        flex-direction: column;
        justify-content: center;
        padding: 16px 0;
    }

    .menu ul {
        justify-content: center;
        gap: 14px;
    }

    .hero {
        padding: 90px 0 80px;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .subtitulo {
        font-size: 1rem;
    }

    .grid-cards,
    .grid-galeria {
        grid-template-columns: 1fr;
    }

    .cabecalho-secao h2,
    .chamada-box h2 {
        font-size: 1.8rem;
    }

    .galeria-card img {
        height: 240px;
    }

    .secao {
        padding: 75px 0;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .tag-linha {
        font-size: 0.82rem;
        padding: 7px 12px;
    }

    .btn {
        width: 100%;
    }

    .hero-botoes {
        flex-direction: column;
    }

    .contato-whats-box,
    .form-contato,
    .card,
    .galeria-conteudo {
        padding: 22px;
    }
}

.btn-apk-topo {
    background: #facc15;
    color: #111827 !important;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.22);
    transition: 0.3s ease;
}

.btn-apk-topo:hover {
    background: #eab308;
    color: #111827 !important;
}

.btn-aplicativo {
    background: rgba(34, 197, 94, 0.18);
    color: #dcfce7;
    border: 1px solid rgba(34, 197, 94, 0.55);
    box-shadow: 0 0 18px rgba(34, 197, 94, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-aplicativo:hover {
    background: rgba(34, 197, 94, 0.28);
    color: #ffffff;
    border-color: rgba(74, 222, 128, 0.95);
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.38);
    transform: translateY(-2px);
}

.btn-aplicativo::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 90%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.18),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-aplicativo:hover::before {
    left: 130%;
}







/* =========================
   SEÇÃO PROGRAMA DE EXPANSÃO
========================= */
.expansao-destaque {
    background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
    padding: 90px 0;
}

.expansao-destaque .cabecalho-secao,
.expansao-destaque .bloco-texto {
    text-align: center;
}

.expansao-destaque .titulo-menor {
    display: inline-block;
    color: #d4a017 !important;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.expansao-destaque .cabecalho-secao h2 {
    color: #0f172a !important;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.expansao-destaque .bloco-texto {
    max-width: 900px;
    margin: 0 auto 35px auto;
}

.expansao-destaque .bloco-texto p {
    color: #334155 !important;
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.expansao-destaque .grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 35px;
}

.expansao-destaque .card {
    background: #ffffff !important;
    border-radius: 18px;
    padding: 28px 24px;
    border-left: 5px solid #0d6efd;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.expansao-destaque .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.14);
}

.expansao-destaque .card h3 {
    color: #0f172a !important;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.4;
}

.expansao-destaque .card p {
    color: #475569 !important;
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
}

.expansao-box {
    margin-top: 35px;
    background: #0f172a !important;
    border-radius: 20px;
    padding: 38px 32px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.expansao-box .titulo-menor {
    color: #fbbf24 !important;
    margin-bottom: 10px;
}

.expansao-box h2 {
    color: #ffffff !important;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.expansao-box p {
    color: #cbd5e1 !important;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 28px auto;
}

.expansao-box .hero-botoes {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.expansao-destaque .btn.btn-principal {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #ffffff !important;
    border: none;
}

.expansao-destaque .btn.btn-principal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(22, 163, 74, 0.28);
}

.expansao-destaque .btn.btn-secundario {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.expansao-destaque .btn.btn-secundario:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* =========================
   SEÇÃO PARA INVESTIDORES
========================= */


.investidores-premium {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(255, 196, 0, 0.10), transparent 28%),
        linear-gradient(180deg, #081425 0%, #0b1730 100%);
    overflow: hidden;
}

.investidores-premium::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(255, 196, 0, 0.08);
    filter: blur(30px);
    border-radius: 50%;
    pointer-events: none;
}

.centralizado {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 30px;
}

.texto-destaque-investidor {
    max-width: 760px;
    margin: 16px auto 0;
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.investidor-hero-box {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 28px;
    margin-top: 35px;
    margin-bottom: 35px;
    align-items: stretch;
}

.investidor-hero-conteudo,
.investidor-hero-lateral {
    border-radius: 22px;
}

.investidor-hero-conteudo {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 20px 50px rgba(0,0,0,0.24);
    padding: 34px;
    backdrop-filter: blur(8px);
}

.investidor-hero-conteudo h3 {
    font-size: 2rem;
    line-height: 1.2;
    color: #ffffff;
    margin: 14px 0 18px;
}

.investidor-hero-conteudo p {
    font-size: 1.04rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.88);
    margin-bottom: 18px;
}

.selo-investidor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 196, 0, 0.12);
    color: #ffd34d;
    border: 1px solid rgba(255, 196, 0, 0.30);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.investidor-hero-lateral {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mini-card-investidor {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}

.mini-card-investidor strong {
    display: block;
    font-size: 1.04rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.mini-card-investidor span {
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    font-size: 0.98rem;
}

.investidor-beneficios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 34px 0;
}

.investidor-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
    border: 1px solid rgba(12, 22, 45, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.investidor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(0,0,0,0.22);
}

.numero-card {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f0b90b, #ffd95a);
    color: #0b1730;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 18px;
    font-size: 1rem;
}

.investidor-card h3 {
    font-size: 1.22rem;
    color: #0b1730;
    margin-bottom: 14px;
    line-height: 1.35;
}

.investidor-card p {
    color: #4e5a6b;
    line-height: 1.8;
    font-size: 0.99rem;
}

.investidor-faixa-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 24px 0 34px;
}

.investidor-faixa-premium .investidor-faixa-item {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 22px;
    text-align: center;
}

.investidor-faixa-premium .investidor-faixa-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1rem;
}

.investidor-faixa-premium .investidor-faixa-item span {
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    font-size: 0.95rem;
}

.investidores-box-premium {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 26px;
    padding: 42px 34px;
    box-shadow: 0 20px 55px rgba(0,0,0,0.20);
    border: 1px solid rgba(11, 23, 48, 0.08);
}

.investidores-box-premium h2 {
    color: #0b1730;
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 18px;
}

.investidores-box-premium p {
    color: #415066;
    line-height: 1.85;
    font-size: 1.02rem;
}

.investidores-box-premium .investidor-observacao {
    margin-top: 12px;
    padding: 16px 18px;
    border-left: 4px solid #f0b90b;
    background: #fff9e8;
    color: #5a4a13;
    border-radius: 12px;
}

@media (max-width: 980px) {
    .investidor-hero-box,
    .investidor-beneficios,
    .investidor-faixa-premium {
        grid-template-columns: 1fr;
    }

    .investidor-hero-conteudo,
    .mini-card-investidor,
    .investidores-box-premium,
    .investidor-card {
        padding: 24px;
    }

    .investidor-hero-conteudo h3,
    .investidores-box-premium h2 {
        font-size: 1.6rem;
    }
}