* {
  margin: 0;
  padding: 0;
}

:root {
  --bg-body: #d3d3d3;
  --bg-menu: #ffffff;
  --color-text: #000;

}

.black-theme html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-body);
}

/* HEADER */
header {
  box-shadow: 0 0px 5px 5px rgba(0, 0, 0, 0.178);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-menu);
  padding: 10px 20px;
}

/* LOGO */
.logo {
  height: 40px;
}

/* MENU */
.menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 25px;
  font-family: "Pixelify Sans", sans-serif;
  transition: transform 0.2s ease;
}

.menu a:hover {
  transform: scale(1.05);
}

/* HERO */
.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 10px 15px 18px rgba(0, 0, 0, 0.178);
  border-bottom: 1px solid rgba(0, 0, 0, 0.692);
}

.hero {
  box-shadow: 0px 10px 20px 18px rgba(0, 0, 0, 0.178);
  z-index: 10;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
}


/* HERO TEXT */
.hero-text {
  position: absolute;
  top: 70%;
  left: 2%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  font-family: "Jersey 15", sans-serif;
}

.hero-title {
  font-size: 89px;
  color: #ffffff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 91px;
  color: #6525a1;
  transform: translateY(-15%);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.container {
  height: auto;
  display: flex;
  padding: 30px;
  gap: 30px;
  justify-content: space-evenly;
  border: 5px solid #000;
  border-radius: 10px;
  margin: 50px;
  margin-bottom: 10px;
  position: relative;
  font-size: 20px;
  font-family: "Jersey 15", sans-serif;
  z-index: 1;

}

.label {
  position: absolute;
  font-family: "Jersey 15", sans-serif;
  bottom: 140px;
  left: 100px;
  background-color: #d3d3d3;
  border-radius: 20px;
  font-size: 50px;
  font-weight: lighter;
  padding: 0px 10px;
  z-index: 2;
}

.label2 {
  position: absolute;
  font-family: "Jersey 15", sans-serif;

  left: 100px;
  background-color: #d3d3d3;
  border-radius: 20px;
  font-size: 50px;
  font-weight: lighter;
  padding: 0px 10px;
  z-index: 2;
}

.container2 {
  display: grid;
  top: 25px;
  padding: 30px;
  gap: 30px;
  justify-content: space-evenly;
  border: 5px solid #000000;
  border-radius: 10px;
  margin: 50px;
  margin-bottom: 100px;
  position: relative;
  font-size: 40px;
  font-family: "Jersey 15", sans-serif;
  z-index: 1;
  width: fit-content;

}
.container3 {
  align-items: center;
  display: grid;
  top: 25px;
  padding: 30px;
  gap: 30px;
  justify-content: space-evenly;
  border: 5px solid #000000;
  border-radius: 10px;
  margin: 0 auto;
  margin-bottom: 100px;
  font-size: 40px;
  font-family: "Jersey 15", sans-serif;
  z-index: 1;
  width: fit-content;

}
.botao {
  width: fit-content;
  padding: 19px;
  display: grid;
  font-family: "Jersey 15", sans-serif;
  z-index: 1;
  gap: 30px;
  justify-content: space-evenly;
  border: 5px solid #000000;
  background-color: #d3d3d3;
  justify-self: center;
  border-radius: 10px;
  font-size: 40px;
  margin: 50px;
  position: relative;
}

ul{
  list-style-type: disc;
  margin-left: 25px;
  font-size: 20px;
}

ul li{
  margin-bottom: 1px;
}
  .galeria {
        display:grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        justify-content: center;
        padding-left: 10px;
      }
 
      .imagem-container {    
          width: 350px;
          height: 380px;
          overflow: hidden;
          border-radius: 10px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          background-color: aliceblue;
          transition: transform 0.3s ease;
          display: flex;
          flex-direction: column;
      }
 
    
      .imagem-container img {
          width: 100%;
          height: 250px;
          object-fit: cover;
          display: block;
      }
 
      .info{
        font-size: 20px;
      }
 
      .info h3{ 
        font-size: 30px;
        color:rgb(47, 53, 53)
      }
 