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

html, body {
    background: #000 !important;
    color: #fff;
}

/* FUNDO FORÇADO */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: url('/assets/bg.jpg') no-repeat center center;
    background-size: cover;

    filter: blur(8px) brightness(0.3);
    z-index: -1;
}

/* LOGO */
.logo {
    text-align: center;
    margin-top: 20px;
}

.logo img {
    width: 150px;
}

/* CONTAINER */
.container {
    max-width: 420px;
    margin: 20px auto;
    background: rgba(0,0,0,0.85);
    padding: 20px;
    border-radius: 15px;
}

/* TITULO */
h2 {
    text-align: center;
    color: red;
    margin-bottom: 15px;
}

/* INPUT */
input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
}

/* CARDS */
.card {
    display: flex;
    align-items: center;
    background: rgba(20,20,20,0.95);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.card img {
    width: 60px;
    height: 80px;
    border-radius: 5px;
    margin-right: 10px;
    object-fit: cover;
}

.info {
    flex: 1;
}

.descricao {
    font-size: 12px;
    color: #ccc;
}

.btn {
    background: red;
    padding: 6px 10px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
}

/* TOPO */
.cards-topo {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cards-topo div {
    background: #111;
    padding: 10px;
    border-radius: 10px;
    font-size: 12px;
    text-align: center;
    width: 32%;
}

/* INPUT */
input, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: #111;
    color: #fff;
    margin-top: 8px;
}

/* RESULTADOS */
#resultado div {
    display: flex;
    align-items: center;
    background: #111;
    padding: 8px;
    margin-top: 5px;
    border-radius: 8px;
}

#resultado img {
    width: 40px;
    margin-right: 10px;
}

/* BOTÕES */
button {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border-radius: 10px;
    border: none;
    background: red;
    color: #fff;
}

/* FUNDO GARANTIDO */
body {
    background: #000 !important;
}

/* CAMADA ESCURA */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url('/assets/bg.jpg') no-repeat center/cover;
    filter: blur(8px) brightness(0.3);
    z-index: -1;
}

/* FILTROS */
.filtros {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 15px;
}

.filtros button {
    background: #111;
    font-size: 12px;
}

.filtros button:hover {
    background: red;
}

/* LISTA */
.lista {
    display: none;
}

/* BOTÃO CLICK */
button:active {
    transform: scale(0.95);
}

/* ANIMAÇÃO PISCAR */
.btn-click {
    animation: piscar 0.4s ease;
}

@keyframes piscar {
    0% { background: red; }
    50% { background: #00c853; }
    100% { background: red; }
}

/* SUCESSO */
#sucesso {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #00c853;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: bold;
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; top: 0; }
    to { opacity: 1; top: 20px; }
}