/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.header-container {
    height: 80px;

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

.logo {
    display: flex;
    gap: 0.5em;
    align-items: center;
}

.logo > img {
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;

    text-decoration: none;
}

.logo-text span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;

    color: var(--blue-dark);
}

.logo-text small {
    color: var(--blue);
    font-size: .8rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);

    font-weight: 600;

    transition: .3s;
}

.nav a:hover {
    color: var(--blue-primary);
}

.header-cta {
    background: #25D366;
    color: #fff !important;

    padding: 12px 18px;
    border-radius: 999px;

    font-size: .95rem;
    font-weight: 700;

    transition: .3s;
}

.header-cta:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;

    background: none;
    border: none;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 28px;
    height: 3px;

    background: var(--blue-dark);

    margin: 5px 0;
    border-radius: 999px;
}