* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080808;
    color: #ffffff;
}


/* HEADER */

.header {
    width: 100%;
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 7%;

    border-bottom: 1px solid #1f1f1f;

    position: sticky;
    top: 0;

    background: rgba(8, 8, 8, 0.95);

    z-index: 1000;
}


.logo img {
    width: 155px;

    /* Deixa a logo preta branca no fundo escuro */
    filter: invert(1);
}


.menu {
    display: flex;
    gap: 35px;
}


.menu a {
    color: #c8c8c8;
    text-decoration: none;
    font-size: 15px;

    transition: 0.3s;
}


.menu a:hover {
    color: white;
}


.botao-topo {
    text-decoration: none;

    background: white;
    color: black;

    padding: 13px 20px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: bold;
}


/* HERO */

.hero {
    min-height: 82vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 80px 20px;

    background:
        radial-gradient(
            circle at center,
            #202020 0%,
            #0d0d0d 40%,
            #080808 75%
        );
}


.hero-conteudo {
    max-width: 950px;
}


.destaque {
    font-size: 12px;

    letter-spacing: 4px;

    color: #999999;
}


.hero h1 {
    margin-top: 25px;

    font-size: 68px;

    line-height: 1.05;

    letter-spacing: -3px;
}


.hero p {
    max-width: 650px;

    margin: 28px auto;

    font-size: 19px;

    line-height: 1.7;

    color: #bdbdbd;
}


.hero-botoes {
    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 35px;
}


.botao-principal {
    text-decoration: none;

    background: white;

    color: black;

    padding: 16px 25px;

    border-radius: 9px;

    font-weight: bold;

    transition: 0.3s;
}


.botao-principal:hover {
    transform: translateY(-3px);
}


.botao-secundario {
    text-decoration: none;

    color: white;

    border: 1px solid #444;

    padding: 16px 25px;

    border-radius: 9px;

    transition: 0.3s;
}


.botao-secundario:hover {
    background: #171717;
}


/* SEÇÕES */

.servicos,
.como-funciona {
    padding: 110px 7%;
}


.titulo-secao {
    text-align: center;

    max-width: 700px;

    margin: auto;
}


.titulo-secao span {
    font-size: 12px;

    letter-spacing: 4px;

    color: #8b8b8b;
}


.titulo-secao h2 {
    font-size: 42px;

    margin-top: 15px;
}


.titulo-secao p {
    color: #999;

    margin-top: 15px;

    line-height: 1.6;
}


/* CARDS */

.cards {
    max-width: 1200px;

    margin: 60px auto 0;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.card {
    background: #111;

    border: 1px solid #222;

    padding: 35px;

    border-radius: 15px;

    transition: 0.3s;
}


.card:hover {
    transform: translateY(-8px);

    border-color: #555;
}


.icone {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;

    margin-bottom: 25px;

    border: 1px solid #333;
    border-radius: 12px;

    background: #181818;
    color: #ffffff;
}


.card h3 {
    margin-bottom: 15px;

    font-size: 20px;
}


.card p {
    color: #999;

    line-height: 1.6;

    font-size: 14px;
}


/* COMO FUNCIONA */

.como-funciona {
    background: #0c0c0c;
}


.passos {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    max-width: 1100px;

    margin: 70px auto 0;

    gap: 50px;
}


.passo {
    text-align: center;
}


.passo strong {
    font-size: 50px;

    color: #292929;
}


.passo h3 {
    margin: 15px 0;

    font-size: 23px;
}


.passo p {
    color: #999;

    line-height: 1.7;
}

/* APLICATIVO */

.aplicativo {
    padding: 120px 7%;

    background: #0c0c0c;

    border-top: 1px solid #191919;
    border-bottom: 1px solid #191919;
}


.app-conteudo {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}


.app-destaque {
    font-size: 12px;

    letter-spacing: 4px;

    color: #888;
}


.app-texto h2 {
    font-size: 48px;

    line-height: 1.1;

    margin: 20px 0;
}


.app-texto p {
    color: #999;

    line-height: 1.8;

    font-size: 17px;

    max-width: 550px;
}


.app-lojas {
    display: flex;

    gap: 15px;

    margin-top: 35px;
}


.loja-app {
    min-width: 190px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 13px 18px;

    border: 1px solid #333;

    border-radius: 10px;

    color: white;

    text-decoration: none;

    background: #151515;

    transition: 0.3s;
}


.loja-app:hover {
    border-color: #666;

    transform: translateY(-3px);
}


.loja-app i {
    font-size: 28px;
}


.loja-app small {
    display: block;

    color: #999;

    font-size: 10px;
}


.loja-app strong {
    display: block;

    margin-top: 3px;

    font-size: 16px;
}


/* CELULAR DO APP */

.app-preview {
    display: flex;

    justify-content: center;
}


.celular {
    width: 260px;
    height: 520px;

    background: #050505;

    border: 7px solid #292929;

    border-radius: 38px;

    position: relative;

    padding: 12px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}


.celular-camera {
    position: absolute;

    width: 80px;
    height: 20px;

    background: #292929;

    border-radius: 20px;

    top: 12px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 2;
}


.celular-tela {
    width: 100%;
    height: 100%;

    border-radius: 27px;

    background:
        radial-gradient(
            circle at center,
            #282828,
            #090909 70%
        );

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;
}


.celular-tela img {
    width: 150px;

    filter: invert(1);
}


.celular-tela p {
    color: #777;

    font-size: 10px;

    letter-spacing: 5px;

    margin-top: 10px;
}


/* CONTATO */

.contato {
    text-align: center;

    padding: 120px 20px;
}


.contato span {
    letter-spacing: 5px;

    color: #777;

    font-size: 12px;
}


.contato h2 {
    font-size: 45px;

    margin: 20px 0;
}


.contato p {
    color: #999;

    font-size: 17px;

    margin-bottom: 40px;
}


/* RODAPÉ */

footer {
    border-top: 1px solid #222;

    padding: 30px;

    text-align: center;

    color: #666;

    font-size: 13px;
}

/* BOTÃO MENU CELULAR */

.menu-toggle {
    display: none;

    background: transparent;
    color: white;

    border: 1px solid #333;

    width: 45px;
    height: 45px;

    border-radius: 8px;

    font-size: 21px;

    cursor: pointer;

    align-items: center;
    justify-content: center;
}

/* WHATSAPP FLUTUANTE */

.whatsapp-flutuante {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: white;

    text-decoration: none;

    border-radius: 50%;

    font-size: 32px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);

    z-index: 9999;

    transition: 0.3s;
}


.whatsapp-flutuante:hover {
    transform: scale(1.1);
}

/* CELULAR */

@media (max-width: 900px) {

    .app-conteudo {
    grid-template-columns: 1fr;

    text-align: center;
}


.app-texto p {
    margin-left: auto;
    margin-right: auto;
}


.app-lojas {
    justify-content: center;
}


.app-preview {
    margin-top: 20px;
}

    .header {
        position: sticky;
    }


    .menu-toggle {
        display: flex;
    }


    .menu {
        display: none;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: #0c0c0c;

        border-top: 1px solid #222;
        border-bottom: 1px solid #222;

        flex-direction: column;

        gap: 0;

        padding: 10px 7%;
    }


    .menu.ativo {
        display: flex;
    }


    .menu a {
        width: 100%;

        padding: 18px 5px;

        border-bottom: 1px solid #1d1d1d;

        font-size: 16px;
    }


    .menu a:last-child {
        border-bottom: none;
    }


    .botao-topo {
        display: none;
    }


    .hero h1 {
        font-size: 45px;

        letter-spacing: -2px;
    }


    .cards {
        grid-template-columns: repeat(2, 1fr);
    }


    .passos {
        grid-template-columns: 1fr;
    }
}

    .hero h1 {
        font-size: 45px;

        letter-spacing: -2px;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .passos {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .app-texto h2 {
    font-size: 36px;
}


.app-lojas {
    flex-direction: column;

    align-items: center;
}


.loja-app {
    width: 230px;
}


.celular {
    width: 230px;
    height: 460px;
}

    .header {
        padding: 15px 20px;
    }

    .logo img {
        width: 135px;
    }

    .hero {
        min-height: 75vh;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-botoes {
        flex-direction: column;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .titulo-secao h2 {
        font-size: 34px;
    }

    .contato h2 {
        font-size: 34px;
    }

    .whatsapp-flutuante {
        width: 54px;
        height: 54px;

        right: 18px;
        bottom: 18px;

        font-size: 28px;
    }
}