@font-face {
    font-family: "Nohemi";
    src: url(fonts/Nohemi-Bold-BF6438cc5812315.otf);
}
@font-face {
    font-family: "Nohemi";
    src: url(fonts/Nohemi-Light-BF6438cc583f70b.otf);
}
@font-face {
    font-family: "Nohemi";
    src: url(fonts/Nohemi-Medium-BF6438cc581a509.otf);
}
@font-face {
    font-family: "Nohemi";
    src: url(fonts/Nohemi-Regular-BF6438cc58b98fc.otf);
}
@font-face {
    font-family: "Nohemi";
    src: url(fonts/Nohemi-SemiBold-BF6438cc588b5e5.otf);
}




*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #010101;
    color: white;
    overflow-x: hidden;
}

a{
  text-decoration: none;
  color: inherit;
}

header{
   
  
   display: flex;
   padding: 3%;
   justify-content: space-between;
  position: absolute;
    width: 100%;
    

}
  .logo {
    width: 80px;
}




button{
    display: flex;
    align-items: center;
    padding: 18px 22px;
    background-color: #ffffff09;
    border: none;
    outline: none;
    border-radius: 100px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    gap: 16px;
    font-size: 16px;
   
    font-weight: 400;
    background-color: rgba(12, 12, 12, 0.007);
    opacity: .8;
    transition: ease-in-out .4s;
   
}
button:hover{
      background-color: rgb(0, 0, 0);
    opacity: 1;
}

.secao-hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
      background: 
    radial-gradient(circle at center, transparent 0%, #000000 100%),
    url(imagens/BGHERO.webp);
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
   
    h1{
        font-family: "Nohemi";
        font-weight: 500;
        font-size:7vw;
        text-align: center;
        width: 74%;
        line-height: 110%;
        margin-top: 8%;
        
    }
}

.conteudoSecundario{
    display: flex;
    align-items: center;
    justify-content: space-between;
   padding: 2%;

    h3{
        font-family: "Nohemi", sans-serif;
        font-weight: 400;
        width: 35%;
        line-height: 146%;
        font-size: 25px;
    }
}

.circuloSaberMais{
      width: 15%;
        
      
      display: flex;
  align-items: center;
  justify-content: center;
  
}



.elipse-saberMais{
   width: 100%;
  height: 100%;
  animation: circuloRodando 6s infinite linear ;
}
@keyframes circuloRodando {
    100%{
        transform: rotate(360deg);
    }
}

.seta-saberMais{
  position: absolute;
  width: 2.5%;
  height: 2.5%;

}

.secao-servicos{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 4%;
}

.conteudoServicos{
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-family: "Nohemi", sans-serif;
    align-items: center;

    h2{
        font-size: 5vw;
        width: 60%;
        font-weight: 500;
    }

    h3{
        font-size: 1.8vw;
        width: 25%;
        line-height: 120%;
        font-weight: 400;
    }
}

.cards{
    font-family: "Nohemi", sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 3.5%;
    cursor: pointer;
    gap: 2%;
    
}
.card{
    width: 32%;
    padding: 32px 20px;
    transition: all .6s;
    border-radius: 20px;
    margin-top: 40px;    

    img{
        outline: solid 1px #15FF9A;
        padding: 4%;
        border-radius: 20px;
        width: 100px;
    }
   
    
    h3{
        font-weight: 500;
        font-size: 40px;
        width: 100%;
        margin: 26px 0px 10px;
    }
    p{
        font-size: 22px;
        font-weight: 300;
        width: 100%;
        line-height: 120%;
    }
}

.card:hover{
    background-color: rgba(255, 255, 255, 0.959);
    color: black;
    img{
        background-color: black;
    }
    
}

.conteudoResultados{
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-family: "Nohemi", sans-serif;
    align-items: center;
    padding: 4%;

    h2{
        font-size: 5vw;
        width: 60%;
        font-weight: 500;
    }

    h3{
        font-size: 1.8vw;
        width: 30%;
        line-height: 120%;
        font-weight: 400;
    }
}
.faixa-resultados {
    display: flex;
    font-family: "Nohemi";
    background-color: rgb(255, 254, 247);
    color: #000000;
    padding: 1% 2%;
    overflow: hidden;
    
    .faixaTrack{
        display: flex;
         animation: faixa-infinito 30s infinite linear;
    }

    .resultado {
        display: flex;
        align-items: center;
        gap: 30px;
        padding: .8% .8%;
       
        

        h3 {
            font-size: 6vw;
            font-weight: 900;
            line-height: 1;
            margin: 0;
            white-space: nowrap;
        }

        p {
            font-size: 1.5vw;
            line-height: 1.3;
            width: 15rem;        /* ← controla largura em relação ao próprio texto */
            margin: 0;
            padding-bottom: 0.6vw;
            
        }
    }
}

@keyframes faixa-infinito {
    100%{
        transform: translateX(-100%);
    }
}

.secao-sobreNos{
    font-family: "Nohemi", sans-serif;
     padding: 3%;
     margin-top: 100px;

     h2{
       
        font-size: 4vw;
        font-weight: 400;
        line-height: 140%;
        padding-bottom: 100px;
     }

    .videoSobreNos {
    position: relative;
    width: 95%;
    padding-bottom: 56.25%; /* ← mantém proporção 16:9 */
    border-radius: 16px;
    overflow: hidden;
     margin: 0 auto;

    iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 95%;
        border-radius: 16px;
    }
}
    
}

.rodapé{
   
    font-family: "Nohemi", sans-serif;
    background-image: url(imagens/bgFooter.webp);
    width: 100%;
    background-size: cover;
    background-position: center;
    
.conteudoRodape{
     display: flex;
    flex-direction: column;
    align-items: center;
   
}
    h2{
        width: 60%;
         margin-top: 6%;
        font-size: 5vw;
        text-align: center;
        font-weight: 500;
    }

    .botoesRodape{
        display: flex;
        gap: 16px;
        margin-top: 1%;
    }

    .textoInfinito{
        display: flex;
        align-items: center;
        justify-content: center;
        width: max-content;
        margin-top: 200px;
        
        h3{
            font-size: 14vw;
            font-family: "Nohemi", sans-serif;
            mix-blend-mode: color-dodge;
            color: rgb(87, 87, 87);
            animation: textoInfinito 6s infinite linear;
            padding-left: 8vw;
        }
    }
}

@keyframes  textoInfinito {
    100%{
        transform: translateX(-100%);
    }
}

.backgroundSecoes{
    background-image: url(imagens/BGMEIO.webp);
    background-position: center center;
    background-size: cover;
}



/* =============================================
   MEDIA QUERIES — i9 Web
   Baseado no design mobile (430px) do Figma
   ============================================= */

@media (max-width: 768px) {

  /* === HEADER === */
  header {
    justify-content: space-between;
    padding: 16px 20px;
    background-color: rgba(1, 1, 1, 0.85);
    backdrop-filter: blur(8px);
  }

  .logo {
    width: 60px;
  }

  button {
    padding: 12px 16px;
    font-size: 14px;
    gap: 10px;
  }

  /* === HERO === */
  .secao-hero {
    height: 100svh;
    padding: 0 20px;
  }

  .secao-hero h1 {
    font-size: 10vw;
    width: 95%;
    margin-top: 20%;
    text-align: center;
  }

  .conteudoSecundario {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 0 0;
    gap: 16px;
  }

  .conteudoSecundario h3 {
    font-size: 14px;
    width: 58%;
    line-height: 140%;
  }

  .circuloSaberMais {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
  }

  .seta-saberMais {
    width: 22px;
    height: 22px;
  }

  /* === SERVIÇOS === */
  .secao-servicos {
    padding: 40px 20px;
  }

  .conteudoServicos {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .conteudoServicos h2 {
    font-size: 9vw;
    width: 100%;
  }

  .conteudoServicos h3 {
    font-size: 4vw;
    width: 100%;
  }

  /* === CARDS === */
  .cards {
    padding: 10px 0;
    gap: 16px;
  }

  .card {
    width: 47%;
    padding: 20px 16px;
    margin-top: 0;
    border-radius: 16px;
  }

  .card img {
    width: 56px;
    padding: 10px;
    border-radius: 12px;
  }

  .card h3 {
    font-size: 18px;
    margin: 16px 0 8px;
  }

  .card p {
    font-size: 13px;
    line-height: 130%;
  }

  /* === FAIXA RESULTADOS === */
  .faixa-resultados .resultado h3 {
    font-size: 9vw;
  }

  .faixa-resultados .resultado p {
    font-size: 3vw;
    width: 10rem;
  }

  /* === CONTEUDO RESULTADOS === */
  .conteudoResultados {
    flex-direction: column;
    padding: 24px 20px;
    margin: 40px 0 0 0;
    gap: 12px;
  }

  .conteudoResultados h2 {
    font-size: 9vw;
    width: 100%;
    text-align: left;
  }

  .conteudoResultados h3 {
    font-size: 4vw;
    width: 100%;
  }

  /* === SOBRE NÓS === */
  .secao-sobreNos {
    padding: 24px 20px;
    margin-top: 40px;
  }

  .secao-sobreNos h2 {
    font-size: 6vw;
    line-height: 150%;
  }

  /* === FOOTER === */
  .rodapé h2 {
    font-size: 8vw;
    width: 90%;
    margin-top: 10%;
  }

  .botoesRodape {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
  }

  .textoInfinito {
    margin-top: 60px;
  }

  .textoInfinito h3 {
    font-size: 18vw;
  }
}

/* =============================================
   MOBILE PEQUENO — 430px e abaixo
   ============================================= */

@media (max-width: 430px) {
    
  /* === HEADER === */
  header {
    padding: 3%;
 
  }

  button {
    padding: 10px 14px;
    font-size: 13px;
    gap: 8px;
  }

  /* === HERO === */
  .secao-hero h1 {
    font-size: 10vw;
    width: 100%;
    margin-top: 25%;
  }

  .conteudoSecundario {
    padding: 16px 0 0 0;
  }

  .conteudoSecundario h3 {
    font-size: 13px;
    width: 55%;
  }

  .circuloSaberMais {
    width: 100px;
    height: 100px;
  }

  .seta-saberMais {
    width: 18px;
    height: 18px;
  }

  /* === SERVIÇOS === */
  .secao-servicos {
    padding: 32px 16px;
  }

  .conteudoServicos h2 {
    font-size: 9vw;
    align-items: center;
    text-align: center;
  }

  .conteudoServicos h3 {
    font-size: 4.5vw;
    align-items: center;
    text-align: center;
  }

  /* === CARDS (2 colunas no mobile, igual ao Figma) === */
  .cards {
    gap: 12px;
  }

  .card {
    width: 47%;
    padding: 16px 12px;
  }

  .card img {
    width: 48px;
    padding: 8px;
    border-radius: 10px;
  }

  .card h3 {
    font-size: 20px;
    margin: 12px 0 6px;
  }

  .card p {
    font-size: 12px;
  }

  /* === RESULTADOS === */
  .conteudoResultados {
    padding: 20px 16px;
  
  }

  .conteudoResultados h2 {
    font-size: 8vw;
      align-items: center;
    text-align: center;
  }

  .conteudoResultados h3 {
    font-size: 4vw;
      align-items: center;
    text-align: center;
  }

  /* === SOBRE NÓS === */
  .secao-sobreNos {
    padding: 20px 16px;
    margin-top: 32px;
  }

  .secao-sobreNos h2 {
    font-size: 7vw;
  }

  /* === FOOTER === */
  .rodapé h2 {
    font-size: 9vw;
    width: 95%;
  }

  .botoesRodape {
    width: 100%;
    padding: 0 16px;
  }

  .botoesRodape button,
  .botoesRodape .botaoInstagram {
    width: 100%;
    justify-content: center;
  }

  .textoInfinito {
    margin-top: 40px;
  }

  .textoInfinito h3 {
    font-size: 20vw;
  }

   .botoesRodape {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 16px;
  }

  .botoesRodape button {
    width: auto;
    flex: 1;
  }


}

@media (max-width: 430px) {
   .secao-hero {
    
    padding-top: 100px;
    height: auto;
    
    padding-bottom: 100px;
  }

  .secao-hero h1 {
    font-size: 9vw;
    width: 95%;
    margin-top: 40px;
  }

  .conteudoSecundario {
    margin-top: 20px;
    padding: 0;
  }
}