@font-face {
    font-family: 'DefaultFont';
    src: url('/assets/fonts/DefaultFont-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DefaultFont';
    src: url('/assets/fonts/DefaultFont-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html,
body {
    font-family: "DefaultFont", sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    background-image:
        linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.2) 30%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(72, 139, 180, 0.24) 0%, rgba(72, 139, 180, 0.3) 30%, transparent 70%),
        url('/assets/images/vinheta.png');
    background-size: cover;
    background-position: center;
}

.vertical-text {
    position: absolute;
    right: -4rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: "DefaultFont", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: rgb(255 255 255 / 31%);
    letter-spacing: 0.3rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    animation: fadeIn-46a2e205 1s ease-out;
}

.coming-soon-content {
    text-align: center;
    max-width: 500px;
    animation: fadeInUp 0.6s ease-out;
}

.logo-animada {
    width: 395px;
    height: 395px;
    background-image: url('/assets/images/logo_estilizada.png');
    background-repeat: no-repeat;
    margin: 0 auto 1.5rem;
    animation: spriteAnim 1s steps(1) infinite;
}

.coming-soon-title {
    font-family: "DefaultFont", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.coming-soon-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@keyframes spriteAnim {
    0% {
        background-position: 0 0;
    }

    12.5% {
        background-position: -395px 0;
    }

    25% {
        background-position: -790px 0;
    }

    37.5% {
        background-position: -1185px 0;
    }

    50% {
        background-position: 0 -395px;
    }

    62.5% {
        background-position: -395px -395px;
    }

    75% {
        background-position: -790px -395px;
    }

    87.5% {
        background-position: -1185px -395px;
    }

    100% {
        background-position: 0 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2rem;
    }

    .vertical-text {
        font-size: 1.2rem;
        letter-spacing: 0.3rem;
        position: absolute;
        top: 2rem;
        right: 0;
        left: 0;
        transform: none;
        width: 100%;
        text-align: center;
    }

    .logo-animada {
        transform: scale(0.6);
        margin-top: -4rem;
        margin-bottom: -4rem;
    }
}

@media (min-width: 1024px) {
    .coming-soon-content {
        max-width: 500px;
    }

    .logo-animada {
        width: 395px;
    }

    .vertical-text {
        right: -4rem;
        font-size: 1.3rem;
    }
}