/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =====================================================
   VARIÁVEIS
===================================================== */

:root {
    --fundo: #07100c;
    --fundo-2: #0a1510;

    --verde: #a8f51c;
    --verde-claro: #b8ff2c;
    --verde-escuro: #527f08;

    --branco: #f7faf5;
    --texto: #dce5dd;
    --texto-fraco: #87938b;

    --borda: rgba(255, 255, 255, 0.11);
}


/* =====================================================
   BODY
===================================================== */

body {
    font-family: Arial, Helvetica, sans-serif;

    color: var(--branco);

    background-color: var(--fundo);

    background-image:

        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),

        radial-gradient(
            ellipse at 5% 20%,
            rgba(90, 145, 20, 0.28),
            transparent 38%
        ),

        radial-gradient(
            ellipse at 50% -10%,
            rgba(70, 120, 15, 0.18),
            transparent 40%
        ),

        radial-gradient(
            ellipse at 95% 70%,
            rgba(35, 100, 55, 0.16),
            transparent 35%
        );

    background-size:
        45px 45px,
        45px 45px,
        100% 100%,
        100% 100%,
        100% 100%;

    min-height: 100vh;
}


/* =====================================================
   PÁGINA
===================================================== */

.pagina {
    width: 100%;
    min-height: 100vh;

    overflow-x: hidden;

    position: relative;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    padding: 28px 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 10;
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    display: flex;
    align-items: center;

    gap: 11px;

    text-decoration: none;

    color: var(--branco);

    opacity: 0;

    transform: translateY(-12px);

    animation:
        logoEntrada 0.9s cubic-bezier(.22, 1, .36, 1) forwards;
}


.logo-icone {
    width: 42px;
    height: 42px;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #6e9d0b,
            #365b04
        );

    color: white;

    font-size: 21px;
    font-weight: 900;

    box-shadow:
        0 0 0 1px rgba(168, 245, 28, 0.15),
        0 10px 30px rgba(90, 145, 10, 0.28);

    position: relative;

    overflow: hidden;

    animation:
        logoIconeEntrada 0.9s cubic-bezier(.22, 1, .36, 1) forwards,
        logoPulso 4s ease-in-out 1.2s infinite;
}


.logo-icone::after {
    content: "";

    position: absolute;

    top: -30%;
    left: -90%;

    width: 45%;
    height: 160%;

    background: rgba(255, 255, 255, 0.35);

    transform: rotate(22deg);

    animation:
        logoBrilho 3.8s ease-in-out 1.4s infinite;
}


.logo-texto {
    display: flex;
    flex-direction: column;

    font-size: 25px;

    font-weight: 900;

    line-height: 1;

    letter-spacing: -0.5px;

    opacity: 0;

    transform: translateX(-8px);

    animation:
        logoTextoEntrada 0.7s ease 0.25s forwards;
}


.logo-texto span {
    color: var(--verde);
}


.logo-texto small {
    margin-top: 5px;

    font-size: 8px;

    letter-spacing: 2px;

    color: #7e8b83;

    font-weight: 700;

    opacity: 0;

    animation:
        logoSubtituloEntrada 0.6s ease 0.55s forwards;
}


/* =====================================================
   ANIMAÇÕES LOGO
===================================================== */

@keyframes logoEntrada {

    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes logoIconeEntrada {

    0% {
        opacity: 0;
        transform: scale(0.65) rotate(-8deg);
    }

    70% {
        transform: scale(1.08) rotate(2deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}


@keyframes logoTextoEntrada {

    from {
        opacity: 0;
        transform: translateX(-8px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes logoSubtituloEntrada {

    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes logoBrilho {

    0%,
    45% {
        left: -90%;
    }

    65% {
        left: 125%;
    }

    100% {
        left: 125%;
    }
}


@keyframes logoPulso {

    0%,
    100% {
        transform: scale(1);

        box-shadow:
            0 0 0 1px rgba(168, 245, 28, 0.15),
            0 10px 30px rgba(90, 145, 10, 0.28);
    }

    50% {
        transform: scale(1.025);

        box-shadow:
            0 0 0 1px rgba(168, 245, 28, 0.25),
            0 12px 35px rgba(90, 145, 10, 0.38);
    }
}


/* =====================================================
   HERO
===================================================== */

.hero {
    width: 100%;
    max-width: 1250px;

    min-height: 650px;

    margin: 0 auto;

    padding: 55px 35px 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 80px;

    position: relative;
}


/* =====================================================
   LADO ESQUERDO
===================================================== */

.hero-conteudo {
    width: 50%;

    max-width: 560px;

    position: relative;

    z-index: 4;
}


/* =====================================================
   TAG
===================================================== */

.tag {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 8px 14px;

    border-radius: 30px;

    background:
        rgba(135, 190, 30, 0.08);

    border:
        1px solid rgba(168, 245, 28, 0.25);

    color: var(--verde);

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 0 25px rgba(120, 180, 20, 0.05);
}


.tag span {
    color: var(--verde);

    font-size: 15px;
}


/* =====================================================
   TÍTULO
===================================================== */

.hero h1 {
    margin-top: 25px;

    margin-bottom: 22px;

    font-size: clamp(46px, 5vw, 70px);

    line-height: 0.98;

    letter-spacing: -3.5px;

    color: var(--branco);
}


.titulo-linha {
    display: inline-block;

    opacity: 0;

    filter: blur(7px);

    transform: translateY(25px);

    animation:
        tituloEntrada 0.85s cubic-bezier(.22, 1, .36, 1) forwards;
}


.titulo-primeira {
    animation-delay: 0.55s;
}


.titulo-segunda {
    color: var(--verde);

    text-shadow:
        0 0 35px rgba(168, 245, 28, 0.08);

    animation-delay: 0.85s;
}


@keyframes tituloEntrada {

    0% {
        opacity: 0;

        filter: blur(7px);

        transform: translateY(25px);
    }

    60% {
        opacity: 0.9;

        filter: blur(1px);
    }

    100% {
        opacity: 1;

        filter: blur(0);

        transform: translateY(0);
    }
}


/* =====================================================
   DESCRIÇÃO
===================================================== */

.descricao {
    max-width: 510px;

    color: #aab7ae;

    font-size: 18px;

    line-height: 1.65;

    margin-bottom: 30px;
}


.descricao b {
    color: var(--verde);

    font-weight: 700;
}


/* =====================================================
   BOTÃO PRINCIPAL
===================================================== */

.botao-principal {
    width: min(100%, 390px);

    min-height: 58px;

    padding: 0 22px;

    border-radius: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            #b5ff25,
            #91d817
        );

    color: #071006;

    font-size: 17px;

    font-weight: 900;

    box-shadow:
        0 10px 35px rgba(150, 230, 25, 0.18),
        0 0 0 1px rgba(190, 255, 70, 0.15);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}


.botao-principal strong {
    font-size: 23px;

    line-height: 1;

    transition:
        transform 0.25s ease;
}


.botao-principal:hover {
    transform: translateY(-3px);

    filter: brightness(1.08);

    box-shadow:
        0 16px 45px rgba(150, 230, 25, 0.28),
        0 0 30px rgba(150, 230, 25, 0.10);
}


.botao-principal:hover strong {
    transform: translateX(5px);
}


/* =====================================================
   SEGURANÇA
===================================================== */

.seguranca {
    margin-top: 25px;

    display: flex;
    align-items: center;

    gap: 12px;
}


.seguranca-icone {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(168, 245, 28, 0.10);

    border:
        1px solid rgba(168, 245, 28, 0.18);

    color: var(--verde);

    font-size: 15px;

    font-weight: 900;
}


.seguranca-texto {
    display: flex;
    flex-direction: column;

    gap: 3px;
}


.seguranca-texto strong {
    color: #dce6de;

    font-size: 14px;
}


.seguranca-texto span {
    color: #78867d;

    font-size: 12px;
}


/* =====================================================
   LADO DIREITO
===================================================== */

.hero-visual {
    width: 50%;

    min-height: 500px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =====================================================
   LUZ ATRÁS DO CARTÃO
===================================================== */

.luz {
    position: absolute;

    width: 560px;
    height: 560px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(140, 220, 25, 0.18) 0%,
            rgba(90, 150, 20, 0.08) 30%,
            transparent 68%
        );

    filter: blur(14px);

    pointer-events: none;
}


/* =====================================================
   CARTÃO PRINCIPAL — GLASSMORPHISM
===================================================== */

.painel {
    position: relative;

    z-index: 3;

    width: min(100%, 455px);

    padding: 30px;

    border-radius: 26px;

    /*
       VIDRO TRANSPARENTE
    */
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.105),
            rgba(255, 255, 255, 0.045) 45%,
            rgba(255, 255, 255, 0.025)
        );

    /*
       BLUR DO FUNDO ATRÁS
    */
    backdrop-filter:
        blur(28px)
        saturate(135%);

    -webkit-backdrop-filter:
        blur(28px)
        saturate(135%);

    /*
       BORDA DE VIDRO
    */
    border:
        1px solid rgba(255, 255, 255, 0.15);

    /*
       SOMBRA PROFUNDA
    */
    box-shadow:

        0 35px 90px rgba(0, 0, 0, 0.48),

        0 12px 35px rgba(0, 0, 0, 0.25),

        inset 0 1px 0 rgba(255, 255, 255, 0.18),

        inset 0 -1px 0 rgba(255, 255, 255, 0.035);

    /*
       LEVE PROFUNDIDADE
    */
    transform:
        translateY(0)
        perspective(1000px);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    overflow: hidden;
}


/* =====================================================
   REFLEXO SUPERIOR DO VIDRO
===================================================== */

.painel::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 45%;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.075),
            transparent
        );

    pointer-events: none;

    z-index: 0;
}


/* =====================================================
   REFLEXO DIAGONAL
===================================================== */

.painel::after {
    content: "";

    position: absolute;

    top: -100%;

    left: -55%;

    width: 45%;

    height: 300%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.055),
            transparent
        );

    transform: rotate(18deg);

    pointer-events: none;

    animation:
        reflexoCartao 7s ease-in-out infinite;
}


@keyframes reflexoCartao {

    0%,
    55% {
        left: -65%;
    }

    75% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}


/* =====================================================
   CONTEÚDO DO CARTÃO ACIMA DOS EFEITOS
===================================================== */

.painel > * {
    position: relative;

    z-index: 2;
}


/* =====================================================
   HEADER DO PAINEL
===================================================== */

.painel-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.085);
}


.painel-header > div:first-child {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.painel-header small {
    color: #89978e;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.painel-header strong {
    color: #f0f5f1;

    font-size: 17px;

    font-weight: 700;
}


/* =====================================================
   ÍCONE GRÁFICO
===================================================== */

.icone-grafico {
    width: 42px;
    height: 42px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(168, 245, 28, 0.10);

    border:
        1px solid rgba(168, 245, 28, 0.20);

    color: var(--verde);

    font-size: 21px;

    font-weight: bold;

    box-shadow:
        0 0 25px rgba(168, 245, 28, 0.06);
}


/* =====================================================
   VALOR PRINCIPAL
===================================================== */

.valor-principal {
    display: flex;

    flex-direction: column;

    margin: 25px 0 22px;
}


.valor-principal small {
    color: #89968e;

    font-size: 13px;
}


.valor-principal strong {
    margin-top: 4px;

    color: #f7faf7;

    font-size: 42px;

    font-weight: 800;

    letter-spacing: -2px;

    text-shadow:
        0 2px 15px rgba(0, 0, 0, 0.25);
}


/* =====================================================
   BARRA
===================================================== */

.barra {
    width: 100%;

    height: 7px;

    overflow: hidden;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.075);

    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.20);
}


.barra-preenchida {
    width: 78%;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #6f9f08,
            #b5ff25
        );

    box-shadow:
        0 0 18px rgba(170, 245, 30, 0.40);
}


.barra-info {
    display: flex;

    justify-content: space-between;

    margin-top: 8px;

    color: #7c8981;

    font-size: 11px;
}


/* =====================================================
   LINHA
===================================================== */

.linha {
    width: 100%;

    height: 1px;

    margin: 22px 0;

    background:
        rgba(255, 255, 255, 0.075);
}


/* =====================================================
   DADOS
===================================================== */

.dados {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


.dados > div {
    display: flex;

    flex-direction: column;

    gap: 6px;
}


.dados small {
    color: #7f8c84;

    font-size: 11px;
}


.dados strong {
    color: #dce6de;

    font-size: 13px;
}


.dados .verde {
    color: var(--verde);

    text-shadow:
        0 0 15px rgba(168, 245, 28, 0.18);
}


/* =====================================================
   BOTÃO DO PAINEL
===================================================== */

.botao-painel {
    width: 100%;

    min-height: 50px;

    margin-top: 25px;

    padding: 0 18px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            rgba(105, 158, 10, 0.92),
            rgba(62, 100, 5, 0.92)
        );

    color: #ffffff;

    font-size: 14px;

    font-weight: 800;

    border:
        1px solid rgba(180, 255, 45, 0.18);

    box-shadow:
        0 8px 25px rgba(35, 70, 5, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.botao-painel strong {
    font-size: 20px;

    transition:
        transform 0.2s ease;
}


.botao-painel:hover {
    background:
        linear-gradient(
            135deg,
            rgba(120, 180, 12, 0.96),
            rgba(72, 115, 7, 0.96)
        );

    transform: translateY(-2px);

    box-shadow:
        0 12px 32px rgba(80, 130, 10, 0.30),
        0 0 20px rgba(130, 200, 20, 0.08);
}


.botao-painel:hover strong {
    transform: translateX(4px);
}


/* =====================================================
   CARDS FLUTUANTES
===================================================== */

.notificacao {
    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 16px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.10),
            rgba(255, 255, 255, 0.045)
        );

    border:
        1px solid rgba(255, 255, 255, 0.13);

    border-radius: 15px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);

    backdrop-filter:
        blur(20px)
        saturate(130%);

    -webkit-backdrop-filter:
        blur(20px)
        saturate(130%);
}


.notificacao-pix {
    left: -10px;

    bottom: 75px;

    animation:
        flutuar1 4s ease-in-out infinite;
}


.notificacao-segura {
    right: -10px;

    top: 70px;

    animation:
        flutuar2 4.5s ease-in-out infinite;
}


/* =====================================================
   ÍCONES DOS CARDS
===================================================== */

.notificacao-icone,
.escudo {
    width: 37px;
    height: 37px;

    flex-shrink: 0;

    border-radius: 11px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(168, 245, 28, 0.11);

    border:
        1px solid rgba(168, 245, 28, 0.18);

    color: var(--verde);

    font-size: 17px;

    font-weight: 900;
}


.notificacao-conteudo {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.notificacao-conteudo small {
    color: #829087;

    font-size: 10px;
}


.notificacao-conteudo strong {
    color: #e9f0eb;

    font-size: 13px;
}


.check {
    width: 23px;
    height: 23px;

    margin-left: 5px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(168, 245, 28, 0.12);

    color: var(--verde);

    font-size: 11px;

    font-weight: bold;
}


/* =====================================================
   ANIMAÇÕES CARDS
===================================================== */

@keyframes flutuar1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


@keyframes flutuar2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(9px);
    }
}


/* =====================================================
   NOTIFICAÇÃO DE ATIVIDADE
===================================================== */

.notificacao-atividade {
    position: fixed;

    left: 25px;

    bottom: 25px;

    z-index: 9999;

    width: min(360px, calc(100vw - 40px));

    min-height: 72px;

    padding: 13px 16px;

    display: flex;

    align-items: center;

    gap: 12px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.10),
            rgba(255, 255, 255, 0.045)
        );

    border:
        1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    opacity: 0;

    transform: translateY(25px);

    pointer-events: none;

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}


.notificacao-atividade.mostrar {
    opacity: 1;

    transform: translateY(0);
}


/* =====================================================
   ÍCONE ATIVIDADE
===================================================== */

.atividade-icone {
    width: 39px;
    height: 39px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        rgba(168, 245, 28, 0.11);

    border:
        1px solid rgba(168, 245, 28, 0.18);

    color: var(--verde);

    font-weight: 900;

    font-size: 17px;
}


.atividade-texto {
    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.atividade-texto strong {
    color: #e5ede7;

    font-size: 13px;
}


.atividade-texto span {
    color: #7d8a82;

    font-size: 11px;
}


.atividade-texto b {
    color: var(--verde);

    font-size: 13px;
}


/* =====================================================
   NOTIFICAÇÃO RECUSADA
===================================================== */

.notificacao-atividade.recusado .atividade-icone {
    background:
        rgba(180, 75, 50, 0.12);

    border-color:
        rgba(180, 75, 50, 0.20);

    color: #e27857;
}


.notificacao-atividade.recusado .atividade-texto b {
    color: #e27857;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    width: 100%;

    margin-top: 30px;

    background:
        linear-gradient(
            180deg,
            #0a1510 0%,
            #07100c 100%
        );

    color: white;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);
}


.footer-conteudo {
    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    padding: 65px 30px 35px;

    text-align: center;
}


.footer-logo {
    display: flex;

    flex-direction: column;

    align-items: center;

    font-size: 30px;

    font-weight: 900;
}


.footer-logo span {
    color: var(--verde);
}


.footer-logo small {
    margin-top: 6px;

    font-size: 9px;

    letter-spacing: 2px;

    color: #718078;

    opacity: 0.9;
}


.footer-informacoes {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px 30px;

    margin-top: 25px;
}


.footer-informacoes p {
    color: rgba(220, 230, 222, 0.60);

    font-size: 12px;
}


.footer-linha {
    width: 100%;

    max-width: 800px;

    height: 1px;

    margin: 30px auto 20px;

    background:
        rgba(255, 255, 255, 0.08);
}


.copyright {
    color: rgba(220, 230, 222, 0.40);

    font-size: 11px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .hero {
        gap: 45px;

        padding-left: 25px;

        padding-right: 25px;
    }


    .hero-conteudo,
    .hero-visual {
        width: 50%;
    }


    .hero h1 {
        font-size: 50px;
    }


    .painel {
        width: 380px;
    }


    .notificacao-pix {
        left: -10px;
    }


    .notificacao-segura {
        right: -10px;
    }
}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 760px) {

    .header {
        padding: 22px 20px;
    }


    .hero {
        min-height: auto;

        padding:
            35px 20px 75px;

        flex-direction: column;

        gap: 55px;

        text-align: center;
    }


    .hero-conteudo {
        width: 100%;

        max-width: 560px;

        display: flex;

        flex-direction: column;

        align-items: center;
    }


    .hero h1 {
        font-size:
            clamp(42px, 12vw, 56px);

        letter-spacing: -2.5px;
    }


    .descricao {
        font-size: 16px;

        max-width: 430px;
    }


    .botao-principal {
        width: 100%;

        max-width: 390px;
    }


    .seguranca {
        width: 100%;

        max-width: 390px;

        text-align: left;

        justify-content: flex-start;
    }


    .hero-visual {
        width: 100%;

        min-height: 570px;

        display: flex;

        align-items: center;

        justify-content: center;
    }


    .painel {
        width: min(100%, 390px);

        padding: 25px;

        margin: 0 auto;

        backdrop-filter:
            blur(24px)
            saturate(130%);

        -webkit-backdrop-filter:
            blur(24px)
            saturate(130%);
    }


    .valor-principal strong {
        font-size: 34px;
    }


    .notificacao-pix {
        left: 50%;

        bottom: 30px;

        transform:
            translateX(-50%);

        animation:
            flutuarMobile1 4s ease-in-out infinite;
    }


    .notificacao-segura {
        right: 50%;

        top: 25px;

        transform:
            translateX(50%);

        animation:
            flutuarMobile2 4.5s ease-in-out infinite;
    }


    @keyframes flutuarMobile1 {

        0%,
        100% {
            transform:
                translateX(-50%)
                translateY(0);
        }

        50% {
            transform:
                translateX(-50%)
                translateY(-8px);
        }
    }


    @keyframes flutuarMobile2 {

        0%,
        100% {
            transform:
                translateX(50%)
                translateY(0);
        }

        50% {
            transform:
                translateX(50%)
                translateY(8px);
        }
    }


    .footer-conteudo {
        padding:
            50px 20px 30px;
    }


    .footer-informacoes {
        flex-direction: column;

        gap: 9px;
    }


    .notificacao-atividade {
        left: 50%;

        bottom: 18px;

        transform:
            translate(-50%, 25px);

        width:
            calc(100vw - 30px);

        max-width: 360px;
    }


    .notificacao-atividade.mostrar {
        transform:
            translate(-50%, 0);
    }
}


/* =====================================================
   CELULARES PEQUENOS
===================================================== */

@media (max-width: 390px) {

    .hero {
        padding-left: 15px;

        padding-right: 15px;
    }


    .hero h1 {
        font-size: 40px;
    }


    .painel {
        padding: 22px;

        border-radius: 22px;
    }


    .valor-principal strong {
        font-size: 31px;
    }


    .notificacao {
        padding: 11px 12px;
    }


    .notificacao-segura {
        max-width: 230px;
    }


    .notificacao-pix {
        max-width: 230px;
    }
}


/* =====================================================
   ACESSIBILIDADE
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .logo,
    .logo-icone,
    .logo-texto,
    .logo-texto small,
    .logo-icone::after,
    .titulo-linha,
    .painel::after,
    .notificacao,
    .notificacao-atividade {
        animation: none !important;

        opacity: 1;

        transform: none;

        filter: none;
    }
}