








/* Seção Projeto */
section, #projeto { 
	padding:300px 10px 100px 10px;
 max-width:1000px; margin:0px auto;
  text-align:center;
   }


section#projeto h1 {
 font-size:30px; 
 margin-bottom:20px;
  text-transform:uppercase;
   color:#ffffff; 
}

 .grid-imagens p{
	margin-bottom:50px;
  text-align: justify;
  
}
section#projeto p {
 font-size:17px; 
 line-height:2.1;
  margin-bottom:40px;
  color: #ffffff;

   }

/* Grid de imagens */
.grid-imagens{
  	margin-bottom:50px;
}
.grid-imagens { display:grid;
   grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
     gap:20px;
     }
.grid-imagens img { width:100%; height:auto; object-fit:cover; border-radius:2px; }

/* Rodapé */
footer { background:#111; color:#fff; text-align:center; padding:20px; margin-top:auto; }


/* Responsividade */
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle,
  .menu {
    display: none;
  }
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px; /* largura máxima no desktop */
  margin: 0 auto;   /* centraliza */
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  
}



.plyr {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0px 6px 16px rgba(198, 197, 197, 0.25);
}




/* ---------- Lightbox para zoom das imagens ---------- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease-in-out;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  
  box-shadow: 0 0 25px rgba(0,0,0,0.7);
  transition: transform 0.3s ease;
}

.lightbox img:hover {
  transform: scale(1.04);
}

.lightbox-caption {
  margin-top: 15px;
  font-size: 18px;
  color: #fff;
  text-align: center;
}

/* Botão fechar */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.lightbox-close:hover {
  color: #f44336;
}

/* Animação suave */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}








