/* ================= VARIÁVEIS ================= */
:root {
    --sidebar-bg: #1a1a1a;
    --sidebar-active: #f1a10a;
    --sidebar-text: #888888;
    --main-bg: #ffffff;
}

/* ================= BODY ================= */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--main-bg);
}

/* ================= LAYOUT ================= */
.layout {
    display: flex;
    min-height: 100vh;
}

/* ================= SIDEBAR ================= */
.sidebar {
    width: 250px;
    background-color: var(--sidebar-bg);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    transition: transform 0.3s ease;
    z-index: 1050;
}

    .sidebar .logo-text {
        color: var(--sidebar-active);
        font-size: 1.25rem;
        font-weight: bold;
        text-transform: uppercase;
        text-decoration: none;
    }

    /* ================= MENU ================= */
    .sidebar .nav-link {
        color: var(--sidebar-text);
        padding: 12px 20px;
        border-radius: 0 25px 25px 0;
        display: flex;
        align-items: center;
        transition: 0.3s;
    }

        .sidebar .nav-link:hover {
            color: white;
        }

        .sidebar .nav-link.active {
            background-color: var(--sidebar-active);
            color: white !important;
        }

/* ================= LOGIN ================= */
.sidebar-user {
    margin-top: auto;
    padding-top: 20px;
}

/* ================= CONTEÚDO ================= */
.content {
    margin-left: 250px;
    padding: 30px;
    min-height: 100vh;
    background-color: #fff;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

        .sidebar.show {
            transform: translateX(0);
        }

    .content {
        margin-left: 0;
        padding: 20px;
    }
}

/* ================= BOTÃO PRINCIPAL (Salvar) ================= */
.btn-primary {
    background-color: var(--sidebar-active);
    border-color: var(--sidebar-active);
}

    .btn-primary:hover,
    .btn-primary:focus {
        background-color: #d18b08;
        border-color: #d18b08;
    }

    .btn-primary:active {
        background-color: #b97706;
        border-color: #b97706;
    }


/* ===============================
   LINK "VOLTAR"
   Hover sutil, sem impacto visual
   =============================== */

a.link-voltar {
    color: var(--sidebar-active);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

    a.link-voltar:hover {
        color: var(--sidebar-hover);
        text-decoration: underline;
    }


/* ===============================
   CONTAINER DE FORMULÁRIOS
   =============================== */
.form-wrapper {
    max-width: 720px;
}


/* ===============================
   HOME / TELA INICIAL
   =============================== */

.home-container {
    height: 100%;
    min-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}


.home-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #212529;
    margin-bottom: 25px;
}

.home-logo {
    max-width: 180px;
    width: 100%;
    margin-bottom: 20px;
}

.home-divider {
    width: 80px;
    height: 3px;
    background-color: var(--sidebar-active);
    margin: 15px 0;
}

.home-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
}

/* Ajustes Mobile */
@media (max-width: 767.98px) {
    .home-title {
        font-size: 2rem;
    }

    .home-logo {
        max-width: 140px;
    }
}
