body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  background: #000;
  overflow-x: hidden;
}

#sharkCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.logo {
  width: 180px;
  margin-bottom: 20px;
}

.hero {
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.cta {
  background: gold;
  padding: 12px 25px;
  border-radius: 6px;
  color: black;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.cta:hover {
  background: #e0c200;
}

.servicos {
  padding: 80px 20px;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  width: 280px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contato {
  padding: 80px 20px;
  text-align: center;
}

form {
  max-width: 450px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
}

button {
  padding: 12px;
  background: gold;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: url("https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg")
    no-repeat center/cover;
  filter: drop-shadow(0 0 10px gold);
  z-index: 999;
}
/* SOBRE NÓS */
.sobre {
  padding: 80px 20px;
  text-align: center;
}

.fundadores {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.pessoa {
  width: 260px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pessoa img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.cargo {
  font-weight: bold;
  color: gold;
  margin-bottom: 10px;
}

/* PORTFÓLIO */
.portfolio {
  padding: 80px 20px;
  text-align: center;
}

.galeria {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.galeria img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}

.galeria img:hover {
  transform: scale(1.05);
}
.upload-label {
  text-align: left;
  font-size: 14px;
  color: gold;
  margin-top: 10px;
}

input[type="file"] {
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}
.footer {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px 20px;
  text-align: center;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content h3 {
  font-size: 24px;
  color: gold;
  margin-bottom: 10px;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-size: 14px;
}

.social-links img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.social-links img:hover {
  filter: brightness(0) invert(0.7);
  transform: scale(1.1);
}

.copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
