/* ============================================================
   RODAÍ - PAINEL ADMINISTRATIVO
   static/css/admin.css
============================================================ */


/* ============================================================
   RESET / VARIÁVEIS
============================================================ */

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

:root {
    --dark: #06111e;
    --dark-2: #091827;
    --dark-3: #0e2638;
    --dark-4: #143047;

    --green: #78f05a;
    --green-hover: #65e34c;
    --green-dark: #39b930;

    --white: #ffffff;

    --background: #f5f7f9;
    --background-2: #eef2f5;

    --text: #152235;
    --text-dark: #07111f;
    --muted: #748092;

    --border: #e1e7ed;

    --danger: #e5484d;
    --warning: #e8a317;
    --success: #2fb344;

    --shadow:
        0 16px 45px rgba(7, 17, 31, .10);

    --sidebar-width: 255px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    color: var(--text);

    background: var(--background);

    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    display: block;
}


/* ============================================================
   LOGIN - PÁGINA
============================================================ */

.login-page {
    position: relative;

    min-height: 100vh;

    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(120, 240, 90, .09),
            transparent 26%
        ),
        radial-gradient(
            circle at 12% 80%,
            rgba(0, 112, 255, .07),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #04101c 0%,
            #071725 50%,
            #092432 100%
        );

    color: #fff;
}

.login-background {
    position: fixed;

    inset: 0;

    overflow: hidden;

    pointer-events: none;
}

.login-background::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: .14;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, .025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .025) 1px,
            transparent 1px
        );

    background-size: 58px 58px;
}

.login-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(110px);
}

.login-glow-1 {
    width: 500px;
    height: 500px;

    top: -220px;
    right: -120px;

    background: rgba(120, 240, 90, .10);
}

.login-glow-2 {
    width: 500px;
    height: 500px;

    bottom: -250px;
    left: -160px;

    background: rgba(0, 110, 255, .09);
}


/* ============================================================
   LOGIN - CONTAINER
============================================================ */

.login-wrapper {
    position: relative;

    z-index: 5;

    width: min(1120px, calc(100% - 50px));

    min-height: 100vh;

    margin: 0 auto;

    padding: 55px 0;

    display: grid;

    grid-template-columns:
        minmax(400px, 1fr)
        430px;

    align-items: center;

    gap: 100px;
}


/* ============================================================
   LOGIN - MARCA
============================================================ */

.login-brand {
    max-width: 560px;
}

.admin-logo {
    display: inline-flex;

    flex-direction: column;

    margin-bottom: 70px;

    color: #fff;

    font-size: 38px;

    font-weight: 900;

    line-height: .86;

    letter-spacing: -2px;
}

.admin-logo span {
    color: var(--green);
}

.admin-logo small {
    margin-top: 9px;

    color: rgba(255, 255, 255, .48);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1.7px;
}


/* ============================================================
   LOGIN - APRESENTAÇÃO
============================================================ */

.login-label {
    display: block;

    margin-bottom: 16px;

    color: var(--green);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2.5px;
}

.login-intro h1 {
    max-width: 530px;

    margin-bottom: 19px;

    color: #fff;

    font-size: clamp(40px, 4vw, 58px);

    line-height: .98;

    letter-spacing: -2.8px;

    font-weight: 850;
}

.login-intro h1 strong {
    display: block;

    color: var(--green);
}

.login-intro p {
    max-width: 500px;

    color: rgba(255, 255, 255, .55);

    font-size: 14px;

    line-height: 1.7;
}


/* ============================================================
   LOGIN - BENEFÍCIOS
============================================================ */

.login-features {
    margin-top: 37px;

    display: grid;

    gap: 8px;
}

.login-feature {
    max-width: 470px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 11px;

    border-radius: 14px;

    transition: .2s;
}

.login-feature:hover {
    background: rgba(255, 255, 255, .035);
}

.feature-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 auto;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(120, 240, 90, .10);

    border-radius: 12px;

    background: rgba(120, 240, 90, .07);

    color: var(--green);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.login-feature strong {
    display: block;

    margin-bottom: 3px;

    color: #fff;

    font-size: 12px;
}

.login-feature span {
    display: block;

    color: rgba(255, 255, 255, .40);

    font-size: 10px;

    line-height: 1.4;
}


/* ============================================================
   LOGIN - CARD
============================================================ */

.login-card {
    width: 100%;

    padding: 39px;

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 26px;

    background: rgba(255, 255, 255, .97);

    color: var(--text);

    box-shadow:
        0 35px 90px rgba(0, 0, 0, .28);
}

.login-card-header {
    margin-bottom: 29px;
}

.login-card-icon {
    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    margin-bottom: 20px;

    border-radius: 14px;

    background: var(--green);

    color: var(--dark);
}

.login-card-icon svg {
    width: 22px;
    height: 22px;
}

.login-card-header h2 {
    margin-bottom: 8px;

    color: var(--text-dark);

    font-size: 25px;

    letter-spacing: -.7px;
}

.login-card-header p {
    color: var(--muted);

    font-size: 12px;
}


/* ============================================================
   ALERTAS
============================================================ */

.alert {
    margin-bottom: 18px;

    padding: 12px 14px;

    border-radius: 11px;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.5;
}

.alert-success {
    border: 1px solid #c7eccd;

    background: #effaf1;

    color: #217a31;
}

.alert-warning {
    border: 1px solid #f0dfb2;

    background: #fff9e9;

    color: #88600a;
}

.alert-danger,
.alert-error {
    border: 1px solid #f0c5c7;

    background: #fff1f1;

    color: #a52d32;
}


/* ============================================================
   LOGIN - FORMULÁRIO
============================================================ */

.login-form {
    display: flex;

    flex-direction: column;

    gap: 19px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #344154;

    font-size: 11px;

    font-weight: 800;
}

.input-wrapper {
    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

    border: 1px solid #dce3e9;

    border-radius: 13px;

    background: #f9fafb;

    transition: .2s;
}

.input-wrapper:focus-within {
    border-color: var(--green-dark);

    background: #fff;

    box-shadow:
        0 0 0 4px rgba(120, 240, 90, .12);
}

.input-wrapper > svg {
    width: 17px;
    height: 17px;

    margin-left: 15px;

    color: #8a96a4;

    flex: 0 0 auto;
}

.input-wrapper input {
    width: 100%;

    height: 52px;

    padding: 0 14px;

    border: 0;

    outline: 0;

    background: transparent;

    color: #182436;

    font-size: 12px;
}

.input-wrapper input::placeholder {
    color: #a2acb7;
}

.toggle-password {
    width: 48px;
    height: 50px;

    flex: 0 0 auto;

    display: grid;

    place-items: center;

    border: 0;

    background: transparent;

    color: #738091;
}

.toggle-password:hover {
    color: var(--text-dark);
}

.toggle-password svg {
    width: 18px;
    height: 18px;
}


/* ============================================================
   LOGIN - BOTÃO
============================================================ */

.login-button {
    width: 100%;

    min-height: 52px;

    margin-top: 4px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border: 0;

    border-radius: 999px;

    background: var(--green);

    color: var(--dark);

    font-size: 12px;

    font-weight: 900;

    transition: .2s;
}

.login-button:hover {
    transform: translateY(-2px);

    background: var(--green-hover);

    box-shadow:
        0 12px 28px rgba(72, 196, 54, .20);
}

.login-button svg {
    width: 16px;
    height: 16px;
}

.login-back {
    margin-top: 24px;

    padding-top: 20px;

    border-top: 1px solid var(--border);

    text-align: center;
}

.login-back a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #718092;

    font-size: 11px;

    font-weight: 700;

    transition: .2s;
}

.login-back a:hover {
    color: var(--green-dark);
}

.login-back svg {
    width: 14px;
    height: 14px;
}


/* ============================================================
   ADMIN - LAYOUT
============================================================ */

.admin-page {
    min-height: 100vh;

    background: var(--background);
}

.admin-layout {
    min-height: 100vh;

    display: flex;
}


/* ============================================================
   ADMIN - SIDEBAR
============================================================ */

.admin-sidebar {
    position: fixed;

    top: 0;
    left: 0;
    bottom: 0;

    z-index: 100;

    width: var(--sidebar-width);

    padding: 25px 16px 18px;

    display: flex;

    flex-direction: column;

    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(120, 240, 90, .08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #071522,
            #06111e
        );

    color: #fff;

    border-right:
        1px solid rgba(255, 255, 255, .05);
}

.sidebar-top {
    padding: 0 8px;
}

.sidebar-logo {
    display: inline-flex;

    flex-direction: column;

    margin-bottom: 28px;

    color: #fff;

    font-size: 30px;

    font-weight: 900;

    letter-spacing: -1.5px;

    line-height: .9;
}

.sidebar-logo span {
    color: var(--green);
}

.sidebar-logo small {
    margin-top: 5px;

    color: rgba(255, 255, 255, .35);

    font-size: 7px;

    letter-spacing: 1.7px;
}


/* ============================================================
   ADMIN - USUÁRIO
============================================================ */

.admin-user {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 13px;

    border:
        1px solid rgba(255, 255, 255, .06);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, .035);
}

.admin-avatar {
    width: 38px;
    height: 38px;

    flex: 0 0 auto;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background: var(--green);

    color: var(--dark);

    font-size: 14px;

    font-weight: 900;
}

.admin-user small {
    display: block;

    margin-bottom: 3px;

    color: rgba(255, 255, 255, .32);

    font-size: 6px;

    font-weight: 900;

    letter-spacing: 1px;
}

.admin-user strong {
    display: block;

    max-width: 140px;

    overflow: hidden;

    color: #fff;

    font-size: 10px;

    white-space: nowrap;

    text-overflow: ellipsis;
}


/* ============================================================
   ADMIN - MENU
============================================================ */

.sidebar-menu {
    margin-top: 25px;

    flex: 1;

    overflow-y: auto;
}

.menu-title {
    display: block;

    padding: 0 12px;

    margin-bottom: 7px;

    color: rgba(255, 255, 255, .25);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.7px;
}

.menu-title-space {
    margin-top: 22px;
}

.sidebar-menu > a {
    position: relative;

    min-height: 44px;

    margin-bottom: 3px;

    padding: 0 12px;

    display: flex;

    align-items: center;

    gap: 11px;

    border-radius: 11px;

    color: rgba(255, 255, 255, .58);

    font-size: 11px;

    font-weight: 650;

    transition: .18s;
}

.sidebar-menu > a svg {
    width: 17px;
    height: 17px;

    flex: 0 0 auto;
}

.sidebar-menu > a:hover {
    color: #fff;

    background:
        rgba(255, 255, 255, .045);
}

.sidebar-menu > a.active {
    color: #fff;

    background:
        rgba(120, 240, 90, .09);
}

.sidebar-menu > a.active svg {
    color: var(--green);
}

.sidebar-menu > a.active::before {
    content: "";

    position: absolute;

    left: 0;

    width: 3px;
    height: 22px;

    border-radius: 999px;

    background: var(--green);
}

.sidebar-menu > a.logout-link:hover {
    color: #ff9a9e;

    background:
        rgba(229, 72, 77, .07);
}


/* ============================================================
   SIDEBAR FOOTER
============================================================ */

.sidebar-footer {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px 10px 2px;

    border-top:
        1px solid rgba(255, 255, 255, .055);
}

.status-dot {
    width: 8px;
    height: 8px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 0 4px rgba(120, 240, 90, .06),
        0 0 15px rgba(120, 240, 90, .45);
}

.sidebar-footer strong {
    display: block;

    color: rgba(255, 255, 255, .70);

    font-size: 9px;
}

.sidebar-footer small {
    display: block;

    margin-top: 2px;

    color: rgba(255, 255, 255, .25);

    font-size: 7px;
}


/* ============================================================
   ADMIN - CONTEÚDO PRINCIPAL
============================================================ */

.admin-main {
    width:
        calc(100% - var(--sidebar-width));

    min-height: 100vh;

    margin-left: var(--sidebar-width);

    padding: 38px 42px 60px;
}


/* ============================================================
   ADMIN - HEADER
============================================================ */

.admin-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 31px;
}

.admin-page-label {
    display: block;

    margin-bottom: 7px;

    color: var(--green-dark);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;
}

.admin-header h1 {
    color: var(--text-dark);

    font-size: 32px;

    line-height: 1.05;

    letter-spacing: -1.2px;
}

.admin-header p {
    margin-top: 7px;

    color: var(--muted);

    font-size: 12px;
}

.admin-header-actions {
    display: flex;

    align-items: center;

    gap: 9px;
}


/* ============================================================
   BOTÕES ADMIN
============================================================ */

.btn-admin-primary,
.btn-admin-secondary {
    min-height: 42px;

    padding: 0 17px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    border-radius: 999px;

    font-size: 10px;

    font-weight: 850;

    transition: .18s;
}

.btn-admin-primary {
    border: 1px solid var(--green);

    background: var(--green);

    color: var(--dark);
}

.btn-admin-primary:hover {
    transform: translateY(-2px);

    background: var(--green-hover);
}

.btn-admin-secondary {
    border: 1px solid #dce3e9;

    background: #fff;

    color: #455365;
}

.btn-admin-secondary:hover {
    border-color: #c9d2da;

    background: #f9fafb;
}

.btn-admin-primary svg,
.btn-admin-secondary svg {
    width: 15px;
    height: 15px;
}


/* ============================================================
   ADMIN - CARDS ESTATÍSTICOS
============================================================ */

.admin-stats {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;

    margin-bottom: 32px;
}

.stat-card {
    min-width: 0;

    padding: 20px;

    border: 1px solid var(--border);

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 7px 24px rgba(7, 17, 31, .045);

    transition: .18s;
}

.stat-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 32px rgba(7, 17, 31, .08);
}

.stat-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 18px;
}

.stat-top > span {
    color: #9aa5b1;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.4px;
}

.stat-icon {
    width: 39px;
    height: 39px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background: #edf4ff;

    color: #3975c6;
}

.stat-icon svg {
    width: 18px;
    height: 18px;
}

.stat-green {
    background:
        rgba(120, 240, 90, .13);

    color: #3cad31;
}

.stat-yellow {
    background: #fff6db;

    color: #d2940c;
}

.stat-purple {
    background: #f1edff;

    color: #7256d9;
}

.stat-number {
    display: block;

    margin-bottom: 4px;

    color: var(--text-dark);

    font-size: 31px;

    line-height: 1;

    letter-spacing: -1px;
}

.stat-card p {
    color: var(--muted);

    font-size: 10px;
}


/* ============================================================
   ADMIN - SEÇÕES
============================================================ */

.admin-section {
    margin-top: 28px;
}

.admin-section-header {
    margin-bottom: 15px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;
}

.admin-section-header h2 {
    color: var(--text-dark);

    font-size: 18px;

    letter-spacing: -.4px;
}

.admin-section-header p {
    margin-top: 4px;

    color: var(--muted);

    font-size: 10px;
}

.admin-section-header > a {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: #3975c6;

    font-size: 10px;

    font-weight: 750;
}

.admin-section-header > a svg {
    width: 13px;
}


/* ============================================================
   AÇÕES RÁPIDAS
============================================================ */

.quick-actions {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;
}

.quick-card {
    min-height: 90px;

    padding: 17px;

    display: flex;

    align-items: center;

    gap: 13px;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: #fff;

    box-shadow:
        0 6px 20px rgba(7, 17, 31, .035);

    transition: .18s;
}

.quick-card:hover {
    transform: translateY(-3px);

    border-color: #d2dbe3;

    box-shadow:
        0 13px 28px rgba(7, 17, 31, .07);
}

.quick-icon {
    width: 43px;
    height: 43px;

    flex: 0 0 auto;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        rgba(120, 240, 90, .12);

    color: #3bad30;
}

.quick-icon svg {
    width: 19px;
    height: 19px;
}

.quick-card > div:nth-child(2) {
    min-width: 0;

    flex: 1;
}

.quick-card strong {
    display: block;

    margin-bottom: 3px;

    color: var(--text-dark);

    font-size: 11px;
}

.quick-card span {
    display: block;

    color: var(--muted);

    font-size: 9px;
}

.quick-arrow {
    width: 15px;
    height: 15px;

    flex: 0 0 auto;

    color: #9ba5b0;
}


/* ============================================================
   ADMIN - TABELA
============================================================ */

.admin-table-wrapper {
    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 17px;

    background: #fff;

    box-shadow:
        0 7px 24px rgba(7, 17, 31, .04);
}

.admin-table {
    width: 100%;

    border-collapse: collapse;
}

.admin-table thead {
    background: #f8fafb;
}

.admin-table th {
    padding: 13px 15px;

    border-bottom:
        1px solid var(--border);

    color: #8793a1;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;

    text-align: left;
}

.admin-table td {
    padding: 13px 15px;

    border-bottom:
        1px solid #edf1f4;

    color: #536173;

    font-size: 10px;

    vertical-align: middle;
}

.admin-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-table tbody tr {
    transition: .15s;
}

.admin-table tbody tr:hover {
    background: #fafcfd;
}


/* ============================================================
   ANÚNCIO NA TABELA
============================================================ */

.table-anuncio {
    display: flex;

    align-items: center;

    gap: 11px;
}

.table-image {
    width: 48px;
    height: 42px;

    flex: 0 0 auto;

    overflow: hidden;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #0b2132,
            #143b50
        );

    color: var(--green);

    font-size: 16px;

    font-weight: 900;
}

.table-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.table-anuncio strong {
    display: block;

    max-width: 260px;

    overflow: hidden;

    color: var(--text-dark);

    font-size: 10px;

    white-space: nowrap;

    text-overflow: ellipsis;
}

.table-anuncio small {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 8px;
}


/* ============================================================
   STATUS
============================================================ */

.status-badge {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 5px 8px;

    border-radius: 999px;

    font-size: 8px;

    font-weight: 800;
}

.status-badge > span {
    width: 6px;
    height: 6px;

    border-radius: 50%;
}

.status-badge.active {
    background: #effaf1;

    color: #268438;
}

.status-badge.active > span {
    background: #35b64a;
}

.status-badge.inactive {
    background: #f1f3f5;

    color: #7a8590;
}

.status-badge.inactive > span {
    background: #9ba4ae;
}

.featured-badge {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: #c28a0d;

    font-size: 9px;

    font-weight: 800;
}

.featured-badge svg {
    width: 13px;
    height: 13px;
}

.muted-text {
    color: #a0a9b3;

    font-size: 9px;
}


/* ============================================================
   AÇÕES TABELA
============================================================ */

.table-actions {
    display: flex;

    align-items: center;

    gap: 5px;
}

.table-actions a,
.table-actions button {
    width: 31px;
    height: 31px;

    display: grid;

    place-items: center;

    border: 1px solid #e0e6eb;

    border-radius: 9px;

    background: #fff;

    color: #6f7c8c;

    transition: .15s;
}

.table-actions a:hover,
.table-actions button:hover {
    border-color: #cfd8df;

    background: #f5f8fa;

    color: var(--text-dark);
}

.table-actions svg {
    width: 14px;
    height: 14px;
}


/* ============================================================
   ADMIN - EMPTY STATE
============================================================ */

.admin-empty {
    padding: 60px 30px;

    text-align: center;
}

.admin-empty-icon {
    width: 54px;
    height: 54px;

    margin: 0 auto 14px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background: #eef2f5;

    color: #8c99a7;
}

.admin-empty-icon svg {
    width: 24px;
    height: 24px;
}

.admin-empty strong {
    display: block;

    margin-bottom: 6px;

    color: var(--text-dark);

    font-size: 16px;
}

.admin-empty p {
    max-width: 390px;

    margin: 0 auto 18px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.6;
}


/* ============================================================
   RESPONSIVO - TABLET
============================================================ */

@media (max-width: 1100px) {

    :root {
        --sidebar-width: 220px;
    }

    .admin-main {
        padding:
            32px 28px 50px;
    }

    .admin-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .login-wrapper {
        gap: 55px;

        grid-template-columns:
            minmax(350px, 1fr)
            390px;
    }

}


/* ============================================================
   RESPONSIVO - LOGIN
============================================================ */

@media (max-width: 850px) {

    .login-wrapper {
        width:
            min(500px, calc(100% - 30px));

        grid-template-columns: 1fr;

        gap: 40px;

        padding: 40px 0;
    }

    .login-brand {
        text-align: center;

        margin: 0 auto;
    }

    .admin-logo {
        margin-bottom: 42px;
    }

    .login-intro h1 {
        margin-left: auto;
        margin-right: auto;
    }

    .login-intro p {
        margin-left: auto;
        margin-right: auto;
    }

    .login-features {
        display: none;
    }

}


/* ============================================================
   RESPONSIVO - ADMIN
============================================================ */

@media (max-width: 760px) {

    .admin-layout {
        display: block;
    }

    .admin-sidebar {
        position: relative;

        width: 100%;
        height: auto;

        padding: 16px;
    }

    .sidebar-top {
        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 20px;
    }

    .sidebar-logo {
        margin-bottom: 0;
    }

    .admin-user {
        padding: 8px 10px;
    }

    .sidebar-menu {
        margin-top: 17px;

        display: flex;

        overflow-x: auto;

        gap: 5px;

        padding-bottom: 4px;
    }

    .sidebar-menu .menu-title {
        display: none;
    }

    .sidebar-menu > a {
        min-width: max-content;

        margin: 0;
    }

    .sidebar-menu > a.active::before {
        display: none;
    }

    .sidebar-footer {
        display: none;
    }

    .admin-main {
        width: 100%;

        margin-left: 0;

        padding: 26px 18px 45px;
    }

    .admin-header {
        align-items: flex-start;

        flex-direction: column;
    }

    .admin-header-actions {
        width: 100%;
    }

    .admin-header-actions a {
        flex: 1;
    }

    .admin-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .admin-table-wrapper {
        overflow-x: auto;
    }

    .admin-table {
        min-width: 760px;
    }

}


/* ============================================================
   RESPONSIVO - CELULAR
============================================================ */

@media (max-width: 520px) {

    .login-wrapper {
        width:
            calc(100% - 24px);

        padding: 25px 0;
    }

    .admin-logo {
        font-size: 30px;

        margin-bottom: 32px;
    }

    .login-intro h1 {
        font-size: 38px;

        letter-spacing: -2px;
    }

    .login-intro p {
        font-size: 12px;
    }

    .login-card {
        padding: 27px 21px;

        border-radius: 21px;
    }

    .login-card-header h2 {
        font-size: 22px;
    }

    .admin-stats {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-number {
        font-size: 26px;
    }

    .admin-header h1 {
        font-size: 27px;
    }

    .admin-header-actions {
        flex-direction: column;
    }

    .admin-header-actions a {
        width: 100%;
    }

}