/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000; /* fundo preto */
  color: #fff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* ===== Header/Navbar ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #000;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}

.logo img {
  height: 45px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #f9d342;
}

.btn-projeto {
  background-color: #f9d342;
  color: #000 !important;
  padding: 6px 14px;
  border-radius: 5px;
  font-weight: bold;
}

/* ===== Hero ===== */
.hero {
  height: 100vh;
  background: url("IMG_1130.jpeg") center/cover no-repeat; /* ✅ nova imagem */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  margin-top: 80px;
}

.hero h1 {
  font-size: 3rem;
  color: #f9d342;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* ===== Sections ===== */
.section {
  padding: 80px 20px;
  text-align: center;
}

/* ===== Cards (Serviços) ===== */
.card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.card {
  background: #111;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 8px;
}

/* ===== Imagens padronizadas ===== */
section figure img,
.portfolio-container img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}

section figure {
  text-align: center;
  margin: 2rem 0;
}

/* ===== Missão, Visão e Valores ===== */
.mvvs {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.mvvs div {
  background: #111;
  padding: 20px;
  border-radius: 8px;
  width: 250px;
}

.mvvs h3 {
  color: #f9d342;
  margin-bottom: 10px;
}

/* ===== Contato ===== */
#contato {
  padding: 4rem 2rem;
  background-color: #111;
  color: #fff;
  text-align: center;
}

#contato h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

#contato form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

#contato input,
#contato textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

#contato button {
  background-color: #f9d342;
  color: #000;
  padding: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

#contato button:hover {
  background-color: #ffcc00;
}

/* ===== Footer ===== */
footer {
  background: #111;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer a {
  color: #f9d342;
  margin: 0 10px;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}