/* =========================================================
   MEOW CLOSET STORE
   HISTÓRICO DE STATUS
========================================================= */


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

:root {
    --bg: #060608;

    --purple: #8b2cf5;
    --purple-light: #a855f7;

    --green: #19d3a2;
    --red: #ff4d5e;
    --yellow: #f7c948;
    --orange: #ff7a32;
    --blue: #38bdf8;

    --text: #ffffff;
    --text-secondary: #9ca3af;

    --border: rgba(255, 255, 255, 0.07);
}


/* =========================
   RESET
========================= */

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


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    font-family: Arial, Helvetica, sans-serif;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 50% -15%,
            rgba(139, 44, 245, 0.17),
            transparent 35%
        ),
        radial-gradient(
            circle at 100% 70%,
            rgba(139, 44, 245, 0.05),
            transparent 30%
        ),
        var(--bg);

    overflow-x: hidden;
}


/* =========================================================
   HEADER
========================================================= */

header {
    width: 100%;

    padding: 22px 7%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(6, 6, 8, 0.82);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);
}


/* =========================
   LOGO
========================= */

.logo {
    position: relative;

    font-size: 21px;
    font-weight: 800;

    letter-spacing: -0.3px;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #ffffff,
            #b96cff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.logo::after {
    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    right: -10px;
    top: 3px;

    border-radius: 50%;

    background: var(--purple);

    box-shadow:
        0 0 8px var(--purple),
        0 0 15px var(--purple);
}


/* =========================================================
   NAVEGAÇÃO
========================================================= */

nav {
    display: flex;
    align-items: center;

    gap: 8px;
}


nav a {
    position: relative;

    padding: 9px 14px;

    border-radius: 9px;

    color: #c8cad0;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}


nav a:hover {
    color: #ffffff;

    background:
        rgba(139, 44, 245, 0.10);

    transform: translateY(-1px);
}


nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 3px;

    width: 0;
    height: 2px;

    border-radius: 20px;

    background: var(--purple-light);

    transform: translateX(-50%);

    transition: width 0.25s ease;

    box-shadow:
        0 0 8px rgba(168, 85, 247, 0.8);
}


nav a:hover::after {
    width: 35%;
}


/* =========================================================
   PAINEL SUPERIOR DE STATUS
========================================================= */

.status-card {
    position: relative;

    width: calc(100% - 40px);
    max-width: 850px;

    margin: 20px auto 25px;

    padding: 38px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(18, 18, 24, 0.96),
            rgba(8, 8, 12, 0.96)
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(139, 44, 245, 0.055);

    backdrop-filter: blur(25px);

    overflow: hidden;
}


/* iluminação roxa */

.status-card::before {
    content: "";

    position: absolute;

    top: -120px;
    left: 50%;

    transform: translateX(-50%);

    width: 450px;
    height: 220px;

    background:
        radial-gradient(
            circle,
            rgba(139, 44, 245, 0.18),
            transparent 70%
        );

    pointer-events: none;
}


/* linha superior */

.status-card::after {
    content: "";

    position: absolute;

    top: 0;
    left: 15%;

    width: 70%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(168, 85, 247, 0.85),
            transparent
        );

    box-shadow:
        0 0 15px rgba(168, 85, 247, 0.5);
}


/* =========================================================
   CABEÇALHO STATUS
========================================================= */

.status-header {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 14px;

    margin-bottom: 38px;
}


.status-header h2 {
    font-size: 20px;
    font-weight: 700;

    color: #f4f4f5;
}


/* =========================================================
   ÍCONE STATUS GERAL
========================================================= */

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

    min-width: 42px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 13px;

    font-size: 19px;
    font-weight: 800;

    border: 1px solid transparent;
}


/* ONLINE */

.status-icon.online {
    color: var(--green);

    background:
        rgba(25, 211, 162, 0.09);

    border-color:
        rgba(25, 211, 162, 0.18);
}


/* OFFLINE */

.status-icon.offline {
    color: var(--red);

    background:
        rgba(255, 77, 94, 0.09);

    border-color:
        rgba(255, 77, 94, 0.18);
}


/* WARNING */

.status-icon.warning,
.status-icon.checking {
    color: var(--yellow);

    background:
        rgba(247, 201, 72, 0.09);

    border-color:
        rgba(247, 201, 72, 0.18);
}


/* =========================================================
   LISTA DOS SISTEMAS
========================================================= */

.status-list {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    gap: 12px;
}


/* =========================================================
   CADA SISTEMA
========================================================= */

.status-item {
    width: 100%;

    padding: 20px;

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.025);

    border:
        1px solid rgba(255, 255, 255, 0.055);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


.status-item:hover {
    transform: translateY(-2px);

    background:
        rgba(255, 255, 255, 0.04);

    border-color:
        rgba(168, 85, 247, 0.20);
}


/* =========================================================
   NOME + ONLINE/OFFLINE
========================================================= */

.status-system {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 13px;
}


.status-name {
    font-size: 15px;

    color: #e7e7eb;
}


/* =========================================================
   TEXTO ONLINE / OFFLINE
========================================================= */

.status-text {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 5px 10px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 650;
}


.status-text::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: currentColor;

    box-shadow:
        0 0 8px currentColor;
}


/* ONLINE */

.status-text.online {
    color: var(--green);

    background:
        rgba(25, 211, 162, 0.07);

    border:
        1px solid rgba(25, 211, 162, 0.12);
}


/* OFFLINE */

.status-text.offline {
    color: var(--red);

    background:
        rgba(255, 77, 94, 0.07);

    border:
        1px solid rgba(255, 77, 94, 0.12);
}


/* PARCIAL */

.status-text.warning,
.status-text.parcial {
    color: var(--yellow);

    background:
        rgba(247, 201, 72, 0.07);

    border:
        1px solid rgba(247, 201, 72, 0.14);
}


/* =========================================================
   BARRA DOS SISTEMAS
========================================================= */

.status-bar {
    width: 100%;
    height: 18px;

    border-radius: 7px;

    background: #12151c;

    overflow: hidden;
}


.status-bar-fill {
    width: 0;
    height: 100%;

    position: relative;

    border-radius: inherit;

    transition:
        width 0.65s cubic-bezier(.4, 0, .2, 1),
        background 0.4s ease;
}


/* ONLINE */

.status-bar-fill.online {
    width: 100%;

    background:
        linear-gradient(
            90deg,
            #0fbf91,
            #23e6b5
        );

    box-shadow:
        0 0 10px rgba(25, 211, 162, 0.35);
}


/* OFFLINE */

.status-bar-fill.offline {
    width: 15%;

    background:
        linear-gradient(
            90deg,
            #d93046,
            #ff5364
        );

    box-shadow:
        0 0 10px rgba(255, 77, 94, 0.30);
}


/* PARCIAL */

.status-bar-fill.warning,
.status-bar-fill.parcial {
    width: 65%;

    background:
        linear-gradient(
            90deg,
            #ff9500,
            #ffb020,
            #ffd166
        );

    box-shadow:
        0 0 10px rgba(255, 176, 32, 0.25);
}


/* brilho */

.status-bar-fill.online::after,
.status-bar-fill.warning::after,
.status-bar-fill.parcial::after {
    content: "";

    position: absolute;

    top: 0;
    left: -40%;

    width: 30%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent
        );

    animation:
        statusShine 3s linear infinite;
}


@keyframes statusShine {

    from {
        left: -40%;
    }

    to {
        left: 120%;
    }
}


/* =========================================================
   BARRA OCULTAR HISTÓRICO
========================================================= */

.status-footer-bar {
    width: 100%;

    margin-top: 40px;

    padding: 20px 5px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

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


.historico-btn {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #a1a1aa;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.historico-btn::before {
    content: "←";

    width: 25px;
    height: 25px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    border-radius: 7px;

    color: var(--purple-light);

    background:
        rgba(168, 85, 247, 0.08);

    border:
        1px solid rgba(168, 85, 247, 0.12);
}


.historico-btn:hover {
    color: #ffffff;

    transform: translateX(-3px);
}


.status-credit {
    color: #71717a;

    font-size: 13px;
}


/* =========================================================
   HISTÓRICO PRINCIPAL
========================================================= */

.historico-container {
    position: relative;

    width: calc(100% - 40px);
    max-width: 850px;

    margin: 30px auto 60px;

    padding: 38px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(18, 18, 24, 0.96),
            rgba(8, 8, 12, 0.96)
        );

    border:
        1px solid rgba(255, 255, 255, 0.075);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.50),
        0 0 70px rgba(139, 44, 245, 0.05);

    overflow: hidden;
}


.historico-container::before {
    content: "";

    position: absolute;

    top: -130px;
    left: 50%;

    width: 500px;
    height: 250px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(139, 44, 245, 0.13),
            transparent 70%
        );

    pointer-events: none;
}


.historico-container::after {
    content: "";

    position: absolute;

    top: 0;
    left: 15%;

    width: 70%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(168, 85, 247, 0.75),
            transparent
        );
}


/* =========================================================
   TOPO HISTÓRICO
========================================================= */

.historico-topo {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 45px;

    padding-bottom: 20px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.055);
}


.historico-topo > span {
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.5px;

    color: var(--purple-light);
}


/* botão interno */

.historico-topo button {
    padding: 8px 12px;

    color: #8d93a1;

    background:
        rgba(255, 255, 255, 0.025);

    border:
        1px solid rgba(255, 255, 255, 0.06);

    border-radius: 9px;

    cursor: pointer;

    transition: 0.25s ease;
}


.historico-topo button:hover {
    color: #ffffff;

    background:
        rgba(168, 85, 247, 0.08);

    border-color:
        rgba(168, 85, 247, 0.18);

    transform:
        translateX(-2px);
}


/* =========================================================
   MÊS
========================================================= */

.mes-historico {
    position: relative;

    margin-bottom: 28px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);
}


.mes-historico h2 {
    position: relative;

    display: inline-block;

    margin-bottom: 14px;

    font-size: 18px;
    font-weight: 700;

    color: #f4f4f5;
}


.mes-historico h2::after {
    content: "";

    position: absolute;

    bottom: -15px;
    left: 0;

    width: 45px;
    height: 2px;

    border-radius: 20px;

    background: var(--purple-light);

    box-shadow:
        0 0 10px rgba(168, 85, 247, 0.5);
}


/* =========================================================
   INCIDENTE
========================================================= */

.incidente h3 {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 30px;

    font-size: 15px;
    font-weight: 600;

    color: #dedee3;
}


.incidente-icon {
    width: 12px;
    height: 12px;

    flex: 0 0 12px;

    border-radius: 4px;

    background: var(--purple);

    transform: rotate(45deg);

    box-shadow:
        0 0 8px rgba(139, 44, 245, 0.8),
        0 0 20px rgba(139, 44, 245, 0.25);
}


/* =========================================================
   TIMELINE
========================================================= */

.timeline {
    position: relative;
}


.timeline-item {
    position: relative;

    display: grid;

    grid-template-columns:
        145px 1fr;

    gap: 25px;

    min-height: 115px;

    padding: 8px 0;
}


/* =========================================================
   LADO ESQUERDO
========================================================= */

.timeline-left {
    position: relative;

    display: flex;
    justify-content: center;
}


/* LINHA VERTICAL */

.timeline-item:not(:last-child)
.timeline-left::after {
    content: "";

    position: absolute;

    width: 2px;

    top: 42px;
    bottom: -8px;

    left: 50%;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            to bottom,
            rgba(168, 85, 247, 0.45),
            rgba(255, 255, 255, 0.06)
        );
}


/* =========================================================
   BADGES DO HISTÓRICO
========================================================= */

.status {
    width: 125px;
    height: 38px;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    z-index: 2;

    border-radius: 11px;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    background:
        rgba(255, 255, 255, 0.025);

    font-size: 12px;
    font-weight: 650;
}


/* CONCLUÍDO */

.status.concluido {
    color: #24dfae;

    background:
        rgba(25, 211, 162, 0.09);

    border-color:
        rgba(25, 211, 162, 0.20);
}


/* ATUALIZAÇÃO */

.status.atualizacao {
    color: #60cfff;

    background:
        rgba(56, 189, 248, 0.08);

    border-color:
        rgba(56, 189, 248, 0.18);
}


/* EM CURSO */

.status.andamento {
    color: var(--yellow);

    background:
        rgba(247, 201, 72, 0.08);

    border-color:
        rgba(247, 201, 72, 0.18);

    animation:
        statusPulseHistory
        2s ease-in-out infinite;
}


/* PROGRAMADO */

.status.programado {
    color: #a78bfa;

    background:
        rgba(139, 92, 246, 0.08);

    border-color:
        rgba(139, 92, 246, 0.18);
}


@keyframes statusPulseHistory {

    0%,
    100% {
        box-shadow:
            0 0 0 rgba(247, 201, 72, 0);
    }

    50% {
        box-shadow:
            0 0 20px rgba(247, 201, 72, 0.10);
    }
}


/* =========================================================
   CONTEÚDO DA TIMELINE
========================================================= */

.timeline-content {
    padding:
        5px 20px 20px;

    border-radius: 14px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.timeline-item:hover .timeline-content {
    background:
        rgba(255, 255, 255, 0.02);

    transform:
        translateX(3px);
}


.timeline-content .data {
    display: block;

    margin-bottom: 8px;

    color: #696f7d;

    font-size: 12px;
    font-weight: 500;
}


.timeline-content p {
    max-width: 530px;

    color: #b8bdc8;

    font-size: 13px;

    line-height: 1.7;
}


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

footer {
    padding: 35px 20px;

    text-align: center;

    color: #52525b;

    font-size: 12px;

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


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 900px) {

    .status-card,
    .historico-container {
        width: calc(100% - 40px);
    }

}


@media (max-width: 650px) {

    header {
        padding: 18px 20px;
    }


    .logo {
        font-size: 17px;
    }


    nav a {
        padding: 8px;

        font-size: 12px;
    }


    .status-card,
    .historico-container {
        width: calc(100% - 24px);

        padding: 24px 16px;

        border-radius: 19px;
    }


    .status-card {
        margin-top: 30px;
    }


    .historico-container {
        margin-top: 20px;
    }


    .status-header {
        justify-content: flex-start;
    }


    .status-header h2 {
        font-size: 16px;
    }


    .status-item {
        padding: 17px 15px;
    }


    .status-text {
        padding: 4px 7px;

        font-size: 11px;
    }


    .historico-topo {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }


    .timeline-item {
        grid-template-columns: 1fr;

        gap: 10px;

        min-height: auto;

        margin-bottom: 25px;
    }


    .timeline-left {
        justify-content: flex-start;
    }


    .timeline-item:not(:last-child)
    .timeline-left::after {
        display: none;
    }


    .status {
        width: auto;
        height: 32px;

        padding: 0 14px;
    }


    .timeline-content {
        padding: 10px 5px 15px;
    }


    .status-footer-bar {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }

}


/* =========================================================
   DISCORD BOT - GRUPO EXPANSÍVEL
========================================================= */

.status-group {
    position: relative;
}


/* CABEÇALHO CLICÁVEL */

.status-group-header {
    width: 100%;
    padding: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: transparent;
    border: none;

    color: #ffffff;

    cursor: pointer;

    margin-bottom: 14px;

    font-family: inherit;
}


/* NOME + SETA */

.status-group-header .status-name {
    display: flex;
    align-items: center;

    gap: 8px;
}


/* SETA */

.status-arrow {
    font-size: 12px;

    color: #d4d4d8;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


/* GIRA A SETA QUANDO ABERTO */

.status-group.open .status-arrow {
    transform: rotate(180deg);
}


/* HOVER */

.status-group-header:hover .status-arrow {
    color: #ffffff;
}


/* =========================================================
   SUBLISTA DOS BOTS
========================================================= */

.status-sublist {
    display: none;

    margin-top: 20px;
    padding-top: 20px;

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


/* QUANDO ABERTO */

.status-group.open .status-sublist {
    display: flex;
    flex-direction: column;

    gap: 18px;
}


/* =========================================================
   CADA BOT
========================================================= */

.status-subitem {
    padding: 14px 16px;

    background:
        rgba(255, 255, 255, 0.025);

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 12px;
}


/* CABEÇALHO DE CADA BOT */

.status-subitem-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;

    margin-bottom: 10px;
}


.status-subitem-header > span:first-child {
    color: #e4e4e7;

    font-size: 14px;
    font-weight: 500;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .status-group-header {
        gap: 12px;
    }

    .status-subitem {
        padding: 13px;
    }

    .status-subitem-header {
        gap: 8px;
    }

    .status-subitem-header > span:first-child {
        font-size: 12px;
    }
}


/* brilho lateral do card */

.status-item {
    position: relative;
}

.status-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 25%;

    width: 2px;
    height: 50%;

    border-radius: 20px;

    background:
        linear-gradient(
            transparent,
            rgba(168, 85, 247, 0.7),
            transparent
        );

    opacity: 0;

    transition: opacity 0.3s ease;
}

.status-item:hover::before {
    opacity: 1;
}


/* hover igual ao principal */

.status-item:hover {
    transform: translateY(-2px);

    background:
        rgba(255, 255, 255, 0.04);

    border-color:
        rgba(168, 85, 247, 0.20);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.20);
}


/* instável */

.status-text.instavel {
    color: var(--orange);

    background:
        rgba(255, 122, 50, 0.07);

    border:
        1px solid rgba(255, 122, 50, 0.14);
}

.status-bar-fill.instavel {
    width: 40%;

    background:
        linear-gradient(
            90deg,
            #ff453a,
            #ff6b35,
            #ff9500
        );

    box-shadow:
        0 0 10px rgba(255, 107, 53, 0.25);
}



#progress-bar{
    position:fixed;
    top:0;
    left:0;
    height:4px;
    width:0;
    background:#7b14c4;
    z-index:9999;
}




/* =========================================================
   TÍTULO DA PÁGINA DE STATUS
========================================================= */

#progress-bar {
    position: fixed;

    top: 0;
    left: 0;

    width: 0;
    height: 4px;

    background: #7b14c4;

    z-index: 9999;

    box-shadow:
        0 0 10px rgba(123, 20, 196, 0.8);
}


/* =========================================
   TÍTULO HISTÓRICO
========================================= */

.hero-status {
    position: relative;

    width: calc(100% - 40px);
    max-width: 850px;

    height: 120px;

    margin: 35px auto 20px auto;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    overflow: visible;
}

.hero-status h1 {
    position: relative;
    z-index: 2;

    width: 100%;

    margin: 0;

    text-align: center;

    color: #ffffff;

    font-size: 42px;
    font-weight: 900;

    letter-spacing: -1px;

    text-shadow:
        0 0 10px rgba(123, 20, 196, 0.8),
        0 0 20px rgba(123, 20, 196, 0.5);
}


/* GLOW ATRÁS DO TÍTULO */

.hero-status .glow {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 600px;
    height: 150px;

    background: radial-gradient(
        ellipse,
        rgba(123, 20, 196, 0.16),
        transparent 70%
    );

    pointer-events: none;
}

@media (max-width: 600px) {

    .hero-status {
        min-height: 210px;
    }

    .hero-status h1 {
        font-size: 38px;

        padding: 0 20px;

        letter-spacing: -1px;
    }

    .hero-status .glow {
        width: 350px;
        height: 180px;
    }
}


/* =========================
   RESPONSIVO MOBILE
========================= */

@media (max-width: 600px) {

    header {
        padding: 18px 20px;
    }

    .logo {
        font-size: 17px;
    }

    nav a {
        padding: 8px 9px;
        font-size: 12px;
    }

    .status-card {
        width: calc(100% - 24px);

        margin-top: 30px;

        padding: 25px 16px;

        border-radius: 19px;
    }

    .status-header {
        justify-content: flex-start;

        margin-bottom: 28px;
    }

    .status-header h2 {
        font-size: 16px;
    }

    .status-icon {
        width: 36px;
        height: 36px;

        min-width: 36px;

        border-radius: 10px;
    }

    .status-item {
        padding: 17px 15px;
    }

    .status-name {
        font-size: 14px;
    }

    .status-text {
        padding: 4px 7px;

        font-size: 11px;
    }

    .status-subitem-header {
        align-items: flex-start;
    }

    .status-footer-bar {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }

    /* No celular o botão deixa de ficar absoluto */
    .erros-btn {
        position: static;

        transform: none;
    }

    .erros-btn:hover {
        transform: translateX(3px);
    }

}


/* =========================================
   LOG DE ERRO DOS BOTS
========================================= */

.bot-error {
    margin-top: 12px;
}

.bot-error:empty {
    display: none;
}

.bot-error:not(:empty) {
    padding: 12px 14px;

    border-radius: 10px;

    background:
        rgba(255, 77, 94, 0.05);

    border:
        1px solid rgba(255, 77, 94, 0.12);
}

.bot-error-title {
    color: #ff6b76;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 5px;
}

.bot-error-message {
    color: #c9cbd1;

    font-size: 12px;

    line-height: 1.5;
}

.bot-error-date {
    color: #6f7480;

    font-size: 11px;

    margin-top: 6px;
}


/* =========================================
   BOTÃO VISUALIZAR ERROS
========================================= */

.erros-btn {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #a1a1aa;

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


/* ÍCONE DE ERRO */

.erros-btn::before {
    content: "!";

    width: 25px;
    height: 25px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    border-radius: 7px;

    color: #ff4d5e;

    background:
        rgba(255, 77, 94, 0.08);

    border:
        1px solid rgba(255, 77, 94, 0.14);

    font-size: 13px;
    font-weight: 800;
}


/* HOVER */

.erros-btn:hover {
    color: #ffffff;

    transform:
        translateX(-50%)
        translateY(-2px);
}