@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&display=swap');

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cabin", sans-serif;
}
html, body {
  height: 100%;
}


/* Faz o main ocupar o espaço restante */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centraliza o aviso em construção */
  align-items: center;
  padding: 20px;
}

body {
  background: linear-gradient(135deg, #0a0a1a, #1c1c3c);
  color: #f4f4f9;
  text-align: center;
  min-height: 100vh;
  padding-top: 95px; /* espaço pro header fixo */
}

/* Cabeçalho */
header {
  background: linear-gradient(90deg, #0059ffc0, #5f95c198);
  color: white;
  padding: 10px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
}

header img {
  height: 80px;
  margin-right: 10px;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00AEEF;
}

/* Botão hambúrguer */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Conteúdo */
.sobreProdutos {
  padding: 115px 20% 50px 20%;
  color: whitesmoke;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0.9;
}

.sobreProdutos h1,
.sobreProdutos p {
  margin: 10px 0;
}

.sobreProdutos img {
  width: 90%;
  max-width: 300px;
  border-radius: 10px;
  margin-top: 20px;
}

/* Footer */
footer {
  background: linear-gradient(90deg, #004080, #8A2BE2);
  color: white;
  padding: 30px 20px;
  margin-top: 40px;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.4);
}

.footer-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-logo img {
  width: 110px;
  height: 110px;
}

.footer-links {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00AEEF;
}

.footer-copy {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsivo */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0,0,0,0.9);
    padding: 15px;
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  body {
    padding-top: 120px;
  }

  .sobreProdutos {
    padding-left: 10%;
    padding-right: 10%;
  }
}