body {
    min-height: 100vh;
    margin: 0;
    background-color: #f4f6f9;
    display: flex;
    align-items: center;
}

.login-card {
    border-radius: 18px;
    overflow: hidden;
}

.login-image {
    width: 100%;
    height: 230px;
    object-fit: contain;
    background-color: #ffffff;
    padding: 20px;
}

.login-card h1 {
    color: #284592;
    font-weight: 700;
}

.form-control:focus {
    border-color: #284592;
    box-shadow: 0 0 0 0.25rem rgba(40, 69, 146, 0.15);
}

.btn-primary {
    background-color: #284592;
    border-color: #284592;
}

.btn-primary:hover {
    background-color: #203875;
    border-color: #203875;
}

@media (max-width: 576px) {
    body {
        align-items: flex-start;
    }

    .login-image {
        height: 180px;
        padding: 15px;
    }
}

.login-card h1 {
    font-family: "Cinzel", serif;
    color: #284592;
    font-weight: 700;
    letter-spacing: 2px;
}

/* =========================
   Navegação pública inferior
========================= */

body {
    font-family: 'Poppins', sans-serif;
    padding-bottom: 95px;
}

.bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);

    width: calc(100% - 28px);
    max-width: 520px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;

    padding: 10px 8px;

    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;

    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);

    z-index: 1000;
    backdrop-filter: blur(12px);
}

.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 4px;

    min-height: 58px;

    color: #8a8a8a;
    text-decoration: none;

    font-size: 0.72rem;
    font-weight: 500;

    border-radius: 18px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.bottom-nav .nav-item i {
    font-size: 1.25rem;
}

.bottom-nav .nav-item:hover {
    color: #111;
    background-color: #f2f2f2;
    transform: translateY(-2px);
}

.bottom-nav .nav-item.active {
    color: #111;
    background-color: #ececec;
}

@media (min-width: 768px) {
    .bottom-nav {
        bottom: 24px;
    }
}


.teams-options{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:40px;
}

.team-option-card{
    background:#ffffff;
    border-radius:26px;
    padding:35px;
    text-decoration:none;
    color:#102d67;
    transition:.25s;
    display:flex;
    flex-direction:column;
    min-height:330px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.team-option-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.team-option-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#e8edf8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#234a97;
    margin-bottom:25px;
}

.team-option-label{
    color:#b17d12;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.team-option-card h2{
    margin:12px 0;
    font-size:36px;
    font-weight:800;
}

.team-option-card p{
    color:#66738a;
    line-height:1.6;
    flex:1;
}

.team-option-link{
    font-weight:700;
    color:#102d67;
    margin-top:20px;
}

@media(max-width:768px){

    .teams-options{
        grid-template-columns:1fr;
    }

}