html,
body {
  height: 100%;
  margin: 0;
  background-color: rgb(255, 255, 255) !important;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: 56px;
  width: 100%;
  height: 100%;
  background-color: #097074;

}

.banner.video {
  background: linear-gradient(to bottom, #004d60 80%, #e6ffff 100%);
}

.banner-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-banner {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

/*============================================*/

.destaque-area {
  margin: 100px;
  background-color: #f5f5f5;
  padding: 80px 20px;
  margin-top: 20px;
  border-radius: 59px;
}

.destaque-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.destaque-texto {
  flex: 1;
  min-width: 300px;

}

.destaque-texto h2 {
  font-size: 32px;
  color: #097074;
  margin-bottom: 20px;
}

.destaque-texto ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.destaque-texto p  {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}


button:active {
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: box-shadow 0.2s ease-in;
  -moz-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
}

.destaque-imagem {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.destaque-imagem img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/*==============================================*/

/* Filtros */
.filtros-container {
  background: linear-gradient(to right, #1c6e69, #0fa4af);
  /* substituído verde por #097074 */
  height: 10px;
}

.filtros-container select,
.filtros-container button {
  height: 2px;
}

.filtros-container button {
  background-color: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.filtros-container button:hover {
  background-color: var(--dark-red);
}

.navbar-gradient {
  background: rgba(9, 112, 116, 0.8);
  backdrop-filter: blur(10px);
}

.explicacao {
  background: linear-gradient(to right, #0f6479, #0a9b8f);
  /* substituído verde por #097074 */
  padding: 60px 20px;
  text-align: center;
  margin-top: 20px;
  width: 1200px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  /* sombra mais leve */
  height: 400px;
  border-radius: 50px;
  text-decoration: none;
}

.button {
  margin: 0;
  height: auto;
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.hover-text {
  position: absolute;
  box-sizing: border-box;
  content: attr(data-text);
  color: var(--animation-color);
  width: 0%;
  inset: 0;
  border-right: var(--border-right) solid var(--animation-color);
  overflow: hidden;
  transition: 0.5s;
  -webkit-text-stroke: 1px var(--animation-color);
}

.button:hover .hover-text {
  width: 100%;
  filter: drop-shadow(0 0 23px var(--animation-color))
}

.container-explicacao {
  max-width: 800px;
  margin: 0 auto;
  color: white;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.explicacao h2 {
  font-size: 32px;
  color: #ffffff;
  /* substituído verde por #097074 */
  margin-bottom: 20px;
  color: white;
}

.explicacao p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  color: white;
}

/*--------------------------------------------------------------*/

.video-banner2 {
  position: absolute;
  top: 50%;
  left: 55%;
  z-index: 10;
  width: 550px;
  height: 430px;
  margin-left: -100px;
  margin-top: -215px;
}



.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/*------------------------------------------------------------*/


.center-button {
  display: flex;
  justify-content: center;
  /* centraliza horizontalmente */
  /* altura do container */
  align-items: center;
  /* centraliza verticalmente */
  text-decoration: none;
  position: relative; /* ou absolute */
  z-index: 10;
}

.center-button button {
  width: 120px;
  /* largura do botão */
  height: 120px;
  /* altura do botão */
  font-size: 1.4rem;
  /* tamanho da fonte */
  border: none;
  border-radius: 50%;
  /* deixa totalmente redondo */
 background-color: #097074;
  /* cor do botão */
  cursor: pointer;
  transition: transform 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  /* centraliza o texto dentro do botão */
  color: white;
  text-decoration: none;
}

.center-button button:hover {
  transform: scale(1.1);
  color: #00d4ff;
   background-color: #007891;
  /* efeito ao passar o mouse */
}

.explicacao {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 10900px;
  margin: 40px auto;
  text-decoration: none;
}

/* área da seção explicacao */
.explicacao {
  position: relative;
  height: 200px;
  /* ajusta a altura da seção */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
}

.explicacao video.video-banner {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* cobre toda a área sem distorcer */
  transform: translate(-50%, -50%);
  z-index: 0;
  /* atrás do conteúdo */
}

.explicacao .banner-text,
.explicacao .center-button {
  position: relative;
  z-index: 1;
  /* acima do vídeo */
}




                                     /*RESPONSIVIDADE*/


/* Responsividade para tela de celulares*/


@media (max-width: 670px) {

  /* Area do texto com video do lado*/

  .destaque-area {
  flex-wrap: wrap;
  border-radius: 20px;
  height: 500px;
  }

   .destaque-texto {
    h2 {
      text-align: center;
      font-size: 1.6rem;
      transform: translate(0%,-50%);
    }

   li {
    font-size: 0.8rem;
    transform: translate(20%);
   }

   p{
    font-size: 0.9rem;
   }

   }

  .destaque-container {
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
    align-items: center;
  }
    .video-banner2 {
    width: 100%;
    margin-top: 0;
    transform: translate(-10%,-10%);
    }  

    /* Botãao de começar*/

    .center-button button {
     width: 100%;
     border-radius: 5px;
     height: 50px;
    display: block;
    padding: 12px;
    font-size: 1.2rem;
    text-align: center;
    }
  }


  /* Telas de Iphone*/

@media (max-width:370px) {

.destaque-area {
  width: 60%;

}

.destaque-texto{

li {
  font-size: 0.7rem;
  transform: translate(19%,0%);
}

p{
  font-size: 0.9rem;
}
}

.video-banner2 {
  transform: translate(-7%,0%);
}

.center-button button {
  font-size: 0.9rem;
}
}


/* tela de tablets*/

@media (min-width:600px){
  .video-banner2{
    width: 70%;
  }
}

@media (min-width:670px) {

  .destaque-area {
    width: 80%;
  }
  .video-banner2{
    width: 50%;
    transform: translate(30%,0%);
  }
}
 /*--------------------------LINKS PARA PROJETO INTEGRADOR E SITE DA ETEC -----------------------------------*/

.linksEtec {
  text-decoration: none;
  margin: 100px;
  background-color: #f5f5f5;
  padding: 80px 20px;
  margin-top: 20px;
  border-radius: 59px;
  width: 88%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 40px;
  min-height: 350px;

}


/*--------------------------PROJETO INTEGRADOR------------------------------------*/

.projetoIntegrador {
width: 50%;

}

.container-Pi {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.imagem-Pi img {
  object-fit: cover;
  border-radius: 16px;
  max-width: 100%;
  height: auto;

}

.projetoIntegrador .tituloProjeto  {
  font-size: 1.1rem;
  color: #333;
text-align: center;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/*--------------------------SITE ETEC------------------------------------*/
.siteEtec {
width: 50%;
}

.container-etec {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.imagem-Etec img {
  object-fit: cover;
  border-radius: 16px;
 max-width: 100%;
  height: auto;
}

.siteEtec .tituloProjeto {
  font-size: 1.1rem;
  color: #333;
  align-items: center;
}
  
/*----------------------OS DOIS BOTÕES----------------------------------*/


 .sitePI {
  background-color: #097074;
  color: white;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  padding: 12px 25px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sitePI:hover {
   background-color: #007891;
color:  #00d4ff;;
  transform: scale(1.05);
}



.btnEtec {
  justify-content: center;
  align-items: center;
  background-color: #097074;
  color: white;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  padding: 12px 25px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btnEtec:hover {
  background-color: #007891;
   color:  #00d4ff;;
  transform: scale(1.05);
}


/*--------------------------dois HR------------------------------------*/
.boloy {
  width: 95%;
  margin: auto;
  margin-bottom:95px;
  height: 2px;
  background-color: black;
}

.lara {  
  width: 95%;
  margin: auto;
  margin-bottom:95px;
  height: 2px;
  background-color: black;
}



/*--=============================FOOTER================================================--*/
.site-footer {
  background-color: #097074;
  /* marrom escuro combinando com o banner */
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
  margin-top: 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 12px;
  font-size: 18px;
  border-left: 3px solid #189fa3;
  padding-left: 8px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #fff3;
  margin-top: 25px;
  padding-top: 15px;
  font-size: 13px;
}
