body {
    font-family: Pangram;
}

.borda {
    border-radius: 10px;
    box-shadow: 0px 3px 10px rgb(180, 241, 241);
}

.borda:hover {
    box-shadow: 0px 3px 30px rgb(180, 241, 241);
}

.meio {
    margin: 2em;
}

.cinza {
    background-color: #999;
}

.quadrado {
    width: 140px;
    height: 140px;
}

.centro {
    text-align: center;
}

.form-post {
    width: 140px;
    height: 140px;
    margin: 0;
}

form {
    margin: 0px;
    padding: 0px;
    display: inline;
}

canvas {
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#canvas {
    margin: 50em;
}

#modalProduto {
    text-align: center;
    margin: 0;
    width: 100%;
    margin-left: 0.8em;
    padding: 1rem;
    border-radius: 1.5em;
    z-index: 10;
}

#modalSticker {
    text-align: center;
    margin: 0;
    width: 100%;
    margin-left: 0.8em;
    padding: 1rem;
    border-radius: 1.5em;
    z-index: 11;
}

/* .imgProduto:hover {

} */

.imgProduto {
    margin: 1px;
    width: 200px;
    cursor: pointer;
}

.corFundo {
    background-color: #d3c9bd;
}

.canvas-container {
    margin: 0 auto;
}

.metade {
    width: 48%;
    font-size: 60px;
}

.completo {
    width: 96%;
    font-size: 60px;
}

.pointer {
    cursor: pointer;
}

/* .imgProduto2:hover {
} */

.imgProduto2 {
    margin: 1px;
    width: 150px;
    cursor: pointer;
}

.fonte {
    width: 20%;
    margin: 1em;
    border-radius: 10px;
    background-color: black;
    color: white;
    font-size: 2em;
}

.hide {
    display: none;
}



.header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header img {
    width: 100%;
    min-width: 100%;
    /* impede que reduza no celular */
    height: auto;
    object-fit: cover;
}















.header2 {
    width: 100%;
    background-color: #e2e2e2;
    padding: 0.5em 0;
    color: black;
}

.grid {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 1em 0px;
}

.grid2 {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1em 0px;
}

.marginzero {
    margin: 0;
}

.meiogrid {
    align-self: center;
    justify-self: center;
}

.negrito {
    font-weight: bold;
    font-family: Pangram-Negrito;
}

.preto {
    background-color: black;
    color: white;
}

.footer {
    margin: auto;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 12px;
    background-color: #e2e2e2;
    height: 1.5em;
    color: black !important;
    text-align: center;
}

a {
    text-decoration: none;
    color: black;
}

@font-face {
    font-family: 'Pangram';
    src: url('./font/Roboto-Regular.ttf');
    src:
        local('Pangram'),
        local('Pangram'),
        url('./font/Roboto-Regular.ttf') format('opentype');
}

@font-face {
    font-family: 'Pangram-Negrito';
    src: url('./font/Roboto-Bold.ttf');
    src:
        local('Pangram-Negrito'),
        local('Pangram-Negrito'),
        url('./font/Roboto-Bold.ttf') format('opentype');
}

.itens {
    width: 140px;
    height: 140px;
}




.gridmenu {
    display: grid;
    grid-auto-flow: column;
    /* itens preenchendo horizontalmente */
    grid-template-rows: repeat(2, auto);
    grid-auto-columns: 180px;
    column-gap: 7rem;
    row-gap: 2rem;
    justify-items: center;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 50px;

    overflow-x: auto;
    overflow-y: hidden;

    min-height: 600px;

    scrollbar-width: none;
}

.gridmenu::-webkit-scrollbar {
    display: none;
}







/* --- Ajuste para celular --- */
@media (max-width: 768px) {
    .gridmenu {
        padding-left: 50px;
        padding-right: 40px;
        column-gap: 6rem;
        /* diminui o espaço entre colunas no celular */
    }
}


/* Ajustes para as imagens de stories */
#menu-stories {
    column-gap: 6rem !important;
    /* mais espaço entre colunas */
    row-gap: 4.0rem !important;
    /* mais espaço entre linhas */
    padding-bottom: 80px !important;
}


.gridmenu::-webkit-scrollbar {
    display: none;
    /* Chrome, Edge, Safari */
}



/* Estilo das imagens */
.item {
    width: 140px;
    height: 140px;
    border-radius: 10px;
}

/* Ajuste para exibir corretamente as imagens */
.gridmenu .item:first-child {
    /* Não precisa de order, porque o PHP já coloca a última imagem no topo */
}



/* Ajustes para as imagens em tela pequena */
@media (max-width: 768px) {
    .gridmenu {
        grid-template-columns: repeat(2, 1fr);
    }
}








.carousel-button {
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.carousel-button:hover {
    background: #e65c00;
    transform: scale(1.05);
}

.carousel-button:active {
    background: #000;
    color: #fff;
}


/*

#menu-feed {
    scroll-behavior: smooth;
    /* opcional, anima o scroll */
/*scroll-snap-type: x mandatory;*/
/* opcional, trava cada item */
/*}*/































/* Paginação */
.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 12px;
    border-radius: 6px;
    background: #333;
    color: #fff;
    text-decoration: none;
}

.pagination a:hover,
.pagination a.active {
    background: #ff6600;
}

































.item {
    width: 140px;
    height: 140px;
}

.itemStorie {
    width: 140px;
    height: 248px;
}

.gridopcoes {
    display: grid;
    grid-template-columns: auto auto auto;

}

.gridopcoes2 {
    display: grid;
    grid-template-columns: auto auto;
}

.gridmeio {
    align-self: center;
    justify-self: center;
}

.gridsticker {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 1em;
}

.gridheader {
    display: grid;
    grid-template-columns: auto auto;
}

.produtos {
    overflow: auto;
    height: 600px;
}

.linhavermelha {
    border-top: 1px solid #f15722;
}

.azul {
    color: blue;
}

.evento {

    animation: pulse 1s linear infinite;
}

.pulse {
    animation: pulse 1s linear infinite;
}

@-webkit-keyframes "pulse" {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}