* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #081b2b;
}

/* HEADER */
.topo {
    background: #0d4c8f;
    padding: 18px 0;
}

/* CENTRALIZA SEM QUEBRAR */
.container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT */
.left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 28px;
}

/* HAMBURGUER */
.hamburguer {
    width: 20px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburguer span {
    height: 2px;
    background: white;
}

/* LINHA LARANJA */
.divider-laranja {
    width: 2px;
    height: 20px;
    background: #f39200;
}

/* MENU */
nav {
    display: flex;
    align-items: center;
}

nav a {
    color: #fff;
    margin-right: 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding-right: 12px;
}

/* LINHAS LARANJA */
nav a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    background: #f39200;
}

/* SETA */
.seta {
    font-size: 10px;
    margin-left: 4px;
}

/* RIGHT */
.right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* BUSCA */
.busca {
    position: relative;
    display: flex;
    align-items: center;
}

.icon-lupa {
    position: absolute;
    left: 0;
    width: 14px;
    height: 14px;
}

.busca input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
    padding: 4px 4px 4px 22px;
    outline: none;
    width: 180px;
    font-size: 13px;
}

.busca input::placeholder {
    color: #ffffff;
}

/* BOTÃO */
.btn-conta {
    background: linear-gradient(to bottom, #f1f3f5, #dfe3e6);
    border: 1px solid #cfd4d9;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    color: #0d4c8f;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 14px;
}

.icon-lock {
    width: 14px;
    height: 14px;
    color: #0d4c8f;
}

.btn-conta:hover {
    background: #0d4c8f;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-conta:hover .icon-lock {
    color: #ffffff;
}