@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {

    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;

}

.hero {
    /* background: #020024; */
    /* background: linear-gradient(0deg, rgba(2, 0, 36, 1) 0%, rgb(0 0 37) 35%, rgb(0 33 255 / 35%) 100%); */
    background-image: url('../img/bg.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;


}

.navbar-brand img {
    width: 90px;
    height: 90px;
}

.navbar {
    background: rgba(255, 255, 255, 0);

    transition: background 0.3s ease;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.4);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.1rem rgba(255, 255, 255, 0.35);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.las,
.lab,
.fa-brands {
    font-size: 32px;
    color: #fff;
}

.fa-brands {
    font-size: 24px;
}

.logo {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    left: 10%;
}

.w90 {
    width: 90%;
}

p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #000;
}

.vh100 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 7rem;
    color: #ffffff;
    line-height: 90%;
}

h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #ffffff;
    line-height: 90%;
}


h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #ffffff;
    line-height: 90%;
}

.framer {
    background-image: url(../img/bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    margin-top: -245px;
    z-index: 1;
    position: relative;
}

/* From Uiverse.io by niat786 */
button {
    font-family: 'Inter', sans-serif;

    font-size: 1rem;
    align-items: center;
    height: 48px;
    border-radius: 0.4rem;
    font-weight: 600;
    padding: 0 1.2rem;
    color: #ddd;
    border: none;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgba(143, 142, 142, 0.15) !important;
    background: #000000;
}

.followers {
    font-size: 0.8rem;
    color: #7f7f7f;
}

button:hover {
    background: #2b2a2a;
}


.box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.8rem;
    gap: 20px;
    background: linear-gradient(0deg, #000a2d 0%, #000b29 100%);
    border-radius: 10px;
    padding: 20px;

    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 340px;
    border: solid 1px #00adfc21;
    width: 100%;

    &:hover {
        transform: scale(1.02);
    }
}

aside {
    display: flex;
    align-items: center;
    flex-direction: column;
}

section {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    justify-content: center;
    margin-bottom: 30px;
}

.section-title {
    position: sticky;
    top: 20px;
    font-size: 62px;
    font-weight: 800;
    background: linear-gradient(90deg, #0044e1 0%, #01c1fd 60%, #00d6fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-content {
    display: flex;
    flex-direction: column;
}

article {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 35rem;
}

main {
    padding-bottom: 2rem;
}

.dot {
    --size: .5rem;
    width: var(--size);
    height: var(--size);
    margin: calc((1rem - var(--size))/2);
    border-radius: 50%;
    background-color: #01c5fd;
    flex-grow: 0;
}

.line {
    flex-grow: 1;
    margin: 8px 0;
    width: 1px;
    background-color: #01c5fd;
}

p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
}

.opacidade {
    opacity: 0.7;
}

.animate-on-scroll {
    opacity: 0;
    transform: translate3d(0, 35px, 0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.animate-on-scroll[data-animate="fade-down"] {
    transform: translate3d(0, -35px, 0);
}

.animate-on-scroll[data-animate="fade-right"] {
    transform: translate3d(-35px, 0, 0);
}

.animate-on-scroll[data-animate="fade-left"] {
    transform: translate3d(35px, 0, 0);
}

.animate-on-scroll[data-animate="zoom-in"] {
    transform: scale(0.92);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.bgDiferente {
    background-image: url('../img/bgazul.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgb(0 4 40) !important;
}

.flutuante {
    display: block;
    position: absolute;
    background-color: #04abfa;
    border-radius: 7px;
    padding: 0px 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    margin-top: -45px;
    right: 210px;
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        transition: none;
        transform: none !important;
        opacity: 1 !important;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        width: 50px;
        height: 50px;
    }

    h1 {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 3rem;
        color: #ffffff;
        line-height: 90%;
    }

    .lead {
        font-size: 1rem;
        font-weight: 300;
    }

    h2 {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 2rem;
        color: #ffffff;
        line-height: 90%;
    }

    p {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 1rem;
    }

    section {
        display: flex;
        align-items: flex-start;
        gap: 40px;
        justify-content: center;
        margin-bottom: 30px;
        flex-direction: column;
    }

    .navbar-collapse {
        background-color: #07071cdb;
        padding: 20px;
        border-radius: 20px;
        backdrop-filter: blur(5px);
    }

    .box {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-content: center;
        align-items: center;
        color: #fff;
        font-size: 1.8rem;
        gap: 20px;
        background: linear-gradient(0deg, #000a2d 0%, #000b29 100%);
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        height: 340px;
        border: solid 1px #00adfc21;
        width: 106%;
    }

    .list-inline {
        justify-content: center;
    }
}