* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0b0b10;
  color: #fff;
}

header {
  background: #050507;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ff003c;
}

header h1 {
  color: #ff003c;
  font-size: 24px;
  letter-spacing: 1px;
}

nav a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #ff003c;
}


.logo {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align:center;

  background-image: url(imagens/foguete.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}


.logo img {
  width: 80%;
}

.logo h2 {
  font-size: 42px;
  margin-bottom: 12px;
  color: #bfbfbf;
}

.logo p {
  font-size: 22px;
  margin-bottom: 30px;
  color: #bfbfbf;
}

.banner {
  background: rgba(0, 0, 0, 0.0);
  padding: 40px 60px;
  border: 12px;
}

.btn {
  background: #ff003c;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.btn:hover {
  background: #ff335f;
}

.sessão {
  padding: 40px 40px; 
}

.sessão h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #ff003c; 
}

.produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.produto {
  background: #050507;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  border: 1px solid #1f1f25;
  transition: 0.3s;
}

.produto:hover {
  transform: translateY(-6px);
  border-color: #ff003c;
}

.produto img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.produto h3 {
  margin-bottom: 8px;
}

.produto p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #bfbfbf;
}

.produto span {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: bold;
  color: #ff003c;
}

.sobre-nos {
  max-width: 900px;
  margin: auto;
  line-height: 1.7;
  font-size: 16px;
  color: #ddd;
}

.sobre-nos h3 {
  color: #ff003c;
  margin-top: 20px;
}

.sobre-nos ul {
  margin-left: 20px;
  margin-top: 10px;
}

.footer {
  height: 250px;
  background-image: url("imagens/rodape.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-overlay {
  background: rgba(0,0,0,0.0);
  padding: 20px 40px;
  border-radius: 10px;
}

.footer h2 {
  color: #050507;
  font-size: 20px;
}
