/* Variáveis para o Tema Claro (Padrão) */
:root {
    --bg-body: #f7f7f7;
    --bg-card: #ffffff;
    --bg-input: #ffffff;
    --bg-output: #f8f9fa;
    --text-main: #3c4043;
    --text-secondary: #5f6368;
    --border-color: #dadce0;
    --accent-color: #1a73e8;
    --nav-logo: #a2b1ce;
    --nav-bg: #ffffff;
    --linear1: #3f6587;
    --linear2: #91bad5;
    --card-bt: #1a73e8;
    --links: #80c5fa;
    --varxil-accent: #1e4b73;
    --varxil-hover: #156ada;
    --button-text: #555f8d;
    --sidebar-bg: rgba(255, 255, 255, 0.45);
    --sidebar-border: rgba(255, 255, 255, 0.3);
}

/* Variáveis para o Tema Escuro (Ativado via Classe) */
body.dark-mode {
    --bg-body: #202124;
    --bg-card: #35393c;
    --bg-input: #2d2e31;
    --bg-output: #1f2023;
    --text-main: #e8eaed;
    --text-secondary: #9aa0a6;
    --border-color: #3c4043;
    --nav-logo: #dbedfb;
    --nav-bg: #2d2e31;
    --accent-color: #8ab4f8;
    --linear1: #7298c7;
    --linear2: #b5bedd;
    --card-bt: #b5bedd;
    --links: #ffeb33;
    --varxil-accent: #5588b6;
    --varxil-hover: #156ada;
    --sidebar-bg: rgba(53, 57, 60, 0.45);
    --sidebar-border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Roboto Condensed", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 0.2px;
}

.main-content {
    margin-top: 20px; /* Espaço extra opcional entre a nav e o banner */
}

/* Navbar e Header */
nav {
    position: fixed; /* Fixa o menu no topo */
    top: 0;
    left: 0;
    width: 100%; /* Garante que ocupe a tela toda lateralmente */
    z-index: 1000; /* Garante que fique acima dos cards e da linha do tempo */

    /* Mantendo seus estilos anteriores */
    background-color: var(--nav-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
    height: 70px; /* Definir uma altura fixa facilita o próximo passo */
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--nav-logo);
    text-decoration: none;
}

header.hero {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--linear1) 10%, var(--linear2) 100%);
    color: white;
}

header.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

header.hero h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

header.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Botões Genéricos */
.btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 24px;
    font-weight: bold;
    transition: opacity 0.2s;
    cursor: pointer;
    border: none;
}

.btn:hover {
    opacity: 0.85;
}

.theme-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.theme-btn:hover {
    background-color: var(--border-color);
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: var(--nav-bg);
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

footer.update {
    font-size: 0.8rem;
}

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding: 0 1.5rem;
}

.copy-btn {
    background-color: var(--varxil-accent);
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.copy-btn:hover {
    opacity: 0.8;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background-color: var(--sidebar-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-right: 1px solid var(--sidebar-border);
    z-index: 1100; /* Maior que os 1000 da nav */
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-links {
    list-style: none;
    padding: 1rem 0;
}

.sidebar-links li a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-main);
    text-decoration: none;
    transition: background 0.2s;
}

.sidebar-links li a:hover {
    background-color: var(--bg-body);
}

.sidebar-links hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 1rem 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1050; /* Entre a nav e o sidebar */
}

.sidebar-overlay.active {
    display: block;
}

/* Estilos do Submenu */
.submenu {
    list-style: none;
    background-color: var(--bg-body);
    display: none;
    overflow: hidden;
}

.submenu.show {
    display: block;
}

.submenu li a {
    padding-left: 3rem !important;
    font-size: 0.95rem;
}

.arrow {
    font-size: 0.7rem;
    float: right;
    transition: transform 0.3s ease;
}

.has-submenu.open .arrow {
    transform: rotate(180deg);
}

.submenu-trigger {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.sidebar-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
    object-fit: contain;
}

/* --- Seção de Crônicas (Estilo Livro) --- */
.history-container {
    flex: 1;
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.chronicle {
    background: var(--bg-card);
    padding: 4rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    position: relative;
}

.chronicle-header {
    text-align: center;
    margin-bottom: 4rem;
}

.chronicle-meta {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--varxil-accent);
    font-weight: bold;
}

.chronicle-header h2 {
    font-family: "Roboto Condensed", serif;
    font-size: 2.5rem;
    margin: 1rem 0;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--varxil-accent);
    margin: 0 auto;
}

.chronicle-entry {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.chronicle-entry.reverse {
    flex-direction: row-reverse;
}

.chronicle-text {
    flex: 1;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-main);
    text-align: justify;
}

.chronicle-text h3 {
    margin-bottom: 1rem;
    font-family: "Roboto Condensed", serif;
}

.drop-cap {
    float: left;
    font-size: 4rem;
    line-height: 0.8;
    padding-top: 4px;
    padding-right: 8px;
    font-weight: bold;
    color: var(--varxil-accent);
    font-family: "Roboto Condensed", serif;
}

.chronicle-figure {
    flex: 1;
    text-align: center;
}

.img-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    filter: sepia(0.2);
    transition: filter 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.img-placeholder img:hover {
    filter: sepia(0);
}

figcaption {
    margin-top: 10px;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-secondary);
}

/* --- Linha do Tempo --- */
.timeline-banner {
    background: linear-gradient(135deg, var(--linear1) 0%, var(--linear2) 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.timeline-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.timeline-banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.timeline-labels {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 30px auto;
    padding: 12px 24px;
    position: static;
    top: 70px;
    z-index: 10;
    background: rgba(247, 247, 247, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition:
        background-color 0.3s,
        border-color 0.3s;
}

body.dark-mode .timeline-labels {
    background: rgba(32, 33, 36, 0.9);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.label-side {
    display: flex;
    align-items: center;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.label-side.earth {
    justify-content: flex-start;
    color: var(--varxil-accent);
    gap: 12px;
}

.label-side.space {
    justify-content: flex-end;
    color: var(--card-bt);
    gap: 12px;
}

.label-side small {
    display: block;
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.label-separator {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 2px solid var(--varxil-accent);
    color: var(--varxil-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

body.dark-mode .label-separator {
    border-color: #80c5fa;
    color: #80c5fa;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-container::after {
    content: "";
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--varxil-accent), var(--card-bt));
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 2px;
}

.timeline-row {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.timeline-col {
    position: relative;
}

.timeline-col.left {
    grid-column: 1;
}

.timeline-col.right {
    grid-column: 3;
}

.timeline-center-node {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    background-color: var(--bg-body);
    border: 4px solid var(--varxil-accent);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 4px var(--bg-card);
    transition:
        transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background-color 0.3s;
}

.timeline-row:hover .timeline-dot {
    transform: scale(1.3);
    background-color: var(--varxil-accent);
}

.timeline-connector {
    position: absolute;
    height: 2px;
    background: var(--border-color); /* Cor padrão do traço */
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.left-connector {
    right: 50%;
    width: calc(100% + 20px);
    background: var(--varxil-accent); /* Cor específica para o lado da Terra */
    opacity: 0.6;
}

.right-connector {
    left: 50%;
    width: calc(100% + 20px);
    background: var(--card-bt); /* Cor específica para o lado do Espaço */
    opacity: 0.6;
}

.timeline-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow:
        0 10px 30px -10px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

body.dark-mode .timeline-card {
    box-shadow:
        0 10px 30px -10px rgba(0, 0, 0, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.timeline-col.left .timeline-card {
    border-right: 4px solid var(--varxil-accent);
}

.timeline-col.right .timeline-card {
    border-left: 4px solid var(--card-bt);
}

.timeline-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px -15px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border-color: var(--varxil-accent);
}

body.dark-mode .timeline-card:hover {
    box-shadow:
        0 20px 40px -15px rgba(0, 0, 0, 0.65),
        0 2px 8px rgba(0, 0, 0, 0.3);
}

.timeline-card-date {
    display: inline-block;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.timeline-col.left .timeline-card-date {
    background-color: rgba(30, 75, 115, 0.1);
    color: var(--varxil-accent);
}

.timeline-col.right .timeline-card-date {
    background-color: rgba(26, 115, 232, 0.1);
    color: var(--card-bt);
}

body.dark-mode .timeline-col.left .timeline-card-date {
    background-color: rgba(30, 75, 115, 0.25);
    color: #80c5fa;
}

body.dark-mode .timeline-col.right .timeline-card-date {
    background-color: rgba(26, 115, 232, 0.25);
    color: #80c5fa;
}

.timeline-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--text-main);
    letter-spacing: -0.3px;
}

.timeline-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.timeline-row.skip-row {
    grid-template-columns: 1fr;
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.timeline-row.skip-row .timeline-center-node {
    display: none;
}

.timeline-row.skip-row .timeline-card {
    width: 100%;
    max-width: 600px;
    text-align: center;
    background: linear-gradient(
        135deg,
        var(--linear1) 0%,
        var(--linear2) 100%
    ) !important; /* Fundo igual aos outros cards */
    border: 1px solid var(--border-color);
    color: #ffffff !important;
    border-top: 4px solid var(--varxil-accent); /* Borda no topo para dar destaque central */
}

.timeline-row.skip-row .timeline-card h3,
.timeline-row.skip-row .timeline-card p,
.timeline-row.skip-row .timeline-card .event-month-tag {
    color: #ffffff !important;
}

/* Resetando formatações exclusivas antigas do skip para casar com a nova estrutura de dados */
.timeline-row.skip-row .timeline-card h3 {
    color: var(--text-main);
    font-size: 1.35rem;
    margin: 0 0 10px 0;
    text-transform: none;
    letter-spacing: -0.3px;
}

.timeline-row.skip-row .timeline-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-row.skip-row .card-actions {
    justify-content: center; /* Centraliza os botões de admin */
    margin-top: 15px;
}

/* Modais e Admin UI */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    color: var(--text-main);
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    border: 1px solid var(--border-color);
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: var(--varxil-accent);
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    background: var(--bg-input);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
}

.admin-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-save {
    background-color: #2e7d32;
}

.btn-cancel {
    background-color: #d32f2f;
}

.card-actions {
    margin-top: 10px;
    display: none;
}

.admin-logged-in .card-actions {
    display: flex;
    gap: 10px;
}

.btn-edit {
    background-color: var(--varxil-accent);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
}

.btn-delete {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
}

.admin-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--varxil-accent);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.2s;
}

.admin-fab:hover {
    transform: scale(1.1);
}

.timeline-event-entry {
    padding: 15px 0;
    position: relative;
}

.timeline-event-entry:not(:last-child) {
    border-bottom: 1px dashed var(--border-color);
}

.event-month-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 4px;
}

.timeline-event-entry h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.admin-btn {
    background-color: var(--varxil-accent);
    color: white;
    border: 1px solid var(--sidebar-border);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    background-color: var(--varxil-accent);
    box-shadow: 0 0 10px rgba(26, 115, 232, 0.4);
}

.nav-actions {
    position: fixed;
    top: 1rem;
    right: 1rem;
}

@media (max-width: 768px) {
    .chronicle {
        padding: 2rem;
    }
    .chronicle-entry,
    .chronicle-entry.reverse {
        flex-direction: column;
    }
    .chronicle-header h2 {
        font-size: 1.8rem;
    }
    .timeline-banner h1 {
        font-size: 2rem;
    }
    /*.timeline-labels {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
        padding: 15px;
    }
    .label-side.earth,
    .label-side.space {
        justify-content: center;
    }
    .label-separator {
        display: none;
    }
    .timeline-container::after {
        left: 20px;
        transform: none;
    }
    .timeline-row {
        display: block;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    .timeline-row.skip-row {
        padding: 0 10px;
        margin: 30px 0;
    }
    .timeline-col.left,
    .timeline-col.right {
        width: 100%;
        padding: 0;
    }
    .timeline-center-node {
        display: none !important;
    }
    .timeline-connector {
        left: 20px !important;
        right: auto !important;
        width: calc(100% - 20px) !important;
    }
    .timeline-col.left .timeline-card {
        border-right: none;
        border-left: 4px solid var(--varxil-accent);
    }
    .timeline-col.right .timeline-card {
        border-left: 4px solid var(--card-bt);
    }
    
    .timeline-dot {
        margin-top: 20px;
        position: relative;
        z-index: 2;
    }
    .timeline-card {
        margin: 0 0 15px 0 !important;
        border-right: 1px solid var(--border-color) !important;
        border-left: 4px solid var(--varxil-accent) !important; 
    }
    .timeline-container::before {
        content: "";
        position: absolute;
        left: 25px; 
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--border-color);
        opacity: 0.3;
        z-index: 1;
    } */
}

/* Efeito de Hover nos Cards (Opcional, para desktop e mobile-touch) */
.timeline-card {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.timeline-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

nav {
    background-color: var(--nav-bg);
    transition: background 0.3s;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Adicione isto: */
    position: relative;
    min-height: 70px; /* Garante uma altura consistente para o alinhamento */
}

.nav-actions {
    /* Mágica para centralização absoluta */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    /* Garante que o container não ocupe espaço físico na linha do flex */
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.nav-actions button {
    /* Reativa o clique, já que o container pai está com pointer-events: none */
    pointer-events: auto;
    white-space: nowrap;
}

/* --- Botão Voltar ao Topo --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--varxil-accent);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-5px);
    background-color: var(--varxil-hover);
}