/* Reset básico para manter consistência entre navegadores */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fontes Google */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

/* Estilos Gerais */
body {
  font-family: "Roboto", sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.kf-container {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.kf-title {
  text-align: center;
  color: #dd6511;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #dd6511;
}

.kf-text {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #666;
}

/* Botão centralizado */
.kf-btn {
  display: block;
  width: 200px;
  margin: 20px auto;
  background: #fa3a00;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.kf-btn:hover {
  background: #e63900;
}

/* Estilos para telas grandes e tablets */
@media screen and (min-width: 600px) {
  .kf-title {
    font-size: 2.5rem;
  }

  .kf-text {
    font-size: 1.1rem;
  }

  .kf-container {
    padding: 40px;
  }
}

/* Estilos para telas menores */
@media screen and (max-width: 600px) {
  .kf-title {
    font-size: 1.8rem;
  }

  .kf-text {
    font-size: 1rem;
  }

  .kf-container {
    margin: 20px auto;
  }
}

.nav-buttons {
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  color: white;
  padding: 0;
  z-index: 1000; /* Garante que esteja acima dos outros elementos */
  transition: top 1s ease-in-out;
  background-repeat: repeat;
  background-position: center center;
  background-size: contain;
  height: 4vw;
  background-color: #333333;
  background-image: linear-gradient(
    to right,
    #333333 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4); /* Sombra ajustada para projetar-se para baixo */
}

@keyframes slideDown {
  to {
    top: 0;
  }
}

.nav-buttons a,
.nav-buttons a:visited {
  text-decoration: none;
  color: #ffffff; /* Cor do texto para branco */
  margin-right: 50px;
  cursor: pointer;
  font-size: 1.1vw;
  font-weight: bold;
  position: relative;
}

.nav-buttons a:hover,
.nav-buttons a:focus {
  color: #cccccc; /* Cor do texto para um branco mais escuro no hover */
}

.nav-buttons a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: white;
  transition: width 0.7s;
}

.nav-buttons a:hover::after {
  width: 100%;
}

.nav-buttons a:active,
.nav-buttons a:focus {
  color: #ffffff; /* Cor do texto para branco quando ativo/focado */
}

.nav-buttons a:active:hover,
.nav-buttons a:focus:hover {
  color: #cccccc; /* Cor do texto para um branco mais escuro no active hover */
}

.navbar-logo {
  height: 3.3vw; /* Ajusta a altura com base na largura da viewport */
  width: auto; /* Mantém a largura automática para preservar as proporções da imagem */
  margin-right: 15px;
}

.nav-logo {
  position: relative;
  top: 0.3em;
  max-width: 5vw; /* Diminuir a largura máxima */
  max-height: 2.8vh; /* Diminuir a altura máxima */
  width: auto; /* Ajusta a largura automaticamente */
  height: auto; /* Ajusta a altura automaticamente */
  /* Manter as outras propriedades como estão */
  transition: transform 0.3s;
  cursor: pointer;
}

.nav-logo:hover {
  transform: scale(1.2);
}

.nav-logo:first-of-type::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  height: 30px;
  width: 1px;
  background-color: white;
  transform: translateY(-50%);
}

.nav-logo:first-of-type {
  margin-left: 0px; /* Ajuste este valor conforme necessário para centralizar */
}

/* Seleciona o link que contém a imagem do Facebook e ajusta a margem à direita */
a[href="https://www.facebook.com/KerFrango"]
{
  margin-right: 1vw; /* Reduz o espaço após o ícone do Facebook */
}

/* Seleciona o link que contém a imagem do Instagram e ajusta a margem à esquerda */
a[href=" "] {
  margin-left: 0vw; /* Reduz o espaço antes do ícone do Instagram */
}

.logo-image {
  position: absolute;
  width: 18%;
  /* Ajuste o tamanho da imagem. Por exemplo, 20% da largura do container. Ajuste conforme necessário */
  top: 20%;
  /* Movida mais para cima. Ajuste conforme necessário */
  left: 18%;
  transform: translateY(-50%);
  z-index: 1;
}

#menuToggle {
  display: block;
  position: fixed;
  top: 20px; /* Ajustado para posicionar mais para cima */
  right: 20px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  z-index: 3000 !important;
}

#menuToggle a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

#menuToggle a:hover {
  color: rgb(255, 255, 255);
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #333333;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  position: fixed;
  width: 50%;
  height: 100%;
  margin: 0;
  padding: 10px;
  padding-top: 125px;
  background: #dd7e11;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 100% 0;
  transform: translate(100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  top: 0;
  right: 0;
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
  text-align: center;
}

#menuToggle input:checked ~ ul {
  transform: none;
}

/*|||||||||||.menuToggle|||||||||||||||BotãoDe3Barrinhas|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

@media screen and (max-width: 1024px) {
  .nav-buttons {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  #menuToggle,
  #menu {
    display: none;
  }
}

.contact-container {
  background-color: #f3581a; /* Cor de fundo */
  color: white;
  display: flex;
  justify-content: center;
  padding: 3rem;
  box-shadow: inset 0px 10px 25px -10px rgba(0, 0, 0, 0.8),
    /* Sombra interna na parte de cima */ inset 0px -10px 25px -10px
      rgba(0, 0, 0, 0.8); /* Nova sombra interna na parte de baixo, invertida para cima */
}

.contact-item {
  display: flex;
  align-items: center; /* Alinha os itens verticalmente */
  margin-right: 15rem; /* Espaço à direita de cada item de contato, ajuste conforme necessário */
}

.contact-item:last-child {
  margin-right: 0; /* Remove a margem à direita do último item para evitar espaçamento extra no fim */
}

.contact-item img {
  width: 3.5rem; /* Largura padrão do ícone */
  height: auto; /* Altura automática para manter a proporção */
}

.contact-item .email-icon {
  width: 4.5rem; /* Largura maior apenas para o ícone de e-mail */
}

.contact-info {
  display: flex;
  flex-direction: column; /* Organiza o título e o link em coluna */
  margin-left: 0.5rem; /* Espaço entre o ícone e o texto */
}

.contact-title {
  font-size: 1.3rem; /* Tamanho da fonte do título */
  margin-bottom: 0.25rem; /* Espaço abaixo do título */
}

.contact-link {
  color: white; /* Cor do texto dos links */
  text-decoration: none; /* Sem sublinhado */
  font-size: 1.3rem; /* Tamanho da fonte dos links */
}

.contact-link:hover {
  text-decoration: underline; /* Sublinhado ao passar o mouse */
}

.input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
}

#emailInput {
  padding: 10px;
  margin-bottom: 10px;
  width: 70%;
  font-size: 16px;
}

.sacContato {
  background-color: #333333;
  color: white;
  display: flex;
  flex-direction: row;
  gap: 7em; /* Espaço entre as divs */
  padding: 40px 20px;
  justify-content: center;
  text-align: center;
}

.sacContato .left-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sacContato .left-content img {
  width: 190px;
  height: auto;
  margin-bottom: 10px;
}

@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
.sacContato .left-content p {
  font-size: 20px;
  margin: 0;
  font-family: "Pacifico", cursive; /* Fonte desenhada aplicada */
}

.sacContato .titulos {
  margin-right: 20px;
}

.sacContato .titulos h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.sacContato .titulos p {
  text-align: center;
  margin: 0;
}

.sacContato ul {
  list-style: none;
  padding: 0;
}

.sacContato ul li {
  margin-bottom: 10px;
  text-align: center;
}

.sacContato a {
  text-decoration: none;
  color: white;
}

.sacContato a:hover {
  text-decoration: underline;
}
.desenvolvedor {
  background-color: white;
  color: #000;
  text-align: center;
  padding: 0.5rem;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  border-top: 1px solid #ccc;
}

.desenvolvedor a {
  color: #f3581a; /* Define a cor do link, pode ser qualquer cor de sua escolha */
  text-decoration: none; /* Remove o sublinhado do link */
}

.desenvolvedor a:hover {
  text-decoration: underline; /* Adiciona o sublinhado ao passar o mouse sobre o link */
}

.divider {
  display: block;
  width: 0.2vw; /* Largura da linha baseada na largura da viewport */
  height: 2vw; /* Altura da linha baseada na largura da viewport */
  background-color: white;
  margin: 0 20px; /* Espaço horizontal em torno da linha */
  border-radius: 0.1vw; /* Arredonda a parte superior e inferior */
}

/*|||||||||||||||||||||.sacContato|||||ÚltimaParteDoSite|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

@media screen and (max-width: 768px) {
  .sacContato {
    flex-direction: column; /* Empilha verticalmente em telas menores */
    gap: 1em; /* Reduz o espaço entre as divs */
    padding: 20px; /* Reduz o padding */
  }

  .sacContato .left-content,
  .sacContato .titulos {
    align-items: center; /* Centraliza o conteúdo */
    text-align: center; /* Texto centralizado */
    margin-right: 0; /* Remove a margem direita */
  }

  .sacContato .titulos h2,
  .sacContato ul li,
  .sacContato a {
    text-align: center; /* Texto centralizado */
  }

  .prep-time {
    justify-content: center; /* Mantém o conteúdo centralizado horizontalmente */
  }

  /* Ajustes para as imagens e outros conteúdos conforme necessário */
  .banner img {
    width: 100%; /* Garante que a imagem se redimensione para caber na tela */
    content: url("QualidadeCelular.jpg");
  }
}

/*|||||||||||||||||||||||||||||||||contact-container||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

@media screen and (max-width: 600px) {
  .contact-container {
    display: flex;
    justify-content: space-around; /* Distribui os itens uniformemente no container */
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
    align-items: center;
  }
  .contact-item {
    display: flex;
    align-items: center; /* Alinha os itens verticalmente */
    margin: 5px; /* Espaço ao redor de cada item */
    flex-basis: calc(
      50% - 10px
    ); /* Ajusta o item para caber dois por linha, com espaçamento */
  }
  .contact-item img {
    filter: invert(100%);
    width: 13vw !important; /* Define apenas a largura das imagens */
    height: auto; /* A altura se ajustará proporcionalmente */
    margin-right: 10px; /* Espaçamento entre imagem e texto */
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-title {
    font-weight: bold;
    font-size: 5vw;
  }
  .contact-link {
    word-break: break-word;
    font-size: 4vw;
    width: 100%;
  }
}

@media screen and (min-width: 601px) and (max-width: 1024px) {
  .contact-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 15px;
    box-sizing: border-box;
  }
  .contact-item {
    display: flex;
    align-items: center;
    margin: 10px;
    flex-basis: calc(50% - 20px);
  }
  .contact-item img {
    filter: invert(100%);
    width: 60px; /* Tamanho maior para tablets */
    height: 60px; /* Altura fixa para manter a proporção */
    margin-right: 15px;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-title {
    font-weight: bold;
  }
  .contact-link {
    word-break: break-word;
  }
}
