@import url('https://fonts.googleapis.com/css2?family=Rubik+Bubbles&family=Rubik+Glitch&family=Rubik:ital,wght@0,300..900;1,300..900&family=Tiny5&display=swap');

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    font-family: "Outfit", sans-serif;

    box-sizing: inherit;
}

body {
    font-family: "Outfit", sans-serif;
}

.intro {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #00295b;
    transition: 1s;
}

.logo-image {
    max-width: 80%;
    height: auto;
}

.logo {
    font-size: 3rem; /* Aumentado de 2.5rem a 3rem */
    color: #ffffff;
    margin-top: 80px;
}

.logo-parts {
    font-size: 1.5rem; /* Aumentado de small a 1.5rem */
    color: whitesmoke;
    font-family: "Outfit", sans-serif;
    position: relative;
    display: inline-block;
    bottom: -20px;
    opacity: 0;
}

.logo-parts.active {
    bottom: 0;
    opacity: 1;
    transition: ease-in-out 0.5s;
}

.logo-parts.fade {
    bottom: 250px;
    opacity: 0;
    transition: ease-in-out 0.5s;
}

.content {
    width: 100%;
    padding: 50px;
    font-size: 2rem;
}

@media only screen and (max-width: 768px) {
    .logo {
        font-size: 2.5rem; /* Ajustado a 2.5rem */
    }

    .logo-parts {
        font-size: 1.2rem; /* Ajustado para ser responsivo */
    }
}

@media only screen and (max-width: 480px) {
    .logo {
        font-size: 2rem; /* Ajustado a 2rem */
    }

    .logo-parts {
        font-size: 1rem; /* Ajustado a 1rem */
    }

    .logo-image {
        max-width: 90%;
    }
}
