/* ============================================================
   KRONOS AI — MUDE AS CORES AQUI
   Todas as cores do site estão nestas variáveis.
   Não precisa procurar em outro lugar.
============================================================ */
:root {
    /* COR PRINCIPAL (botões, borda cards, navbar, pulse) */
    --primary: #00ff41;
    --primary-opaque: rgba(0, 255, 65, 0.20);
    --primary-opaque-strong: rgba(0, 255, 65, 0.15);
    /* CIANO — preços, dias restantes, info */
    --accent-cyan: #00e5ff;
    --accent-cyan-opaque: rgba(0, 229, 255, 0.12);
    /* LARANJA — alertas, manutenção, estoque */
    --accent-orange: #ff6b35;
    --accent-orange-opaque: rgba(255, 107, 53, 0.12);
    /* ROXO — chave de licença, badge premium */
    --accent-purple: #b44fff;
    --accent-purple-opaque: rgba(180, 79, 255, 0.12);
    /* OFFLINE */
    --cor-offline: #ff4444;
}

/* ============================================================
   DAQUI PRA BAIXO NÃO PRECISA MEXER
============================================================ */

.custom-center-grid {
    display: grid;
    height: inherit;
    place-items: center;
}

.custom-btn {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    height: 60px;
    background: var(--primary);
    border: none;
    border-radius: 0.75rem;
    color: #000;
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: 250ms ease-in-out;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .custom-btn:hover,
    .custom-btn:focus {
        background-color: #00cc33;
        transform: scale(1.05);
        color: #afffca;
    }

    .custom-btn::after {
        content: "";
        position: absolute;
        z-index: -1;
        inset: 0;
        opacity: 0.4;
        border-radius: inherit;
        box-shadow: 0 0 0.6em 0.3em var(--primary);
        transition: 250ms ease-in-out;
    }

    .custom-btn:hover::after,
    .custom-btn:focus::after {
        opacity: 0.6;
    }

.visual-feature-text {
    font-size: 0.9rem;
    color: #cccccc;
    transition: color 200ms ease-in-out;
    margin: 0;
}

    .visual-feature-text:hover {
        color: #eeeeee;
    }

.feature-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #bbbbbb;
    transition: color 200ms ease-in-out;
    line-height: 1.2;
    margin-bottom: 4px;
}

    .feature-item:hover {
        color: #dddddd;
    }

    .feature-item .caret {
        font-size: 0.75rem;
        color: var(--primary);
        transition: color 200ms ease-in-out;
    }

    .feature-item:hover .caret {
        color: #afffca;
    }

    .feature-item p {
        margin: 0;
    }

#produtos-mych {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
}

.container {
    margin-bottom: 0;
    padding-bottom: 0;
}

.row {
    margin-bottom: 0 !important;
}

#gameplay-section {
    margin-top: 5rem !important;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300ff41'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
    width: 4vw;
    height: 4vw;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300ff41'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    width: 4vw;
    height: 4vw;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary);
}

.product-card-status {
    color: var(--primary) !important;
    font-size: 12px;
    font-weight: 600;
}

    .product-card-status.manutencao {
        color: var(--accent-orange) !important;
    }

    .product-card-status.offline {
        color: var(--cor-offline) !important;
    }

.product-card-content span:last-child,
.price-tag,
.price-highlight {
    color: var(--accent-cyan);
    font-weight: 600;
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(0, 255, 65, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0);
    }
}

#visitor-counter {
    background: var(--primary) !important;
    color: #000 !important;
}

#back-to-top {
    background: var(--primary) !important;
}

.progress-path {
    stroke: var(--primary) !important;
}

.estoque-alerta {
    color: var(--accent-orange);
    font-size: 12px;
    font-weight: 500;
}

.dias-restantes,
#keyDias,
#keyExpira {
    color: var(--accent-cyan) !important;
}

.key-code,
#keyCode,
.search-key,
.licenca-item-key {
    color: var(--accent-purple) !important;
    text-shadow: 0 0 20px var(--accent-purple-opaque);
}

.features-grid {
    display: grid;
    grid-template-columns: minmax(20px, 1fr) repeat(auto-fill, minmax(200px, 1fr)) minmax(20px, 1fr);
    gap: 20px;
}

.ml5 {
    position: relative;
    font-weight: 300;
    font-size: 12em;
    color: #1b1212;
    display: inline-block;
    line-height: 1em;
}

    .ml5 .text-wrapper {
        position: relative;
        display: inline-block;
        padding-top: 0;
        padding-right: 0.05em;
        padding-bottom: 0;
        line-height: 1em;
    }

    .ml5 .line {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 3px;
        width: 100%;
        background-color: var(--primary);
        transform-origin: 0.5 0;
        visibility: hidden;
    }

    .ml5 .ampersand {
        font-family: Baskerville, serif;
        font-style: italic;
        font-weight: 400;
        width: 1em;
        margin-right: -0.1em;
        margin-left: -0.1em;
    }

    .ml5 .letters {
        display: inline-block;
        opacity: 0;
    }
