

/* === SEÇÃO INTERMEDIÁRIA === */
.section-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px 20px;
  gap: 40px;
  background: #000000;
}
.info-block p {
  text-align: center;
  max-width: 300px;
  color: #c0c0c0;
}

.info-block h3{
  color: #ffffff;
}



.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}
.btn:hover {
  background: #fff;
  color: #000;
}

/* === RODAPÉ === */
.footer {
  text-align: center;
  padding: 40px 20px;
  background: #000;
  font-size: 0.9rem;
  box-shadow: 0 1px 3px rgb(255, 255, 255);
  
}
.back-to-top {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 16px;
  cursor: pointer;
  transition: 0.3s;
}
.back-to-top:hover {
  background: #fff;
  color: #000;
}
.social {
  margin: 20px 0;
}
.social img {
  width: 24px;
  margin: 0 10px;
  filter: invert(1);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #fff;
}

.footer-links p {
  font-size:14px ;
}



/* ===== CARROSSEL ===== */
.carrossel {
  margin-top: auto 80px ; /* espaço pro menu fixo */
  position: ;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

.carrossel-container {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carrossel-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Preenche a tela sem distorcer */
  opacity: 0;
  transition: opacity 1s ease;
}

.carrossel-container img.imagem-ativa {
  opacity: 1;
}

/* ===== MINIATURAS ===== */
.miniaturas {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.miniaturas img {
  width: 100px;
  height: 140px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
 
}

.miniaturas img:hover,
.miniaturas img.ativa {
  opacity: 1;
  transform: scale(1.05);
}



/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .carrossel-container {
    height: 65vh;
    }
    .video-banner {
      height: 60vh;
  }

  .miniaturas img {
    width: 70px;
    height: 70px;
  }
}
.video-banner {
 
  overflow: hidden;
  border-radius: 12px;
  
}
.video-banner video {
  width: 100%;
  height: 90%;
  object-fit: cover;
}





