
@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

a {
  font-family: 'Blinker', sans-serif;
  text-decoration: none;
}

.header {
  background: rgb(242,101,110);
  padding-inline: 16px;
}

.nav {
  max-width: 1280px;
  height: 115px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.nav-list {
  margin-right:10%;

  justify-content: space-between;
  display: flex;
  gap: 90px;
  list-style: none;

}

.nav-list a {
  font-size: 18px;
  color: #fff;
  padding-block: 12px;
  position: relative;
  text-decoration: none;
}

.nav-list a::before {
  margin-right:2%;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease-in-out; /* Adiciona transição para a largura */
}

.nav-list a:hover::before {
  width: 100%; /* Expande o underline ao passar o mouse sobre o link */
}


.hero {
  height: calc(100vh - 70px);
  background-color: white;
}

.hamburger {
  display: none;
  border: none;
  background: none;
  border-top: 3px solid #fff;
  cursor: pointer;
}

.hamburger::after,
.hamburger::before {
  content: " ";
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  margin-top: 5px;
  position: relative;
  transition: 0.3s;
}

@media (max-width: 750px) {
  .hamburger {
    display: block;
    z-index: 1;
  }

  .nav-list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(242,101,110);
    clip-path: circle(100px at 90% -15%);
    transition: 1s ease-out;

    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 0;

    pointer-events: none;
  }

  .nav-list a {
    font-size: 16px;
    opacity: 0;
  }

  .nav-list li:nth-child(1) a {
    transition: 0.5s 0.2s;
  }

  .nav-list li:nth-child(2) a {
    transition: 0.5s 0.4s;
  }

  .nav-list li:nth-child(3) a {
    transition: 0.5s 0.6s;
  }

  /* Estilos ativos */

  .nav.active .nav-list {
    clip-path: circle(1500px at 90% -15%);
    pointer-events: all;
  }

  .nav.active .nav-list a {
    opacity: 1;
  }

  .nav.active .hamburger {
    position: fixed;
    top: 26px;
    right: 16px;
    border-top-color: transparent;
  }

  .nav.active .hamburger::before {
    transform: rotate(135deg);
  }

  .nav.active .hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }
}

.banner{
}

.imagehome1{
  background-size: cover;
  margin-left: 1%;
  margin-right: 1%;
  margin-top: 1%;
  border-radius: 30px 30px 30px 30px
}

.imagehomemobi{
  background-size: cover;
  display: none;
  margin-left: 1%;
  margin-right: 1%;
  margin-top: 1%;
  border-radius: 30px 30px 30px 30px
}

.pointer {
  margin-top: 3%;
  height: 40px;
  width: 70px;
}



.interativo {
  display: flex;
  margin-top: 2%;
  justify-content: center;
  align-items: center;
  margin:  2%;
}

.item {
  text-align: center;
  margin:  1%; /* Espaçamento entre os itens */
  flex: 1 1 40%; /* Distribui igualmente em telas maiores, ocupa 100% em telas menores */
}

.texto {
  font-family: 'Blinker', sans-serif;
  font-style:unset;
  font-size: 16px;
  margin-top: 10px; /* Ajuste conforme necessário */
}

.subtitulo {
  font-family: 'Blinker', sans-serif;
  font-size: 14px;
  max-width: 100%; /* Ocupa a largura total */
  margin-top: 5px; /* Ajuste conforme necessário */
  white-space: nowrap; /* Impede a quebra de linha */
  overflow: hidden;
  text-overflow: ellipsis; /* Adiciona reticências se o texto não couber */
  color: darkgrey;
}
@media screen and (max-width: 768px) {
  .item {
    flex: 1 1 100%; /* Ocupa 100% em telas menores */
  }

  .subtitulo {
    max-width: 100%; /* Ocupa a largura total */
    white-space: normal; /* Permite que o texto quebre linha */
    overflow: visible;
    text-overflow: initial; /* Remove reticências em telas menores */
  }
}

.banner_dois {
  margin-top: 3%;
  max-width: 100%;
  text-align: center; /* Centralizar a imagem */
}

.imagem_dois {
  width: 100%;
  height: auto;
  display: block;
}

.banner_tres {
  max-width: 100%;
  text-align: center; /* Centralizar a imagem */
 
}

.imagem_tres {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}


.slogan {
  max-width: 100%;
  height: 300px; /* Defina uma altura ou adicione conteúdo ao elemento */
  text-align: center;
  background-image: url('image/Group 4.svg'); /* Substitua pelo caminho da sua imagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff; /* Adicione cor ao texto para garantir visibilidade */
}

.texto_slogan {
  font-family: Blinker;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 600px) {
  .slogan {
    height: auto; /* Ajusta a altura automaticamente em telas menores */
  }

  .texto_slogan {
    font-size: 20px; /* Ajusta o tamanho da fonte em telas menores */
  }
}

#footer {
  background-color: #000000; /* Cor de fundo do rodapé */
  padding: 20px; /* Espaçamento interno */
  text-align: center; /* Alinhamento do texto ao centro */
}

.bloco_texto_um,
.bloco_texto_dois {
  display: block;
  margin-bottom: 10px; /* Espaçamento entre os blocos de texto */
}

a {
  color: #B9B6B6;
font-family: Blinker;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

a:hover {
  color: rgb(242,101,110); /* Cor do link quando passa o mouse sobre ele */
}

/* Media query para telas menores */
@media screen and (max-width: 768px) {
  .bloco_texto_um,
  .bloco_texto_dois {
    display: inline-block;
    margin: 0 10px; /* Espaçamento entre os blocos de texto */
  }
  a {font-size: 10px;}
}


/*página sobrer nós*/
.banner_sobre_um {
  max-width: 100%;
  text-align: center; /* Centralizar a imagem */
 
}

.imagem_sobre_um {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.banner_sobre_dois {
  max-width: 100%;
  text-align: center; /* Centralizar a imagem */
 
}

.imagem_sobre_dois {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .item {
    font-size: smaller;
    flex: 1 1 100%; /* Ocupa 100% em telas menores */
  }

  .subtitulo {
    font-size: smaller;
    max-width: 100%; /* Ocupa a largura total */
    white-space: normal; /* Permite que o texto quebre linha */
    overflow: visible;
    text-overflow: initial; /* Remove reticências em telas menores */
  }
}

@media screen and (max-width: 768px) {
  .imagehome1{
    display: none;
  }

  .imagehomemobi{
    background-size: cover;
    display: block;
    margin-left: 1%;
    margin-right: 1%;
    margin-top: 1%;
    border-radius: 30px 30px 30px 30px

  }
}


/* CHAT BOT - NAO TOCA NISSO!!! */

.chatbot-toggler {
  position: fixed;
  bottom: 30px;
  right: 35px;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #cc4141;
  transition: all 0.2s ease;
}

body.show-chatbot .chatbot-toggler {
  transform: rotate(90deg);
}

.chatbot-toggler span {
  color: #fff;
  position: absolute;
}

.chatbot-toggler span:last-child,
body.show-chatbot .chatbot-toggler span:first-child  {
  opacity: 0;
}

body.show-chatbot .chatbot-toggler span:last-child {
  opacity: 1;
}

.chatbot {
  position: fixed;
  right: 35px;
  bottom: 90px;
  width: 420px;
  height: 540px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.5);    
  transform-origin: bottom right;
  box-shadow: 0 0 128px 0 rgba(0,0,0,0.1),
              0 32px 64px -48px rgba(0,0,0,0.5);
  transition: all 0.1s ease;
}

body.show-chatbot .chatbot {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.chatbot header {
  padding: 16px 0;
  position: relative;
  text-align: center;
  color: #fff;
  background: #cc4141;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.chatbot header span {
  position: absolute;
  right: 15px;
  top: 50%;
  display: none;
  cursor: pointer;
  transform: translateY(-50%);
}

header h2 {
  font-size: 1.4rem;
}

.chatbot .chatbox {
  overflow-y: auto;
  height: 510px;
  padding: 30px 20px 100px;
}

.chatbot :where(.chatbox, textarea)::-webkit-scrollbar {
  width: 6px;
}

.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 25px;
}

.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 25px;
}

.chatbox .chat {
  display: flex;
  list-style: none;
}

.chatbox .outgoing {
  margin: 20px 0;
  justify-content: flex-end;
}

.chatbox .incoming img {
  color: #fff;
  cursor: default;
  text-align: center;
  line-height: 32px;
  align-self: flex-end;
  background: #e84a4a;
  border-radius: 4px;
  margin: 0 10px 7px 0;
}

.chatbox .chat p {
  white-space: pre-wrap;
  padding: 12px 16px;
  border-radius: 10px 10px 0 10px;
  max-width: 75%;
  color: #fff;
  font-size: 0.95rem;
  background: #e84a4a;
}

.chatbox .incoming p {
  border-radius: 10px 10px 10px 0;
}

.chatbox .chat p.error {
  color: #721c24;
  background: #f8d7da;
}

.chatbox .incoming p {
  color: #000;
  background: #f2f2f2;
}

.chatbot .chat-input {
  display: flex;
  gap: 5px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 3px 20px;
  border-top: 1px solid #ddd;
}

.chat-input textarea {
  height: 55px;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
  max-height: 180px;
  padding: 15px 15px 15px 0;
  font-size: 0.95rem;
}

.chat-input span {
  align-self: flex-end;
  color: #e84a4a;
  cursor: pointer;
  height: 55px;
  display: flex;
  align-items: center;
  visibility: hidden;
  font-size: 1.35rem;
}

.chat-input textarea:valid ~ span {
  visibility: visible;
}

@media (max-width: 490px) {
  .chatbot-toggler {
    right: 20px;
    bottom: 20px;
  }

  .chatbot {
    right: 0;
    bottom: 0;
    height: 100%;
    border-radius: 0;
    width: 100%;
  }
  .chatbot .chatbox {
    height: 90%;
    padding: 25px 15px 100px;
  }
  .chatbot .chat-input {
    padding: 5px 15px;
  }
  .chatbot header span {
    display: block;
  }
}

.jogo{
  background-color: rgb(242, 101, 110)
}


/* ENQUETE!!! */

.divisor {
  display: flex;
  flex-wrap: wrap; /* Permite que os elementos se movam para a próxima linha em telas menores */
  justify-content: center; /* Centraliza os elementos horizontalmente */
  margin-top: 50px;
}

#btnEnvia {
  background-color: #f2656e;
  border: 1px solid #f2656e;
  width: 100%; /* Ocupa a largura total do contêiner pai */
  max-width: 500px; /* Limita a largura máxima para 500px */
  box-sizing: border-box; /* Inclui a largura da borda e do preenchimento na largura total */
}

.card {
  width: 100%; /* Ocupa a largura total do contêiner pai */
  max-width: 500px; /* Limita a largura máxima para 500px */
  margin: 10px;
  border: 1px solid black;
}

.form-check-input:checked {
  background-color: #f2656e;
}

.card-title {
  font-weight: 100;
}

.card-header {
  font-size: 18px;
  border-radius: 20px;
}

#bemVida_bar, #grill_bar, #modaCasa_bar, #receitaChefe_bar {
  background-color: #f2656e;
}

/* Adicionar media queries para tamanhos de tela específicos */
@media only screen and (min-width: 768px) {
  .divisor {
      justify-content: space-between; /* Espaçamento uniforme entre os elementos */
  }

  .card {
      margin-right: 10px;
  }
}