body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

h1, h2, h5 {
  font-weight: bold;
}

header {
  background: url('studio-banner.jpg') no-repeat center center/cover;
}

.section {
  padding: 4rem 1rem;
}

.section img {
  border: 2px solid #ddd;
}

footer {
  background-color: #222;
  color: white;
}



/* Estilos Gerais */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #222;
  color: #fff;
  padding: 1.5rem 0;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin: 0.5rem 0;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 1rem 0 0;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.section {
  padding: 2rem 0;
  background: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section:nth-child(even) {
  background: #f9f9f9;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.gallery img {
  width: calc(25% - 1rem);
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.1);
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}
