* {
  margin: 0;
  padding: 0;
}

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

}
/* era pra fazer os temas mas n deu tempo :p*/

html {
  scroll-behavior: smooth;
}

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


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 {
  height: 50px;
}
.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);
}

.info {
  font-family: "Jersey 15", sans-serif;
}

/* HERO TEXT */
.hero-text {
  position: absolute;
  top: 85%;
  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: #583ea0;
  transform: translateY(-15%);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

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

}

.container {
  position: relative;

}

.code {
  font-size: 30px;
  background-color: #66666636;
  padding: 10px;
  border-radius: 20px;
  font-family: "Jersey 15", sans-serif;
   word-wrap: break-word;      
  overflow-wrap: break-word;  
  white-space: normal;        
}

.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;
}

.label {
  position: absolute;
  top: -25px;

  left: 20px;

  background-color: #d3d3d3;
  border-radius: 20px;
  font-size: 40px;
  font-weight: lighter;
  padding: 0px 10px;
}

.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: auto;

}

.image-container {
  width: 300px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3 ease;
  display: flex;
  flex-direction: column;

}

.image-container:hover {
  transform: scale(1.05);
}

.image-container img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  display: block;
}

.info {
  padding: 10px 15px;
}

.info h3 {
  margin: 10px 0 5px;
  font-size: 30px;
  color: #333;
}

.info p {
  margin: 0;
  font-size: 25px;
  color: #666;
}

@media (max-width: 1024px) {
  .logo {
    height: 40px;
  }

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

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

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

  .menu a {
    font-size: 18px;
  }

  .image-container {
  width: 225px;

}


.image-container img {
  width: 225px;
  height: 300px;
}

.info {
  padding: 10px 15px;
}

.info h3 {
  font-size: 20px;
  color: #333;
}

.info p {

  font-size: 15px;

}

.container {
  margin: 50px;
  margin-bottom: 100px;
}

.code {
  font-size: 20px;
}
}









@media (max-width: 768px) {
  .logo {
    height: 35px;
  }

  .hero-text {
  top: 80%;

  }

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

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

  .menu a {
    font-size: 16px;
  }

  .image-container {
  width: 170px;

}


.image-container img {
  width: 170px;
  height: 200px;
}

.info {
  padding: 10px 15px;
}

.info h3 {
  font-size: 18px;
  color: #333;
}

.info p {

  font-size: 15px;

}

.container {
  margin: 40px;
  margin-bottom: 80px;
}

.code {
  font-size: 20px;
  line-height: 15px;
}
p{
  font-size: 30px;
}
.label{
  font-size: 35px;
    top: -18px;


}
}

@media (max-width:425px) {

  .hero-text {

    top: 78%;
    left: 2%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    font-family: "Jersey 15", sans-serif;
  }

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

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

  .logo {
    height: 25px;
  }

  .menu a {
    font-size: 10px;

  }
  
    .image-container {
  width: 100px;

}


.image-container img {
  width: 125px;
  height: 125px;
}

.info {
  padding: 10px 15px;
}

.info h3 {
  font-size: 14px;
  color: #333;
}

.info p {

  font-size: 11px;

}

.container {
  margin: 40px;
  margin-bottom: 80px;
    line-height: 20px;
      border: 2px solid #000;
      
}

.code {
  font-size: 20px;
  line-height: 15px;

}
p{
  font-size: 20px;

}
.label{
  font-size: 15px;
    top: -18px;


}

}