/* Reset e fonte base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  background-color: #F8E9E1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow-x: hidden;
}
/* codigo CSS extra importado do açai.html */
 body { font-family: Arial, sans-serif; }
.pagina { display: none; text-align: center; }
.pagina.ativa { display: block; }
.sabor, .Quantidademl { cursor: pointer; margin: 5px; padding: 10px; border: 1px solid #ccc; border-radius: 8px; }
.selecionado { border: 2px solid #4CAF50; }
#precoTotal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: #4CAF50;
    color: white;
    font-size: 20px;
    padding: 10px;
    text-align: center;
    z-index: 999;
}
/* Container */
.container {
  text-align: center;
  margin-top: 100px;
  padding: 30px;
  width: 100%;
  height: 100%;
  background-color: #F8E9E1;
}

/* .title{
    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: 90px;
} */

/* home */
#home{
  float: left;
  width: 30px;
  filter: brightness(0) saturate(100%) invert(0);
  margin-bottom: 10px;
}


/* Título */
.title {
  text-align: center;
  font-size: 2.5em;
  background-color: #9174df;
  border: 2px solid rgb(170, 139, 0);
  color: #fff;
  border-radius: 10px;
  margin: 10px auto;
  padding: 12px 16px;
  width: 75%;
}


.containerDeSabores {
  max-width: 300px;
  margin: 20px auto;
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 2px solid #000;
  cursor: pointer;
  transition: 0.3s;
}

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

.containerDeSabores:hover {
  border-color: #5cd40c;
  background-color: #c8f7c5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.containerDeSabores.selected {
  border-color: #5cd40c;
  background-color: #a8f0a0;
}

h2 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
}

input[type="radio"] {
  display: none;
}

#sectionPrecos{
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
}

#preco300, #preco500{
        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);

}

.navegacao button{ 
margin-top: 20px; 
font-size: 18px; 
gap: 10px;
padding: 15px 20px;
}

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

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

#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;
        }
    }
    .preco {
        display: block;
        font-size: 0.8em;
        margin-top: 5px;
        color: #333;
    }
























































































/* Responsividade: aplicar zoom em celulares */
@media (max-width: 480px) {
  .container {
    transform: scale(1.2);
    transform-origin: center;
  }

  .button {
    font-size: 1.1rem;
    padding: 14px 20px;
  }

 
}
