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

body, h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
    margin: 0;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100dvh;
    line-height: 1.5;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/**/

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    position: relative;
    padding: 5rem;
    font-family: "Poppins", sans-serif;
}

main {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

picture {
    z-index: -1;
    opacity: .1;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px);
}

.logo {
    width: 35rem;
    max-width: 100%;
    height: auto;
}

.slogan {

    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    text-align: center;
    margin-top: 1rem;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 2rem;
}

header svg {
    color: black;
    opacity: .5;
    transition: opacity .15s ease-in-out;
}

header svg:hover {
    opacity: .85;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

footer p {
    text-align: center;
    text-wrap: balance;
    font-size: .85rem;
    opacity: .5;
}

/* Loader: tela preta com fade rápido */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000; /* cor de fundo durante o loading */
    z-index: 9999;
    opacity: 1;
    animation: fadeOut 1s ease forwards;
    animation-delay: 1s; /* tempo de exibição do loader */
}

/* Fade geral da página */
.wrapper {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1s;
}

/* Animação de fade out do loader */
@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Animação de fade in da página */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}