/**
 * ESTILOS BASE
 */

/* FONTES PERSONALIZADAS */
@font-face {
    font-family: "Russo One";
    src: url("../fonts/Russo_One.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Roboto-Black";
    src: url("../fonts/Roboto-Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: "CoolveticaRg";
    src: url("../fonts/Coolvetica_Rg.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Haas";
    src: url("../fonts/NHaasGroteskDSPro-25Th.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Formula";
    src: url("../fonts/Formula1.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Blacksword";
    src: url("../fonts/Blacksword.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
  }

/**
 * FONTES
 */
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
  
  /* RESET E ESTILOS GLOBAIS */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    background-color: #111;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Personalização da barra de rolagem */
  body::-webkit-scrollbar {
    width: 10px;
  }
  
  body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  body::-webkit-scrollbar-thumb {
    background: #e6b800;
    border-radius: 10px;
  }
  
  body::-webkit-scrollbar-thumb:hover {
    background: #d39e00;
  }
  
  /* Garante que todos os elementos com scroll tenham comportamento suave */
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }