/* ===== GERAL ===== */
/* body {
    margin: 0;
    background: #0b0b0d;
    font-family: "Poppins", sans-serif;
    color: #fff;
} */
/* ===== GERAL (Exemplo de gradiente radial sutil) ===== */
body {
    margin: 0;
    /* Substitui a cor sólida */
    background: radial-gradient(circle at center, #111111 0%, #0b0b0d 100%);
    font-family: "Poppins", sans-serif;
    color: #fff;
    min-height: 100vh;
    /* Garante que o gradiente pegue a tela toda */
}

.hidden {
    display: none !important;
}

h1,
h2,
h3 {
    font-weight: 600;
    margin: 0;
}

/* ===== HEADER ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: #111;
    border-bottom: 1px solid #333;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    /* ajuste fino: pode aumentar para 55 se quiser grande */
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, 0.1));
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}


/* ===== CONTAINER ===== */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.page-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

/* ===================================================================== */
/* ============================ PRODUTOS ================================ */
/* ===================================================================== */

/* GRID */
.product-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    padding: 20px 0;
}

/* CARD */
/* .product-card {
    background: #161616;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    border: 1px solid #333;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
} */

/* CARD - MAIS PREMIUM */
.product-card {
    background: #161616;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    /* Remove a borda sólida */
    border: none;
    /* Adiciona uma sombra mais suave e profunda */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-5px);
    /* Sombra mais intensa no hover */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
}

/* IMAGEM */
.product-image-wrap {
    width: 100%;
    height: 220px;
    /* reduzido para caber melhor */
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 12px;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
}


.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXTOS */
.product-name {
    font-size: 18px;
    font-weight: 600;
    margin: 6px 0 4px;
}

.product-category {
    font-size: 13px;
    opacity: .6;
    margin-bottom: 6px;
}

.product-price {
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0;
    color: #ff6b00;
}

/* BOTÃO */
.product-btn {
    margin-top: 12px;
    width: 100%;
    display: block;
    padding: 12px;
    background: #ff6b00;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: opacity .25s;
}

.product-btn:hover {
    opacity: .85;
}

/* ===================================================================== */
/* ============================ FORMULÁRIOS ============================= */
/* ===================================================================== */

.card {
    background: #111;
    padding: 20px;
    border-radius: 14px;
    margin-top: 25px;
    border: 1px solid #333;
}

/* input {
    width: 100%;
    padding: 10px;
    margin: 6px 0 12px;
    border-radius: 8px;
    border: 1px solid #555;
    background: #222;
    color: #fff;
    font-size: 15px;
} */
input {
    width: 100%;
    padding: 10px;
    margin: 6px 0 12px;
    border-radius: 8px;
    border: 1px solid #555;
    background: #222;
    color: #fff;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    /* Adicionar transição */
}

/* Efeito de foco profissional */
input:focus {
    outline: none;
    border-color: #ff6b00;
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.3);
    /* Um brilho suave */
}

/* ===================================================================== */
/* ============================== BOTÕES =============================== */
/* ===================================================================== */

button,
.btn-primary,
.btn-secondary {
    cursor: pointer;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: 0.2s;
    padding: 10px 5px;
}

.btn-primary {
    background: #ff6b00;
    color: #fff;
}

.btn-primary:hover {
    opacity: .85;
}

.btn-secondary {
    background: #444;
    color: #fff;
}

.btn-secondary:hover {
    background: #555;
}

/* ===================================================================== */
/* ============================== FOOTER =============================== */
/* ===================================================================== */

footer {
    margin-top: 40px;
    padding: 25px;
    text-align: center;
    opacity: .6;
    border-top: 1px solid #222;
}

/* ===================================================================== */
/* =============================== TOAST =============================== */
/* ===================================================================== */

#toast {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #ff6b00;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    opacity: 0;
    transition: .3s;
    pointer-events: none;
    font-weight: 600;
}

#toast.show {
    opacity: 1;
}