﻿:root {
    --danger: #ff4d4f;
    --warn: #f6c23e;
    --ok: #1fbf75;
    --shadow: 0 10px 30px rgba(0,0,0,.25);
    --radius: 16px;
}

/* -------- Base mínima -------- */
* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    color: var(--ink);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px
}

/* -------- Section “no results” -------- */
.no-results {
    background: linear-gradient(180deg, #0c1113 0%, #0b0f10 100%);
    border: 1px solid #1b2326;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: clip;
}

.no-results__wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
    align-items: center;
}

@media (max-width: 920px) {
    .no-results__wrap {
        grid-template-columns: 1fr;
        gap: 14px
    }
}

/* Imagem à esquerda */
.no-results__art {
    margin: 0;
    height: 100%;
    background: radial-gradient(600px 200px at 30% 20%, rgba(0,237,59,.10), transparent 60%), linear-gradient(180deg,#0c1417 0%, #0f1416 100%);
    border-right: 1px solid #1b2326;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

@media (max-width: 920px) {
    .no-results__art {
        border-right: none;
        border-bottom: 1px solid #1b2326
    }
}

.no-results__art svg {
    max-width: 380px;
    width: 80%;
    height: auto;
    filter: drop-shadow(0 8px 22px rgba(0,0,0,.25));
}

/* Texto à direita */
.no-results__copy {
    padding: clamp(16px, 3vw, 28px)
}

.no-results__eyebrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
    border: 1px solid #1b2326;
    background: #0f1416;
    border-radius: 999px;
    padding: 6px 10px;
    margin-bottom: 8px;
}

.no-results__title {
    margin: 6px 0 8px;
    font-size: clamp(20px, 3.8vw, 28px);
    line-height: 1.2
}

.no-results__desc {
    margin: 0;
    color: var(--muted)
}

.no-results__hints {
    margin: 14px 0 0 18px;
    color: #a6b3ae
}

    .no-results__hints li {
        margin: 4px 0
    }

/* Ações */
.no-results__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px
}

.btn {
    appearance: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 800;
    background: var(--brand);
    color: #0b0f10;
}

    .btn.secondary {
        background: #121a1d;
        color: var(--ink);
        border: 1px solid #1b2326
    }

    .btn:focus {
        outline: 2px solid #86ffb2;
        outline-offset: 2px
    }

    .btn:hover {
        filter: brightness(1.05)
    }

    .btn:active {
        transform: translateY(1px)
    }

/* Animação de entrada suave */
.reveal {
    opacity: 0;
    transform: translateY(6px);
    transition: .25s ease
}

    .reveal.show {
        opacity: 1;
        transform: none
    }















.card-n-curso {
    background: rgb(18, 24, 26);
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    cursor: pointer;
    transform: translateY(0px) scale(1);
    
}

    .card-n-curso:hover {
        box-shadow: rgba(0, 237, 59, 0.5) 0px 8px 20px;
    }

    .card-n-curso img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .card-n-curso .card-n-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        flex: 1 1 0%;
    }


        .card-n-curso .card-n-content h2 {
            margin: 0px;
            color: rgb(226, 231, 227);
            font-size: 1.2rem;
        }

        .card-n-curso .card-n-content p {
            margin: 0px;
            color: rgb(199, 209, 204);
            font-size: 0.95rem;
            flex: 1 1 0%;
        }


    .card-n-curso .card-n-avaliacoes {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .card-n-curso .card-n-avaliacoes .card-n-stars span {
            color: #c7d1cc;
            font-size: 0.85rem;
        }


        .card-n-curso .card-n-avaliacoes span {
            color: rgb(199, 209, 204);
            font-size: 0.85rem;
        }


    .card-n-curso .card-n-valores {
        display: flex;
        align-items: baseline;
        gap: 10px;
    }

        .card-n-curso .card-n-valores .old-price {
            text-decoration: line-through;
            color: rgb(199, 209, 204);
            font-size: 0.9rem;
        }
        .card-n-curso .card-n-valores .novo-preco {
            color: rgb(0, 237, 59);
            font-weight: 700;
            font-size: 1.1rem;
        }



    .card-n-curso .btn-matricula {
        padding: 12px 20px;
        border: none;
        border-radius: 12px;
        background: rgb(0, 237, 59);
        color: rgb(0, 0, 0);
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
        transform: translateY(0px);
        box-shadow: none;
    }


























