/* --------------------------------------------------------
   ESTILO GERAL — Rosa bebê elegante LEV
--------------------------------------------------------- */
body {
    margin: 0;
    padding: 0;
    background: #ffeef7; /* rosa bebê suave */
    font-family: "Poppins", Arial, sans-serif;
    color: #444;
}

/* --------------------------------------------------------
   TOPO — estilo SublimeMais
--------------------------------------------------------- */
.topo {
    background: #ffffff;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 55px;
    width: auto;
}

/* MENU */
.menu {
    display: flex;
    gap: 18px;
}

.menu a {
    text-decoration: none;
    font-size: 14px;
    color: #555;
    font-weight: 600;
}

.menu a:hover {
    color: #ff4f96;
}

.menu .ativo {
    color: #ff4f96;
}

/* --------------------------------------------------------
   CATEGORIAS — estilo bolinhas fofas
--------------------------------------------------------- */
.categorias {
    padding: 15px;
    display: flex;
    overflow-x: auto;
    gap: 15px;
}

.cat-bolinha {
    min-width: 90px;
    background: #ffffff;
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: 0.2s;
}

.cat-bolinha img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.cat-bolinha span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
}

.cat-bolinha:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cat-bolinha.ativo {
    border: 2px solid #ff4f96;
}

/* --------------------------------------------------------
   GRID DE CARDS — estilo SublimeMais moderno
--------------------------------------------------------- */
.grade {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 20px;
}

.card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

/* IMAGEM DO CARD */
.card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* INFORMAÇÕES DO CARD */
.card-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-info h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.card-info p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* BOTÃO WHATSAPP */
.btn-whats {
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    margin-top: 6px;
    transition: 0.2s;
}

.btn-whats:hover {
    background: #1ebe59;
}

/* --------------------------------------------------------
   PÁGINA visual.php — foto grande
--------------------------------------------------------- */
.visual-fundo {
    background: #ffeef7;
}

.visual-container {
    padding: 20px;
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.visual-img-area {
    background: white;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

.visual-img {
    width: 100%;
    border-radius: 18px;
}

.visual-titulo {
    font-size: 22px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 5px;
    color: #c83572;
}

.visual-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
}

/* BOTÃO WHATS NA PÁGINA VISUAL */
.visual-whats {
    display: block;
    margin: 15px auto 25px auto;
}

/* BOTÃO VOLTAR */
.btn-voltar {
    background: #ff4f96;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn-voltar:hover {
    background: #e33f84;
}

/* SEM PRODUTOS */
.nenhum {
    padding: 40px;
    text-align: center;
    color: #999;
    font-size: 15px;
}

/* RESPONSIVO */
@media (min-width: 760px) {
    .grade {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .card-img {
        height: 200px;
    }
}
/* ------------------------------
   RODAPÉ PERSONALIZADO LEV
-------------------------------*/
.lev-footer {
    background: #ffeef6;
    padding: 35px 10px;
    text-align: center;
    border-top: 2px solid #ffd2e8;
    margin-top: 40px;
}

.footer-content {
    max-width: 850px;
    margin: auto;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.footer-icon {
    width: 35px;
    height: 35px;
    transition: transform 0.2s;
}

.footer-icon:hover {
    transform: scale(1.15);
}

.footer-copy {
    color: #b6427d;
    font-size: 14px;
    margin-top: 10px;
}
