.seccao-emblematica{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.seccao-emblematica img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.texto-emblematica {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 5vw;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  text-align: center;
}

.secao {
  min-height: 100vh;
  padding: 2rem;
  color: #fff;
}

#seccao-fotografias { background: #006699; }
#seccao-video { background: #004466; }
#seccao-poema { background: #003355; }

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

.galeria-fotos img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.legenda-fotos {
  text-align: center;
  margin-top: 20px;
}

.video-wrapper {
  display: flex;
  justify-content: center;
}

.video-wrapper iframe {
  width: 80%;
  max-width: 560px;
  height: 315px;
}

.poema-texto {
  text-align: center;
  font-size: 1.5rem;
  line-height: 2rem;
}

@media (max-width: 600px) {
  .texto-emblematica {
    font-size: 8vw;
  }

  .galeria-fotos img {
    width: 45%;
    height: auto;
  }

  .video-wrapper iframe {
    width: 95%;
    height: auto;
  }
}
