.container-fluid {
    padding: 0 !important;
}

.hero {
    min-height: 500px;

    background-image:
        linear-gradient(to right, rgba(10, 20, 50, 0.85), rgba(10, 20, 50, 0.2)),
        url("../imgs/Frame_152.png");

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 30%;


    color: white;
    padding: 16px 8%;
    display: flex;
    flex-direction: column;
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.navbar-collapse {
    justify-content: end;
}

.navbar-nav {
    gap: 30px;
}

.nav-link {
    color: white !important;
}

.nav-link:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

.nav-link :focus {
    color: #fff !important;
    text-decoration: underline !important;
}

.navbar-toggler {
    color: #fff;
    border: var(--bs-border-width) solid #fff !important;
    ;
}

.navbar-toggler-icon {
    background-image: url("../imgs/toggler_icon.svg") !important;
}

/* HERO TEXT */

.hero-content {
    height: 100%;
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.early-access-text {
    font-size: 16px;
    margin-bottom: 15px !important;
    font-weight: 600;
}

/* BOTÕES */

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #FF5714;
    border: none;
    padding: 12px 30px !important;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-block;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:visited {
    background: #94320c;
    color: white;
    text-decoration: none !important;
}

.btn-outline {
    background: transparent;
    border: 1px solid white;
    padding: 5px 30px !important;
    border-radius: 20px;
    color: white;

    transition: all 0.3s ease;

}

.btn-outline:hover {
    background: white;
    color: black;

}


@media (max-width:768px) {

    .hero {
        padding: 16px;
        background-position: center;

    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .menu {
        display: none;
    }

    .buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary {
        width: 100%;
    }
}