* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #1c1c1c;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* LOGO */
.logo {
  width: 180px;
  margin-top: 2rem;
}

/* Ícone menu hamburger */
.hamburger {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100vh;
  background: linear-gradient(to right, #f38a12, #f7a219, #f3b712, #f8c53a);
  padding-top: 60px;
  transition: left 0.3s ease;
  box-shadow: 2px 0 5px rgba(0,0,0,0.5);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.sidebar.open {
  left: 0;
}

.home_board {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 20px;
}

.nav {
  color: #eee;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 0;
  border-left: 4px solid transparent;
  transition: border-color 0.2s, background-color 0.2s;
}

.nav:hover {
  background-color: #ffffff;
  border-left: 4px solid #f8c53a;
  color: #000000;
}

/* Conteúdo principal */
.main-content {
  text-align: center;
  margin-top: 2rem;
  z-index: 10;
}

/* Título */
.title h1 {
  color: #ffffff;
  font-size: 6rem;
  font-family: 'Times New Roman', Times, serif;
}

.title h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-top: 1rem;
  font-family: 'Times New Roman', Times, serif;
}

.botao {
  background-color: white;
  color: black;
  padding: 1rem 2rem;
  margin-top: 6rem;
  border-radius: 20px;
  display: inline-block;
  font-size: 1.8rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.botao span {
  color: #f38a12;
  font-weight: bold;
}

/* Faixa inferior laranja */
.faixa {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to right, #f38a12, #f7a219, #f7ce19);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
}


