/* =================== VARIÁVEIS =================== */
:root {
    /* Cores principais */
    --azul-principal: #2A5C82;
    --vermelho-destaque: #C3423F;
    --branco: #FFFFFF;
    --cinza-claro: #F5F5F5;
    --azul-escuro: #1A3A4D;

    /* Cores alternativas (neutras e tons escuros) */
    --clr-neutral-100: hsl(0, 0%, 100%);
    --clr-primary-100: hsl(205, 15%, 58%);
    --clr-primary-400: hsl(215, 25%, 27%);
    --clr-primary-800: hsl(217, 33%, 17%);
    --clr-primary-900: hsl(218, 33%, 9%);

    /* Estilo e transições */
    --sombra: 0 4px 20px rgba(0, 0, 0, 0.1);
    --borda: 2px solid rgba(42, 92, 130, 0.1);
    --transicao: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET GERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #C8E3FF;
    font-family: 'Montserrat', sans-serif;

}

/* NAVBAR */
.navbar {
    width: 100%;
    height: 70px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-left,
.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-right {
    margin-left: auto;
}

.navbar-right a {
    text-decoration: none;
    font-size: 14px;
    color: #1A3A4D;
    font-weight: bold;
    transition: 0.2s ease;
}

.navbar-right a:hover {
    color: #2793ff;
}

.logo {
    width: 120px;
}

.linkLogo {
    text-decoration: none;
}
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90vh;
    text-align: center;
}

.erro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.error-content h1 {
    font-size: 3rem;
    color: #333;
    font-weight: 600;
}

.error-content a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2793ff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    font-weight: bold;
    box-shadow: 0 2px 4px var(--sombra);
}
.error-content a:hover {
    background-color: #1a73cc;
}
