<style>

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --glass-bg: rgba(255,255,255,0.06);
    --glass-border: rgba(255,255,255,0.12);

    --green: #00d084;
    --green-soft: rgba(0,208,132,0.18);

    --text: #ffffff;
    --text-soft: rgba(255,255,255,0.65);

    --shadow:
        0 8px 30px rgba(0,0,0,0.35);
}

body {
    min-height: 100vh;

    font-family: 'Segoe UI', Arial, sans-serif;

    color: var(--text);

    overflow-x: hidden;

    padding: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(0,0,0,0.88) 0%,
            rgba(0,15,10,0.72) 100%
        ),
        url('https://images.hdqwalls.com/download/nordland-norway-lk-3840x2160.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* =========================
   CONTAINER PRINCIPAL
========================= */
.container {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;
}

/* =========================
   LOGO
========================= */
.logo-container {
    position: absolute;

    top: 20px;
    left: 25px;

    max-width: 170px;

    z-index: 20;
}

.logo-img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;
}

/* =========================
   TOPO
========================= */
.top-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-bottom: 28px;
}

/* =========================
   TÍTULO
========================= */
h1 {
    font-size: 42px;
    font-weight: 800;

    letter-spacing: 0.5px;

    color: #ffffff;

    text-align: center;

    text-shadow:
        0 0 12px rgba(0,208,132,0.35);
}

/* =========================
   PESQUISA
========================= */

.search-container {
    position: relative;

    width: 100%;
    max-width: 520px;

    margin: 0 auto 20px;

    z-index: 100;
}

.search-container input[type="text"] {
    width: 100%;

    height: 56px;

    padding: 0 20px;

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;

    outline: none;

    background: rgba(15,15,15,0.45);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    color: #ffffff;

    font-size: 15px;
    font-weight: 500;

    transition: all 0.25s ease;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.35);

    caret-color: #00d084;
}

.search-container input[type="text"]::placeholder {
    color: rgba(255,255,255,0.45);
}

.search-container input[type="text"]:focus {
    border-color: rgba(0,208,132,0.7);

    background: rgba(18,18,18,0.62);

    box-shadow:
        0 0 0 4px rgba(0,208,132,0.12),
        0 0 20px rgba(0,208,132,0.20);
}

/* =========================
   RESULTADOS DA PESQUISA
========================= */

.results-list {
    position: absolute;

    top: calc(100% + 10px);
    left: 0;

    width: 100%;

    list-style: none;

    padding: 8px 0;
    margin: 0;

    border-radius: 16px;

    background: rgba(15,15,15,0.96);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 12px 35px rgba(0,0,0,0.40);

    overflow: hidden;

    display: none;

    z-index: 999;
}

/* MOSTRAR RESULTADOS */
.results-list.active {
    display: block;
}

.results-list li {
    padding: 14px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    transition: background 0.2s ease;

    border-bottom: 1px solid rgba(255,255,255,0.05);

    color: #ffffff;

    font-size: 14px;
    font-weight: 500;
}

.results-list li:last-child {
    border-bottom: none;
}

.results-list li:hover {
    background: rgba(0,208,132,0.12);

    cursor: pointer;
}

/* NOME DO CLIENTE */
.client-name {
    color: #ffffff;

    font-weight: 600;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* TAG / AMBIENTE */
.azure-env {
    padding: 5px 10px;

    border-radius: 999px;

    background: rgba(0,208,132,0.15);

    border: 1px solid rgba(0,208,132,0.30);

    color: #00d084;

    font-size: 11px;
    font-weight: 700;

    flex-shrink: 0;
}

/* =========================
   GRID
========================= */
.grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}

/* =========================
   CARDS
========================= */
.card {
    height: 90px;

    padding: 14px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    text-decoration: none;

    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    background: var(--glass-bg);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid var(--glass-border);

    box-shadow: var(--shadow);

    transition:
        transform 0.22s ease,
        border 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.card:hover {
    transform: translateY(-3px);

    border-color: rgba(0,208,132,0.6);

    background: rgba(0,208,132,0.10);

    box-shadow:
        0 0 22px rgba(0,208,132,0.22);
}

/* =========================
   FOOTER
========================= */
.footer {
    margin-top: 28px;

    text-align: center;

    font-size: 13px;

    color: var(--text-soft);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1100px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    h1 {
        font-size: 34px;
    }
}

@media (max-width: 560px) {
    body {
        padding: 18px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 28px;
    }

    .logo-container {
        position: relative;

        top: auto;
        left: auto;

        margin: 0 auto 20px;
    }
}
</style>