* { box-sizing: border-box; margin: 0; padding: 0; }
 
body {
  background: #e8f0e2;
  font-family: Georgia, serif;
  padding: 48px 32px;
}
 
header {
  text-align: center;
  margin-bottom: 48px;
}
 
header h1 {
  font-size: 2.8rem;
  color: #1a4a1a;
  margin-bottom: 10px;
}
 
header p {
  color: #4a6040;
  font-size: 1rem;
}
 
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
 
 
.card {
  background: #b8d4ae;
  border-radius: 16px;
  padding: 24px;
}
 
.tag {
  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a4a1a;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
 
.foto {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a1a1a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 1.6rem;
  font-family: Georgia, serif;
  text-align: center;
  overflow: hidden;
}
 
img.foto {
  object-fit: cover;
}

.foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
 
@media (max-width: 600px) {
  .grid { grid-template-columns: 1fr; }
  header h1 { font-size: 2rem; }
}