@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://www.transparenttextures.com/patterns/black-thread-light.png");
  opacity: 0.2; /* controla transparência */
  z-index: -1;
  pointer-events: none; /* não atrapalha cliques */
}
.box-404 {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;     
    min-height: 100vh;     
}

.forbimage{
    display: block;
    margin: 0 auto;
    width: 21.875rem;
    height: 21.875rem;
    aspect-ratio: 1/1;
    margin-bottom: 20px;
}

.forbidescr{
    align-self: stretch;
    color: #000;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.instagram{ 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cinza{
    color: #6f7377;
}

.form-control{
    border: none;
    background-color: #e2e2e2;
}

.input-group-text{
    background-color: #ff1818;
    border: none;
    color: white;
}

.text-red{
    color: #ff1818;
}

.btn-danger{
    background-color: #ff1818;
}

.text-danger{
    color: #ff1818;
}

/* Menu */
.title-menu{
  font-weight: 300;
}
.title-menu strong{
  font-weight: 700;
  color: #ff1818;
}
.menu{
  padding: 10px;
}
.menu a {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #181818;
  margin-bottom: 10px;
  transition: all 0.5s ease;
}

.menu a i {
  margin-right: 10px;
  font-size: 18px;
}

.menu a:hover, 
.menu a.active {
  background: #ff1e1e;
  color: #fff;
}

.barRed{
  width: 100%;
  height: 2px;
  background-color: #ff1818;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1030; /* acima do navbar */
}
