.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--background);
}

/* FOTO DO BANNER */

.hero::after {
    content: "";
    position: absolute;

    top: 0;
    right: 0;

    width: 45%;
    height: 100%;

    background:
        linear-gradient(90deg, var(--background), transparent 100%),
        url("../img/banners/Mídia.jpg");

    background-size: cover;
    background-position: center;
}

/* MENU */

.navbar {
    position: fixed;
    z-index: 2;

    height: 75px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7vw;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--font-color);
    text-decoration: none;

    font-weight: bold;
    text-transform: uppercase;

    padding: 8px 18px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}

.logo img {
    width: 40px;
    height: 40px;

    border-radius: 50%;
    
}

.navbar ul {
    display: flex;
    gap: 40px;

    list-style: none;

    padding: 15px 30px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}

.navbar li a {
    color: var(--font-color);
    text-decoration: none;

    font-size: 14px;
    font-weight: bold;
}

.navbar li a:hover {
    color: var(--secondary-color);
}

/* CONTEÚDO */

main {
    position: relative;
    z-index: 2;

    margin: 110px 0 0 150px;
}

h1,
h2 {
    font-size: 2.7rem;
    line-height: 1.05;
    font-weight: 800;
}

.hero h1 span,
.hero h2 span {
    color: var(--secondary-color);
}

hr {
    width: 85px;
    margin: 25px 0;

    border: 0;
    border-top: 3px solid var(--font-color);
}

main p {
    margin-top: 12px;

    font-size: 1rem;
    font-weight: bold;
    line-height: 1.2;
}