:root {
    --cor-fundo: #2F3238;
    --cor-texto: #FF7A18;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
}

body {
    min-height: 100dvh;

    color: var(--cor-texto);
    background-color: var(--cor-fundo);

    font-family: "Poppins", sans-serif;
}

.hero {
    min-height: 100dvh;
    padding: 24px;

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.hero_content {
    width: min(100%, 800px);
    text-align: center;
}

.destaque {
    display: inline-flex;
    align-items: center;
    gap: 0;

    color: var(--cor-texto);

    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;

    user-select: none;
    white-space: nowrap;
}

.simbolo {
    font-size: 1.4em;
    font-weight: 400;
    line-height: 0.7;
}

.cursor {
    display: inline-block;
    width: 0.2em;

    text-align: left;

    animation: piscar 0.85s step-end infinite;
}

.foot {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 3.5dvh;

    display: flex;
    justify-content: center;
    align-items: center;

    border-top-right-radius: 20px;
    border-top-left-radius: 20px;

    background: #FF7A18;
    color: #2F3238;

    font-weight: 450;
}

@keyframes piscar {
    50% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cursor {
        animation: none;
    }
}
