:root{
    --gold: #B69C26;
    --gold-dark: #8C7620;
    --gold-light: #EFE6C4;
    --cream: #F3F3EA;
    --surface: #FFFFFF;
    --ink: #2B2926;
    --muted: #756F62;
    --border: #E4E1D6;
    --success: #2F7D5A;
    --danger: #B3402B;
    --radius: 0.75rem;
    --shadow: 0 2px 10px rgba(43, 41, 38, 0.06);
    --font-display: 'Poppins', 'Century Gothic', 'Segoe UI', sans-serif;
    --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}
body{
    background-color: var(--cream);
    color: var(--ink);
}

.topbar-static{
    display: flex;
    align-items: center;
    height: 8vh;
    background: white;
    z-index: 2;
    box-shadow: 0 4px 4px -2px #989898;
    padding-left: 2rem;
    padding-right: 2rem;
}

.logo-badge{
    display: inline-flex;
    align-items: center;
    height: 45px;
    padding: 0 1.1rem;
    border: 2px solid var(--gold);
    border-radius: 2rem;
    color: var(--gold-dark);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease;
}

a.logo-badge:hover,
a.logo-badge:focus-visible{
    background-color: var(--gold);
    color: white;
    text-decoration: none;
}

.logo-badge--static{
    cursor: default;
}

li{
    list-style: none;
}

.container-principal{
    display: grid;
    grid-template-rows: 7vh 1fr;
    grid-template-columns: 1fr;
    justify-content: center;
}

