/*ESTILO PARA TODAS AS PÁGINAS DE COMPRA E INFORMAÇÃO DOS PRODUTOS*/

@font-face {
  font-family: 'Adobe Garamond';
  src: url(MIDIA/adobe-garamond.otf);
}

.all-page {
  font-family: 'Adobe Garamond';
  box-sizing: border-box;
}

#titulo{
    background-color: #f7f1ec ;
}

#header-fixo{
  background-color: #f7f1ec;
}

body {
  background-color: #f7f1ec;
  margin: 0;
  padding: 0;
}

/* SEÇÃO PRINCIPAL DO PRODUTO: carrousel, informações e compra */
.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px;
  flex-wrap: wrap;
  margin-left: 90px;
  margin-right: 70px;
  margin-top: -10px;
}

 /**************** CARROUSSEL COM AS IMAGENS ********************/
.container-slider {
  position: relative;
  width: 650px;
  height: 550px;
}

.container-images {
  width: 100%;
  height: 100%;
}

.container-images img {
  display: none;
  width: 100%;
  height: 95%;
  object-fit: cover;
  border-radius: 2%;
}

.container-images img.slider.on {
  display: block;
}

/* Estilização dos botões */
.buttons-below {
  position: absolute;
  top: 50%;
  left: -25px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

#prev-button, #next-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#prev-button{
  margin-left: 10px;
}

#next-button{
  margin-right: -50px;
}

#prev-button img, #next-button img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/******************** INFORMAÇÕES DO PRODUTO (texto) *****************/
.text {
  flex: 1;
  text-align: left;
  color: #634647;
  min-width: 300px;
  margin-left: 20px;
}

.title {
  font-family: 'Adobe Garamond';
  font-size: 55px;
  margin: -5px 0 -10px 0;
}

.p1 {
  margin: 7px 0 -5px 0;
  font-size: 23px;
}

.price {
  font-size: 40px;
  margin: 5px 0 -5px 0;
}

.p2 {
  margin: 7px 0;
  font-size: 21px;
  max-width: 80%;
}

.p3 {
  margin: 7px 0 10px 0;
  font-size: 23px;
}

.container input {
  height: 40px;
  font-size: 23px;
  width: 70px;
  margin-right: 10px;
}

.button {
  display: flex;
  flex-direction: row;
  margin-top: 5px;
  font-family: 'Adobe Garamond';
  background-color: #5c4033;
  color: white;
  cursor: pointer;
  font-size: 23px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
}

/******** BLOCOS DE INFORMAÇÕES ADICIONAIS: TABELA NUTRICIONAL E INSTRUÇÕES *******/
/*titulo */
.title-2 {
  font-size: 40px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0px;
  color: #634647;
  font-family: 'Adobe Garamond';
}

.info-1 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin: 20px 40px;
  flex-wrap: wrap;
}

.ingredientes,
.congelamento,
.conservacao {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.ingredientes{
  max-width: 450px;
}

.text-info-1 {
  text-align: center;
  font-size: 28px;
  margin: 5px 0;
  color: #5c4033;
}

.info-1 li {
  text-align: left;
  font-size: 20px;
  margin: 5px 0;
  line-height: 1.5;
}

/* TABELA NUTRICIONAL */
.tabela-nutricional{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}

.tabela-nutricional img {
  width: 900px;
  height: 400px;
}

.info-tabela{
  font-family: 'Adobe Garamond';
  text-align: center;
  font-size: 20px;
  margin: 0 19% 8px 19%;
  line-height: 1.4;
}

.info-tabela.p2{
  font-size: 17px;
}

/*footer*/
footer{
  margin-top: 30px;
}

@media screen and (max-width: 500px){
  body{
    overflow: hidden;
  }
  .container{
    margin: 0px;
    padding: 0px;
    overflow: hidden;
  }

  .container-slider{
    position: relative;
   width: 90%;
   height: auto;
   margin-left: -5px !important; 
   margin-bottom: -10px;
   margin-top: 10px;
  }

  /* TEXTO DE INFORMAÇÃO DO PRODUTO*/
  .text{
     margin-left: 60px;
  }
  .title{
    font-size: 45px;
    text-align: center;
    line-height: 1.0;
    margin: 5px 10% 10px 0;
  }
  .title.banana-granola, .title.laranja.frutas{
    font-size: 33px !important;
  }
  .p1{
    font-size: 25px;
  }
  .price{
    font-size: 35px;
  }
  .p2, .p3{
    font-size: 20px;
  }
  .p3{
    margin-right: 30px;
  }

 /* INFOS ADICIONAIS*/
 .title-2{
  margin: 30px 0px -10px 0px;
  font-size: 36px;
 }
  .info-1{
    gap: 10px;
  }
  .text-info-1{
    font-size: 25px;
  }
  .text-info-1 li{
    font-size: 14px;
  }

  /* TABELA NUTRICIONAL */
  .tabela-nutricional img{
    margin-top: 10px;
    width: 95%;
    height: 250px;
    position: relative;
  }
  .info-tabela, .info-tabela.p2{
    margin: 10px;
    font-size: 15px;
  }
  .info-tabela.p2{
    margin-left: 40px;
    font-size: 13px;
  }

  .menu-mobile{
    background-color: #f7f1ec;
  }
}

@media (min-width:500px) and (max-width:750px){
  body{
    overflow: hidden;
  }
  .container{
    margin: 0px;
    padding: 0px;
    overflow: hidden;
  }

  .container-slider{
    position: relative;
   width: 80%;
   height: 440px;
   margin-left: -5px;
   margin-bottom: -10px;
   margin-top: 10px;
  }

  /* TEXTO DE INFORMAÇÃO DO PRODUTO*/
  .text{
     margin-left: 60px;
  }
  .title{
    font-size: 50px;
    margin-top: -20px;
    text-align: center;
    margin-right: 40px;
  }
  .title.banana-granola, .title.laranja.frutas{
    font-size: 42px !important;
  }
  .p1{
    font-size: 28px;
  }
  .price{
    font-size: 38px;
  }
  .p2, .p3{
    font-size: 23px;
  }
  .p3{
    margin-right: 30px;
  }

 /* INFOS ADICIONAIS*/
 .title-2{
  margin: 30px 0px -10px 0px;
  font-size: 42px;
 }
  .info-1{
    gap: 10px;
  }
  .text-info-1 li{
    font-size: 16px;
  }

  /* TABELA NUTRICIONAL */
  .tabela-nutricional img{
    margin-top: 10px;
    width: 100%;
    height: 380px;
    position: relative;
  }
  .info-tabela, .info-tabela.p2{
    margin: 10px;
    font-size: 17px;
  }
  .info-tabela.p2{
    margin-left: 60px;
  }

  .menu-mobile{
    background-color: #f7f1ec;
  }
}
