* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #1a1a1a;
    color: white;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}


/* BOTÕES */

.botao {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: .3s;
}

.botao:hover {
    transform: translateY(-3px);
}

.botao-solido {
    background: white;
    color: black;
}

.botao-contorno {
    border: 1px solid white;
}

.botao-preto {
    background: black;
    color: white;
}

.botao-claro {
    background: white;
    color: black;
}


/* HEADER */

.secao-apresentacao {
    min-height: 50vh;
    background: linear-gradient(135deg, #5b2be0, #35139c);
    position: relative;
    padding: 120px 40px 80px;
    text-align: center;
    overflow: hidden;
    border-radius: 0 0 60px 60px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5);
}


/*  NAVBAR GLASS EFFECT */

.barra-navegacao {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    padding: 14px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .25), inset 0 1px 1px rgba(255, 255, 255, .15);
    z-index: 1000;
    transition: .3s ease;
}


/* Quando rolar a página */

.barra-navegacao.rolada {
    background: rgba(20, 20, 25, .75);
    border-color: rgba(255, 255, 255, .10);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .45);
}

.logotipo {
    font-size: 22px;
    font-weight: 700;
}

.links-navegacao {
    display: flex;
    gap: 25px;
    align-items: center;
}

.links-navegacao a {
    font-size: 14px;
}

.botao-navegacao {
    background: rgba(255, 255, 255, .18);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    transition: .3s;
}

.botao-navegacao:hover {
    background: rgba(255, 255, 255, .3);
}

.botao-hamburguer {
    display: none;
    background: none;
    border: 0;
    color: white;
}


/* BANNER  */

.bannerLp {
    margin: 0 auto;
    width: 50%;
    height: 270px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bannerLp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* HERO*/

.conteudo-apresentacao {
    max-width: 650px;
    margin: auto;
    padding-top: 50px;
}

.conteudo-apresentacao h1 {
    font-size: 45px;
}

.conteudo-apresentacao p {
    margin: 20px 0;
    color: #ddd;
}

.botoes-apresentacao {
    display: flex;
    justify-content: center;
    gap: 15px;
}


/* ELEMENTOS */

.circulo {
    position: absolute;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    animation: flutuar 7s ease-in-out infinite;
}

.c1 {
    width: 300px;
    height: 300px;
    right: -80px;
    top: -80px;
}

.c2 {
    width: 150px;
    height: 150px;
    left: 15%;
    top: 40%;
    animation-duration: 8s;
    animation-delay: .5s;
}

.c3 {
    width: 90px;
    height: 90px;
    left: 8%;
    top: 12%;
    opacity: .7;
    animation-duration: 6s;
    animation-delay: 1s;
}

.c4 {
    width: 220px;
    height: 220px;
    right: 5%;
    bottom: -80px;
    opacity: .6;
    animation-duration: 9s;
    animation-delay: 1.5s;
}

.c5 {
    width: 60px;
    height: 60px;
    left: 45%;
    bottom: 10%;
    opacity: .8;
    animation-duration: 5s;
    animation-delay: 2s;
}

@keyframes flutuar {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}


/*  MENU MOBILE*/

.fundo-menu-lateral {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    visibility: hidden;
}

.fundo-menu-lateral.ativo {
    opacity: 1;
    visibility: visible;
}

.menu-lateral-mobile {
    position: fixed;
    right: -300px;
    top: 0;
    width: 280px;
    height: 100%;
    background: #181818;
    padding: 25px;
    transition: .3s;
    z-index: 2000;
}

.menu-lateral-mobile.ativo {
    right: 0;
}

.navegacao-lateral {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-menu-lateral {
    padding: 10px;
}


/*   SEÇÕES*/

.secao-intermediaria {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.secao-avaliacoes {
    padding: 80px 0;
    position: relative;
}

.cabecalho-intermediario {
    text-align: center;
    margin-bottom: 40px;
}

.grade-cartoes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cartao {
    background: #1c1c1f;
    border: 1px solid #2a2a2e;
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform .3s, border-color .3s;
}

.cartao:hover {
    transform: translateY(-6px);
    border-color: #5b2be0;
}

.cartao-icone {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
}

.cartao:nth-child(1) .cartao-icone {
    background: rgba(167, 139, 250, 0.15);
    color: #a78bfa;
}

.cartao:nth-child(2) .cartao-icone {
    background: rgba(192, 132, 252, 0.15);
    color: #c084fc;
}

.cartao:nth-child(3) .cartao-icone {
    background: rgba(129, 140, 248, 0.15);
    color: #818cf8;
}

.cartao-rotulo {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cartao:nth-child(1) .cartao-rotulo {
    color: #a78bfa;
}

.cartao:nth-child(2) .cartao-rotulo {
    color: #c084fc;
}

.cartao:nth-child(3) .cartao-rotulo {
    color: #818cf8;
}

.cartao-titulo {
    font-size: 20px;
    margin-bottom: 12px;
    color: white;
}

.cartao-texto {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
}


/* RECURSOS */

.secao-inferior {
    background: #5b2be0;
    padding: 80px 0;
}

.grade-inferior {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.texto-inferior {
    flex: 1;
    max-width: 500px;
}

.bloco-texto {
    margin-bottom: 32px;
    padding-left: 16px;
    border-left: 2px solid rgba(255, 255, 255, 0.25);
}

.bloco-texto:last-of-type {
    margin-bottom: 40px;
}

.bloco-texto h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: .2px;
}

.bloco-texto p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 420px;
}

.botoes-inferiores {
    display: flex;
    gap: 15px;
}

.imagem-inferior {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.imagem-inferior img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
}


/*  SEÇÃO ESTATÍSTICAS*/

.secao-estatisticas {
    padding: 80px 0;
}

.caixa-estatisticas {
    background: linear-gradient(135deg, #1a1330, #120c22);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.item-estatistica {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
}

.icone-estatistica {
    color: #a78bfa;
    flex-shrink: 0;
}

.texto-estatistica h3 {
    font-size: 26px;
    font-weight: 700;
    color: white;
}

.texto-estatistica h3::before {
    content: "+";
}

.texto-estatistica p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}


/*  SEÇÃO AVALIAÇÕES */

.titulo-avaliacoes {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.secao {
    max-width: 950px;
    margin: 0 auto 80px auto;
    position: relative;
    z-index: 1;
}

.topo {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
}

.topo-invertido {
    flex-direction: row-reverse;
}

.capa-livro {
    width: 150px;
    flex-shrink: 0;
}

.capa-livro img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.texto h2 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #ffffff;
}

.texto p {
    font-size: 16px;
    line-height: 1.6;
    color: #a0a0a0;
}

.cards {
    display: flex;
    gap: 20px;
}

.card {
    background-color: #1a1a1d;
    border: 1px solid #2a2a2e;
    border-radius: 12px;
    padding: 25px;
    flex: 1;
}

.card p {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 22px;
    color: #ffffff;
}

.avaliador {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #4a4a4f;
    flex-shrink: 0;
}

.info-avaliador {
    display: flex;
    flex-direction: column;
}

.info-avaliador span {
    font-size: 14px;
    color: #cccccc;
}

.estrelas {
    color: #f5b400;
    font-size: 13px;
}

@media (max-width: 600px) {
    .cards {
        flex-direction: column;
    }
}


/* ORBES SEÇÃO AVALIAÇÕES */

.orbe-avaliacao {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.9) 0%, rgba(91, 43, 224, 0.6) 55%, transparent 75%);
    filter: blur(50px);
    opacity: .9;
    pointer-events: none;
    z-index: 0;
    animation: flutuar 8s ease-in-out infinite;
}

.orbe-av1 {
    width: 380px;
    height: 380px;
    top: -60px;
    left: -60px;
}

.orbe-av2 {
    width: 320px;
    height: 320px;
    top: 45%;
    right: -100px;
    animation-duration: 10s;
    animation-delay: 1s;
}

.orbe-av3 {
    width: 260px;
    height: 260px;
    bottom: -60px;
    left: 35%;
    animation-duration: 7s;
    animation-delay: 2s;
}


/* FOOTER*/

.secao-rodape {
    background: #111113;
    color: white;
    padding: 70px 0 30px;
    /* margin-top: 80px; */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.grade-links-rodape {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.coluna-rodape {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coluna-rodape h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: white;
}

.coluna-rodape h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: white;
}

.coluna-rodape p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.5;
}

.coluna-rodape a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: .2s;
}

.coluna-rodape a:hover {
    color: #7c3aed;
    transform: translateX(3px);
}

.direitos-autorais {
    color: rgba(255, 255, 255, 0.45);
    font-size: .85rem;
}


/*  MOBILE */

@media(max-width:768px) {
    .rodape-principal {
        flex-direction: column;
    }
    .rodape-links {
        gap: 40px;
    }
    .rodape-final {
        flex-direction: column;
        align-items: flex-start;
    }
    .links-navegacao {
        display: none;
    }
    .botao-hamburguer {
        display: block;
    }
    .conteudo-apresentacao h1 {
        font-size: 32px;
    }
    .botoes-apresentacao {
        flex-direction: column;
    }
    .grade-cartoes,
    .grade-inferior,
    .grade-links-rodape {
        grid-template-columns: 1fr;
    }
    .caixa-estatisticas {
        flex-direction: column;
    }
}


/*  LOGIN / CADASTRO */

.pagina-login {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a1a1a;
    padding: 20px;
}

.caixa-login {
    width: 100%;
    max-width: 420px;
    background: #242424;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.caixa-login h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 30px;
}

.caixa-login form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.caixa-login label {
    color: #ddd;
    font-size: 14px;
}

.caixa-login input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #444;
    background: #111;
    color: white;
    outline: none;
}

.caixa-login input:focus {
    border-color: #5b2be0;
}

.caixa-login button {
    margin-top: 15px;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: #5b2be0;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.caixa-login button:hover {
    background: #6d3df0;
    transform: translateY(-2px);
}

.caixa-login a {
    display: block;
    text-align: center;
    margin-top: 25px;
    color: #bbb;
}

.caixa-login a:hover {
    color: white;
}

.mensagem-erro {
    background: #3b1515;
    color: #ff8b8b;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.mensagem-sucesso {
    background: #153b20;
    color: #7cff9a;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
}


/* SCROLLBAR */

::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
}