/* deixei essas observações tanto para mim quanto para meus colegas de grupo nao se perderem no codigo===========================================================================================================================*/
/* estilo da pagina===========================================================================================================================*/
:root {
  --corPrincipal: #be430a;
  --corSecundaria: #c0948057;
  --fundo: #F4E9D8;
  --branco: #FFFFFF;
  --textoPrincipal: #181818;
  --textoSecundario: #494949;
}

body {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  background-color: var(--fundo);
  margin: 0;
  padding: 0;
}

/* Parte principal da pagina sobre===========================================================================================================================*/

.container-sobre {
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  gap: 40px;
  display: flex;
}

.titulodestaque {
  font-family: 'Koh Santepheap';
  font-size: 52px;
  border-left: 5px solid var(--corPrincipal);
  border-radius: 4px;
  padding-left: 5px;

}

.destaque {
  font-size: 60px;
  color: var(--corPrincipal);
  font-family: "popins";
}

.barra {
  border-left: red;
}

/* animação do delay===========================================================================================================================*/
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Parte dos Chefs e nossos nomes===========================================================================================================================*/
.imgTexto {
  max-width: 500px;
  border-radius: 70px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

main {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

.containerchef {
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  gap: 10px;
  display: flex;
  background-color: var(--corSecundaria);
  border-radius: 20px;


}

.chefs {
  font-size: 30px;
  color: #181818;
}

.listachefs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.destaquechef {
  font-size: 30px;
  color: var(--corPrincipal);
}

.imgchef {
  max-width: 500px;
  border-radius: 70px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

/* tudo da parte do mapa===========================================================================================================================*/

.containerloc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.maps {
  display: flex;
  justify-content: center;
}

.maps iframe {
  border-radius: 10px;
  width: 50%;
  height: 350px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.tituloloc {
  margin-top: 100px;
  font-family: 'Koh Santepheap';
  font-size: 52px;
  color: var(--textoPrincipal);
  border-left: 5px solid var(--corPrincipal);
  border-radius: 4px;
  padding-left: 5px;
}

.subtext-loc {
  font-size: 30px;
  color: var(--textoPrincipal);
}

.container-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  overflow: hidden;
}

/*toda parte do css dos slides===========================================================================================================; */

.slide-track-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--corPrincipal);
  padding: 18px 0;
}

.slide-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.slide-track:hover {
  animation-play-state: paused;
}

.slide-card {
  border-radius: 70px;
  width: 500px;
  height: 350px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.slide-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 70px 70px 0 0;
  display: block;
}

.slide-card .label {
  font-size: 13px;
  font-weight: 600;
  color: var(--corPrincipal);
  text-align: center;
  padding: 10px;
  background: var(--fundo);
}


/* formatação para celular============================================================================================================================*/


@media (max-width: 768px) {

  /* sobre */
  .container-sobre {
    flex-direction: column;
    align-items: center;
    padding: 30px 16px;
  }

  .imgTexto {
    max-width: 100%;
    border-radius: 30px;
  }

  .titulodestaque {
    font-size: 32px;
  }

  #destaque {
    font-size: 38px;
  }

  .textohistoria {
    font-size: 14px;
  }

  /* slides======================================================================================================================================== */
  .container-slide {
    padding: 20px 0;
  }

  .slide-card {
    width: 260px;
    height: 200px;
    border-radius: 30px;
  }

  .slide-card img {
    height: 155px;
    border-radius: 30px 30px 0 0;
  }

  /* chefs================================================================================================================================================ */
  .containerchef {
    flex-direction: column;
    align-items: center;
    padding: 30px 16px;
    text-align: center;
  }

  .imgchef {
    max-width: 100%;
    border-radius: 30px;
  }

  .chefs {
    font-size: 20px;
  }

  /* mapa============================================================================================================================================== */
  .containerloc {
    padding: 30px 16px;
  }

  .tituloloc {
    margin-top: 40px;
    font-size: 36px;
  }

  .subtext-loc {
    font-size: 16px;
  }

  .maps iframe {
    width: 100%;
    height: 250px;
  }
}