* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none;
    list-style: none;
    font-family: "Poppins", sans-serif;
  }

  input[type="number"]::-webkit-outer-spin-button,
  input[type="number"]::-webkit-inner-spin-button {
  cursor: pointer;
}
  
  :root {
    --white: #fff;
    --azul-400: #00ADFF;
    --azul-500: #461BFF;
    --azul-800: #2D1AB4;
    --verde-500: #00D896;
    --cinza-100: #f5f5f5;
    --cinza-200: #EEEEEE;
    --cinza-300: #8d8d99;
    --violet: #e2d8fd;
    --dark-blue: #16044a;
    --gray1: #e1e1e1;
    --gray2: #6a6a6a;
    --purple-400: #AA93FD;
    --purple-700: #312251;
    --purple-800: #341954;
    --red-700:#C70101;
    --primary_color:#461BFF;
    --secundary_color:#fff;
    --primary_variation:#2D1AB4;
    --primary_variation_two: #eeeeee;

  }
  
  html {
    width: 100vw;
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  html::-webkit-scrollbar {
    width: 5px;
    height: 10px; /* A altura só é vista quando a rolagem é horizontal */
  }

  html::-webkit-scrollbar-track {
    background: var(--white);
    padding: 2px;
  }

  html::-webkit-scrollbar-thumb {
    background-color: var(--azul-800);
  }
  
  body {
    width: 100%;
    min-width: 350px;
    min-height: 100vh;
  }
  
  /*ANIMAÇOES*/
  
  @keyframes surgirDaDireita {
    from {
      opacity: 0;
      translate: 15vw 0;
    }
  
    to {
      opacity: 1;
      translate: 0 0;
    }
  }
  
  @keyframes surgirDaEsquerda {
    from {
      opacity: 0;
      translate: -15vw 0;
    }
  
    to {
      opacity: 1;
      translate: 0 0;
    }
  }

  @keyframes sumirParaEsquerda {
    from {
      opacity: 1;
      translate: 0 0;
    }
    to {
      opacity: 0;
      translate: -15vw 0;
    }
  }

  @keyframes sumirParaDireita {
    from {
      opacity: 1;
      translate: 0 0;
    }
    to {
      opacity: 0;
      translate: 15vw 0;
    }
  }
  
  @keyframes revelar {
    from {
      opacity: 0;
      clip-path: inset(45% 20% 45% 20%);
    }
  
    to {
      opacity: 1;
      clip-path: inset(0% 0% 0% 0%);
    }
  }
  
  @keyframes slide-in-top {
    0% {
      transform: translateY(-50px);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes animateWave {
    0%{
      background-position-x: 1000px;
    }
    100%{
      background-position-x: 0px;
    }
    
  }

  @keyframes animateWave_2 {
    0%{
      background-position-x: 0px;
    }
    100%{
      background-position-x: 1000px;
    }
    
  }
  
  /* body * {border: 1px solid tomato;} */
  
  #page {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
  }

    /*FOOTER COMPONENTE CSS*/

    .footerContainer{
      width: 100%;
      position: relative;
      margin-top: 2rem;
    }
  
    footer{
      position: relative;
      width: 100%;
      min-height: 100px;
      background: var(--azul-500);
      padding: 20px 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
  
    footer .media-social{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      margin: 10px 0;
    }
  
    footer .media-social li a{
      font-size: 2rem;
      color: white;
      transition: 0.5s;
      margin: 0 10px;
      display: inline-block;
    }
  
    footer .media-social li a:hover{
      transform: translateY(-10px);
    }
  
    footer .menuFooter {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    footer .menuFooter li a{
      font-size: 1.2rem;
      color: white;
      transition: 0.5s;
      margin: 0 10px;
      display: inline-block;
      opacity: 0.75;
    }
  
    footer .menuFooter li a:hover{
      opacity: 1;
    }
  
    .direitos{
      color: var(--white);
      margin-top: 10px;
    }

    .band{
      width: 100%;
      height: 100px;
      background-color: var(--purple-400);
      display: block;
      left: 0;
      bottom: 80px;
      position: absolute;
      z-index: -999;
    }

    
    .overlay-carrinho{
      width: 100vw;
      height: 100vh;
      position: fixed;
      background: rgba(0, 0, 0, 0.8);
      left: 0;
      top: 0;
      transition: all 0.3s;
      opacity: 0;
      transition: all .5s ;
      pointer-events: none;
      z-index: 1000;
      overflow: hidden;
    }

    /*CSS MULTIRESOLUÇÃO*/

    /*1° HEADER DE NAVEGAÇÃO*/
    .container-header {
      width: 100%;
      height: min-content;
      background-color: var(--white);
      position: fixed;
      z-index: 10000;
      transition: background 0.3s ease-in-out;
      background-color: var(--purple-400);
    }

    .container-header header {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: var(--white);
      box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
      position: fixed;
      z-index: 10000;
    }
    #iconeSacola{
      cursor: pointer;
    }
    