body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fffaf0;
  color: #333;
}

header {
  background-color: #ff6f61;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img {
  height: 50px;
}

nav {
  display: flex;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

nav a:hover {
  background-color: #ff998f;
}

.titulo-creativo {
  font-size: 60px;
  text-align: center;
  margin: 40px 0;
  color: #ff6f61;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.collage-oficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.collage-item {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}

.collage-item:hover {
  transform: scale(1.05) rotate(-1deg);
}

.collage-item.grande {
  grid-row: span 2;
}

.texto-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  width: 100%;
  color: white;
  padding: 15px;
  text-align: center;
}

.texto-overlay h2 {
  margin: 0;
  font-size: 24px;
}

.texto-overlay p {
  margin: 5px 0 0;
  font-size: 14px;
}

footer {
  text-align: center;
  margin-top: 50px;
  padding: 15px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #ddd;
}


