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

body {
  font-family: Arial, sans-serif;
  background-color: #F8E9E1;
  height: 100vh;
}

#home{
  float: left;
  width: 30px;
  filter: brightness(0) saturate(100%) invert(0);
  margin-bottom: 10px;
}
    #AcaiTitle {
        text-align: center;
        font-size: 2.5em;
        background-color: #8a69b6;
        border: 2px solid #470040;
        color: #fff;
        border-radius: 10px;
        margin: 10px auto;
        padding: 12px 16px;
        width: fit-content;
        box-shadow: 0px 3px 6px rgba(0,0,0,0.3);
        margin-top: 45px;
    }

    #AcaiSubtitle {
        text-align: center;
        font-size: 1.8em;
        color: #000;
        margin: 10px auto;
        padding: 12px 16px;
        font-weight: bold;
        background-color: #ffbd00;
        border-radius: 10px;
        border: 2px solid #000;
        width: fit-content;
        box-shadow: 0px 3px 6px rgba(0,0,0,0.3);
    }

    .opcoes {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }

#tamanhosContainer{
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 10px;
}

    .Quantidademl {
        cursor: pointer;
        text-align: center;
        font-size: 1.5em;
        color: #000;
        padding: 12px 16px;
        margin: 10px auto;
        font-weight: bold;
        background-color: #fb9644;
        border-radius: 10px;
        border: 2px solid #000;
        width: 200px;
        transition: all 0.2s ease;
        box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    }

    .Quantidademl:hover {
        transform: scale(1.05);
        box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    }

    .Quantidademl.selecionado {
        background-color: #5cd40c !important;
        /* color: #fff; */
        border-color: #c75b00;
        box-shadow: 0px 4px 12px rgba(0,0,0,0.4);
        .preco {
            color: #fff;
        }
    }

    .preco {
        display: block;
        font-size: 0.8em;
        margin-top: 5px;
        color: #333;
    }

.AcaiInformation{
    text-align: center;
    font-size: 1em;
    color: #000;
    margin: 10px auto;
    padding: 12px 16px;
    font-weight: bold;
    background-color: #be95c4;
    border-radius: 10px;
    border: 2px solid #000;
    width: fit-content;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.3);
}

#saboresContainer{
  display: flex;
  flex-direction: column;
  align-items: center; 
}

    .sabor {
        display: block;
        font-size: 1.3em;
        text-align: center;
        width: 85%;
        max-width: 500px;
        border: 2px solid #000;
        border-radius: 10px;
        padding: 12px 20px;
        margin: 10px;
        font-weight: bold;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }

    .sabor:hover {
        transform: scale(1.05);
        box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    }

    .sabor.selecionado {
        background-color: #5cd40c !important;
        /* color: #fff; */
        border-color: #c75b00;
        box-shadow: 0px 4px 12px rgba(0,0,0,0.4);
        .preco {
            color: #fff;
        }
    }


.btn-carrinho {
    background-color: darkgreen;
    color: white;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 12px;
    font-weight: bold;
    font-size: 16px;
    margin-top: 50px;
    margin: 10px auto;
    width: 85%;
    max-width: 500px;
    cursor: pointer;
    transition: 0.3s;
  }