/* INPUT BUSCA */
#searchInput {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.12);
    font-size: 16px;
    outline: none;
    margin-top: 10px;
    transition: 0.2s;
    background: #fff;
}

#searchInput::placeholder {
    color: rgba(0,0,0,0.45);
}

#searchInput:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

/* GRID REVIEWS */
.grid-reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px;
}

/* CARD REVIEW */
.review-card {
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 18px 14px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    transition: 0.25s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    min-height: 140px;
    position: relative;
    overflow: hidden;
}

/* Linha decorativa no topo */
.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #2563eb, #22c55e);
    opacity: 0;
    transition: 0.25s;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 12px 25px rgba(0,0,0,0.10);
}

/* IMAGEM (caso use) */
.review-card img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 10px;
}

/* TITULO */
.review-card h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    color: #111827;
}

/* TEXTO */
.review-card p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.4;
}

/* LINK BOTÃO */
.review-card a {
    display: inline-block;
    margin-top: 6px;
    padding: 10px 14px;
    border-radius: 14px;
    background: #111827;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s;
}

.review-card a:hover {
    background: #2563eb;
}

/* CATEGORIAS */
.categorias {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.cat-btn {
    background: #111827;
    color: white;
    padding: 10px 14px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: 0.2s;
}

.cat-btn:hover {
    background: #2563eb;
}

/* RESPONSIVO */
@media (min-width: 900px) {
    .grid-reviews {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 650px) {
    .grid-reviews {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-height: auto;
    }
}