@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

html {
  scroll-behavior: smooth;
}

:root {
   --distExtra: 0px;
   overflow-x: hidden;
}


.crypto-hero-button.IrCardapio {
  display: none
}

body{
   min-height: 100vh; /* permite rolar até o fim: corpo cresce com o conteúdo */
   margin: 0;
   background-color: #000000;
   font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

   display: flex;
   flex-flow: column nowrap;
   justify-content: flex-start;
   align-items: center;
 }
  
  /* barra de progresso do scroll (timeline via scroll()) */

  .LandingHome {
    width: 100%;
    min-height: 900px;   /* garante que não encolhe */    /* não encolhe dentro do flex do body */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color:rgb(0, 0, 0);
  }
  .LandingHome >img{
    position: absolute;
    width: 70%;
    top: 10px;
    max-width: 1000px;
  }
  
  .conteinerHome {
    font-size: xx-large;
    z-index: 2;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    margin-top: 250px;
  }
  .conteinerHome > h1 {
    width: 55%;
    font-weight: 900;
    text-align: center;
  }

  .conteinerHome > button {
    background-color: rgba(0, 0, 0, 0.16);
    font-weight: 100;
    color: white;
    border-radius: 40px;
    font-size: 25px;
    padding: 10px 25px;
    border: 1px solid white;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  .conteinerHome > button:hover {
    cursor: pointer;
  }
  .conteinerHome > button > img {
    height: 35px;
  }

  /* Div que desaparece com o scroll */
  .scroll-escondido {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  /* Div que aparece com o scroll (fica escondida no topo) */
  .scroll-visivel {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .scroll-visivel.inicial {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  
  
  