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

body {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
}

/* Estilizando a barra de rolagem */
::-webkit-scrollbar {
    width: 8px; /* Largura da scrollbar */
    height: 8px; /* Altura da scrollbar horizontal */
    background-color: #1f2124;
}

::-webkit-scrollbar-thumb {
    background-color: #6c757d; /* Cor do "polegar" da scrollbar */
    border-radius: 4px; /* Bordas arredondadas */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #495057; /* Cor ao passar o mouse */
}

::-webkit-scrollbar-track {
    border-radius: 4px; /* Bordas arredondadas */
}

header{    
    background-size: cover; 
    background-position: center;
    z-index: 0;
}

.add-cart{
    transition: all 0.3s ease-in-out;
}

.add-cart:hover{
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

.card{
    transition: all 0.3s ease-in-out;
}

.card:hover{
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.text-right{
    text-align: right !important;
}

.bg_white{
    background: #fff;
    margin-top: 10px;
    padding-top: 0px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
    float: right;
    border-radius: 30px;
}

#video{
    border-radius: 20px;
    border: 4px #000 solid;
    padding: 10px;
    background: #81ff9c;
}


/* Grid de 2 colunas iguais */
.grade {
  display: grid;
  grid-template-columns: 1fr 1fr; /* duas colunas iguais */
  gap: 5px;
  width: 100%;
  padding: 5px;
}

/* Estilo das colunas */
.coluna {
  background: #fff;
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

    /* Responsividade: empilha em telas pequenas */
    @media (max-width: 720px) {
    .grade {
        grid-template-columns: 1fr; /* uma coluna só */
    }
    }
