/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}
.foto-circular {
   display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  width: 90%;
 margin-left: 5%;
  border-radius: 30px; /* torna a imagem circular */
  width: 350px; /* ajuste o tamanho da imagem */
  height: 240px; /* ajuste o tamanho da imagem */
  overflow: hidden; /* esconde o excesso da imagem */
  border: 3px solid #fbff00; /* adiciona uma borda branca */
  box-shadow: 10 0 20px rgba(0, 0, 0, 0.2); /* adiciona uma sombra */
}
.foto-circular2 {
   display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  width: 50%;
 margin-left: 25%;
  border-radius: 30px; /* torna a imagem circular */
 
  height: 420px; /* ajuste o tamanho da imagem */
  overflow: hidden; /* esconde o excesso da imagem */
  border: 3px solid #fbff00; /* adiciona uma borda branca */
  box-shadow: 10 0 20px rgba(0, 0, 0, 0.2); /* adiciona uma sombra */
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-image: url('NAIM-15.jpg');
  background-size: 100%;
  background-position: center;
  background-repeat:repeat;
  background-image: url('/fotos/foodbackground.jpg');
  
}

main{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  gap: 20px;
  padding: 50px;
}

/* Menu principal */
.menu-container {
  position: relative;
}

.menu-button {
  position: fixed;
  top: 2%;
  left: 2%;
  height: 8%;
  cursor: pointer;
  animation: pulse 5s infinite ease-in-out;
}

.menu-options {
  display: none;
  position: fixed;
  top: 10%; 
  left: 5%;
  width: 100VH;
  max-height: 80vh; /* Limita a altura máxima a 80% da altura da viewport */
  overflow-y: auto; /* Habilita a barra de rolagem vertical quando necessário */
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 2%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000; 
}

.menu-options.visible {
  display: block;
  color: #b5f8b8;
}


.menu-options a {
  display: block;
  padding: 2%;
  font-size: 2vw;
  text-decoration: none;
  color: #b5f8b8;
}

.menu-options a:hover {
  background-color: #b6b16d;
}

/* Logo */
#logo {
  display: flex;
  margin-left: 45%;
  max-width: 15%;
  animation: pulse 5s infinite ease-in-out;
  cursor: pointer;
}

/* Rodapé fixo */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6%;
  background: #034b27;
  color: white;
  text-align: center;
  padding: 1%;
  z-index: 1000;
}

#foostertext {
  font-size: 12px;
  text-align: center;
  top: 0%;
}

#whatsapp {
  position: fixed;
  bottom: 10%;
  right: 2%;
  width: 60px;
  height: auto;
  animation: pulse 2s infinite ease-in-out;
  cursor: pointer;
  z-index: 1000;
}
#instagram {
  position: fixed;
  bottom: 25%;
  right: 2%;
  width: 60px;
  height: auto;
  animation: pulse 2s infinite ease-in-out;
  cursor: pointer;
  z-index: 1000;
}
#youtube {
  position: fixed;
  bottom: 15%;
  left: 2%;
  width: 60px;
  height: auto;
  animation: pulse 2s infinite ease-in-out;
  cursor: pointer;
  z-index: 1000;
}

/* Animação */
@keyframes pulse {
  0% {
    transform: scale(1);
    color: #f6fa03;
  }
  33% {
    transform: scale(1.1);
    color: #0af81e;
  }
  66% {
    transform: scale(1.1);
    color: #0184ff;
  }
  100% {
    transform: scale(1.1);
    color: #e74c3c;
  }
}
#popup {
  position:fixed;
  display: none;
  width: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  color: #333;
  font-size: 10px;
  text-align: center;
  align-items: center;
}

/* Contêiner principal */
.content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-top: 3%;
  margin-left: 10%;
  margin-right: 10%;
  text-align: center;
  overflow-y: visible;

}

/* Itens */
.item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #000;
  color: white;
  border-radius: 35px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 5px solid #ffcc00;
  box-shadow: #ffcc00 1px 0px 15px 5px;
  width: 100%;
  max-width: 600px;
 cursor: auto;
}

.container-item {
  display: flex;
  flex-direction: column;
  width: 98%;
  border-radius: 28px;
  border: 3px solid #fa0b02;
  text-align: center;
  font-size: 2vw;
}
.container-item a {
  text-decoration: none; /* Remove o sublinhado */
}

.content-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  width: 90%;
 margin-left: 5%;
  border-radius: 20px;
  border: 4px solid #ff5e00;
  background-color: hsl(23, 92%, 90%);
  text-align: center;
  font-size: 24px;

  color: #000;
  font-weight: bold;
  margin-top: 5%;

  margin-bottom: 5%;
  padding: 2%;

}

.content-row span {
  margin-right: 20px;
}
.content-row:hover {
  background-color: #ff8953;
   width: 96%;
 margin-left: 2%;
}

.input-config {
  width: 96%;
  border-radius: 20px;
  border: 4px solid #00cc66;
  background-color: #e0dfd0;
  margin-right: 10px;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.input-config:hover {
  background-color: #c5872b;
}

.content-select {
  width: 96%;
  border-radius: 20px;
  background-color: #00cc66;
  color: #000;
  font-weight: bold;
  font-size: 24px;
  padding: 5px;
text-align: center;
  align-self: center;
  margin-top: 5%;
  margin-bottom: 5%;
  cursor: pointer;
  border: 4px solid #fa0b02;
}

.content-select:hover {
  background-color: #c5872b;
}

.description {
  margin: 3%;
  font-size: 22px;
  text-align: justify;
  font-weight: 700;

}
.video {
 display: block;
  margin: 20% auto;
  width: 60%; /* Faz o vídeo preencher a largura do container */
  max-width: 100%;
  height: 570px; /* Ajusta a altura proporcional à largura */
  border-radius: 30px;
  object-fit: cover; /* Faz o conteúdo do vídeo se ajustar de forma elegante */
}
.iframe{
  max-width: 100%;
  border-radius: 30px;
  height: 750px; /* Ajusta a altura proporcional à largura */
}

.foto {
 
  width: 100%; /* Faz o vídeo preencher a largura do container */
  max-width: 100%;
  height: auto; /* Ajusta a altura proporcional à largura */
  border-radius: 30px;
  object-fit: cover; /* Faz o conteúdo do vídeo se ajustar de forma elegante */
}


#youtubegif {
  max-width: 100%;
  max-height: 200px;
}

.action-button {
  display: block;
  background-color: #ffc58f;
  border: 3px solid #ff6600;
  padding: 2%;
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0px 0px 10px rgb(255, 196, 1), 0px 0px 20px rgba(0, 0, 0, 0.4);
  animation: pulsar 2s infinite;
  transform: scale(1);
  transition: transform 0.5s ease-in-out;
  color: #000;
}

.action-button:hover {
  background-color: #f5f3ef;
  transform: scale(1.2);
}




#titulo{
  display: block;
  flex-direction: row;
  margin-left: 15%;
  margin-right: 15%;
  border-radius: 30px;
  background-color: rgb(0, 0, 0);
  text-align: center;
  font-size: 70px;
  font-weight: bold;
  color: #ff4800;
  border: #ff4800 6px solid;
}

.destaque1{
 margin: auto;
  display: inline-block;
  color:#00cc66;
  animation: expandir 5s infinite;
  font-size: 36px;
  text-align: center;
}
.destaque11{
 width: 100%;
  display: inline-block;
  color:#00cc66;
   animation: expandir 5s infinite;
  font-size: 36px;
  text-align: center;
}

.destaque2{
  color: #ff9900;
}

.destaque3{
  color:#e6e3da;
  font-weight: bold;
  font-size: 1.6em;
  background: rgba(0, 0, 0, 0.4);
}
.destaque4{
  color: #f0f1f5;
  font-size: 1.6em;
  animation: mudar-cor 20s infinite;
  display: block;
}

.destaque5 {
  display: block;
  width: 100%; /* ou uma largura específica */
  text-align: center; /* para centralizar o conteúdo */
  color: #ffcc00;
  animation: expandir 5s infinite;
  font-size:40px;
  text-align: center;
  align-items: center;
  text-shadow: 2px 2px 4px #ffcc00; /* adiciona uma sombra preta */
}

.destaque6 {
  width: 100%; /* ou uma largura específica */
  text-align: left; /* para centralizar o conteúdo */
  color: #ffffff;
  font-size: 1.4em;
 
}
#combodescricao{
  display: block;
  margin: 2% 2% 2% 2%;
  text-align: justify;
  font-size: 0.8em;
  color: #ff9900;
}
.pricecelular {
  display: flex;
  flex-direction: column;

  text-align: center;

  font-size: 0.8em; /* Ajuste geral dos textos destacados */
}
.titlecombo {
  display: block;
  margin: 2% 2% 2% 2%;
  text-align: center;
  font-size: 1.4em;
  color: #ffd000;
  animation: pulsar 2s infinite;
  transform: scale(1);
  transition: transform 0.5s ease-in-out;
}
.celular {
  font-size: 2em; /* Ajuste geral dos textos destacados */
}
.celular2 {
  font-size: 2em; /* Ajuste geral dos textos destacados */
}
.celular3 {
  font-size: 2em; /* Ajuste geral dos textos destacados */
}

.dedo {
  animation: expandir 2s infinite;
  font-size: 2em;
  text-align: center;
  animation-name: move-down;
  animation-duration: 2s;
  
}
@keyframes expandir {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes surgir {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes mudar-cor {
  0% {
    color: #ffffff; /* branco */
  }
  25% {
    color: #ff9900; /* laranja */
  }
  50% {
    color: #00cc66; /* verde */
  }
  75% {
    color: #ffcc00; /* amarelo */
  }
  100% {
    color: #ffffff; /* branco */
  }
}

.pulsar {
  animation: pulsar 2s infinite;
}

@keyframes pulsar {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes move-down {
  0% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(30%);
  }
  100% {
    transform: translateY(0);
  }
}
.interessados{
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
  background-color: rgba(231, 243, 237, 0.205);
  border-radius: 40px;
  width: 90%;
  align-items: center;
  text-align: center;
  margin: 5% 5% 5% 5%;

}
#interessadoscombo3, #interessadoscombo2, #interessadoscombo1{
  display: inline-block;
}
.tremida {
  animation: tremida 0.5s infinite;
}

@keyframes tremida {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-2px);
  }
  40% {
    transform: translateX(2px);
  }
  60% {
    transform: translateX(-2px);
  }
  80% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}

.info-block {
  display: block;
  width: 100%;
  margin: 10px auto;
  padding: 15px;
  background-color: #fff8e1;
  border: 4px solid #ffa500;
  border-radius: 20px;
  font-size: 16px;
  color: #000;
  text-align: justify;
  line-height: 1.6;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}





/* Estilo específico para o vídeo horizontal (COMO INSTALAR) */
#iframeyt, 
.video-horizontal {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; /* Proporção padrão para vídeos */
 
}

/* Container especial para vídeo horizontal */
.video-container-horizontal {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  margin: 20px 0;
  border: 5px solid #fbff00;
  border-radius: 20px;
  overflow: hidden;
}

.video-container-horizontal iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}





@media screen and (max-width: 768px) {
  body {
    font-size: 12px;
  }
   .video-horizontal {
    border-width: 3px;
    border-radius: 15px;
  }
  
  .video-container-horizontal {
    border-width: 3px;
    margin: 10px 0;
  }
  .iframe{
  max-width: 100%;
  border-radius: 30px;
  height: 350px;
}
.video {
 
  width: 100%; /* Faz o vídeo preencher a largura do container */
  max-width: 100%;
  height: 320px; /* Ajusta a altura proporcional à largura */
  border-radius: 30px;
  object-fit: cover; /* Faz o conteúdo do vídeo se ajustar de forma elegante */
}
.info-block {
  width: 100%;
  font-size: 12px;
  padding: 12px;
  line-height: 1.6;
  text-align: left;
  border-radius: 16px;
  box-shadow: none;
}

  #logo {
    margin-left: 35%;
    max-width: 20%;
  }

  #titulo {
    font-size: 30px;
    padding: 10px;
  }

  .destaque1, .destaque11 {
    font-size: 16px;
  }

  .destaque3, .destaque4, .destaque5, .destaque6 {
    font-size: 18px;
  }

  .dedo,
  .celular,
  .celular2,
  .celular3,
  #pgto1,
  #pgto2,
  #pgto3 {
    font-size: 16px;
  }

  .menu-options {
    width: 90vw;
  }

  .menu-options a {
    font-size: 4.5vw;
  }

  .description {
    font-size: 16px;
    text-align: center;
    padding: 10px;
  }

  .item {
    width: 95%;
    padding: 10px;
  }

  .container-item {
    width: 100%;
    font-size: 16px;
  }

  .content-row {
    flex-direction: column;
    font-size: 16px;
    padding: 5%;
    width: 90%;
    margin: 10px auto;
  }

  .content-row span, p {
    font-size: 14px;
    margin-right: 0;
  }

  .action-button {
    font-size: 12px;
    padding: 10px;
    width: 100%;
  }

 
  .foto {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
  }



  .pricecelular {
    font-size: 1.2em;
    text-align: center;
  }

  .titlecombo {
    font-size: 1.5em;
    text-align: center;
  }

  .interessados {
    font-size: 14px;
    border-radius: 20px;
    width: 90%;
  }

  #popup {
    top: 50%;
    left: 50%;
    width: 85%;
    padding: 15px;
    font-size: 14px;
  }

  .plano-box {
    width: 100%;
    margin: 10px auto;
    padding: 15px;
    font-size: 15px;
  }

  .plano-titulo {
    font-size: 20px;
    text-align: center;
  }

  footer {
    font-size: 10px;
    padding: 10px;
  }

  span {
    font-size: 14px;
  }
  .foto-circular {
  
  width:120px; /* ajuste o tamanho da imagem */
  height: auto; /* ajuste o tamanho da imagem */
 
}
.foto-circular2 {

  width:90%; /* ajuste o tamanho da imagem */
  margin-left: 5%;
  height: auto; /* ajuste o tamanho da imagem */
  
}

}

@media screen and (max-width: 768px) {
  }

.cta-flutuante {
  display: block;
  position: fixed;
  bottom: 40px;
  left: 5%;
  width: 90%;
  background-color: #ff6600;
  color: white;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  padding: 15px;
  border-radius: 30px;
  z-index: 9999;
  animation: pulsar 2s infinite;
  box-shadow: 0 0 15px #ff6600;
  text-decoration: none;
}