/*Formatação geral*/
body{
    font-family: 'Sora', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1em;
    background: #f7f7f7;
}
header{
  position: absolute;
  z-index: 2; 
  width: 100%;
}
.borda{
  border: 1px solid red;
}

/*--CAROUSEL--*/
#carouselBiotechFade {
  height: 800px;
  overflow: hidden;
}

#carouselBiotechFade .carousel-inner,
#carouselBiotechFade .carousel-item {
  height: 100%;
}

#carouselBiotechFade img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.purple-opacity{
  background: rgba(78, 30, 112, 0.7); 
  width: 100%; 
  height: 100%; 
  position: absolute; 
  z-index: 2;
}

.carousel-caption{
  z-index: 3;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.carousel-caption h1{
  font-size: 6em;
}
.carousel-caption p{
  margin-bottom: 30px;
  font-weight: 200;
  font-size: 2em;
}
.carousel-caption .btn {
  background-color: rgb(152, 16, 150);
  border: none;
  width: 200px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 10px rgb(56, 55, 58);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.carousel-caption .btn:hover{
  background-color: rgb(130, 0, 219);
  transform: scale(1.1);
}

@media (max-width: 768px){
  #carouselBiotechFade{
    height: 600px;
  }
  .carousel-caption h1{
    font-size: 4.5em;
  }
  .carousel-caption p{
    margin-bottom: 30px;
    font-weight: 200;
    font-size: 1em;
  }
}
@media (max-width: 480px){
  .carousel-caption h1{
    font-size: 2.8em;
  }
  .carousel-caption p{
    font-weight: 200;
    font-size: 1em;
  }
}
  
/*--NAVBAR--*/
/* background roxo com hover*/
.navbar{
  background-color: transparent;
  width: 100%;
}
.navbar:hover{
  background-color: #471477;
  transition: 0.5s;
} 
/*efeito da barra azul ao passar o mouse*/
 .navbar .nav-link {
  color: #fff;
  margin: 0 5px;
  display: block;
  background: linear-gradient(aquamarine, aquamarine);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 2px;
  transition: background-size 1s ease;
}
.navbar .nav-link:hover{
  animation: linha 1.3s forwards;
} 
/* animação vindo da esquerda para direita */
@keyframes linha{
  from{
      background-size: 25% 2px;
      background-position: left bottom;
  }

  to {
        background-size: 100% 2px;
        background-position: left bottom;
  }
}

/*--Parallax--*/

.parallax{
  background-image: url(../assets/background-parallax.jpg);
  position: relative;
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 50px 0;
}

/*--COUNTDOWN--*/
.container-countdown{
  text-align: center;
  background: linear-gradient(0, #8A2BE2, #471477);
  height: 100%;
  padding: 50px 0;
}
.faixa-countdown{
  background: rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.container-countdown p{
  font-size: 2em;
  font-weight: bold;
  color: #fff;
}
.titulo-countdown{
  color: #fff;
  font-size: 5em;
  margin: 10px;
}
.caption-countdown{
  margin: 50px 0 ;
}
.caption-countdown p{
  font-size: 1.5em;
  font-weight: 400;
}

@media (max-width: 768px){
  .titulo-countdown{
    font-size: 2.5em;
    margin: 20px;
  }
}


/*--Section - Sobre eventos--*/
#subtitulo, #titulo-evento{
  font-weight: bold;
}
#sobre {
  background: #f0f0f0f8;
}

.card-box {
  background: #e9e6ef;
  border-radius: 6px;
  transition: 0.3s ease;
}
.card-box:hover {
  transform: translateY(-5px);
}
.icon-circulo {
  width: 70px;
  height: 70px;
  background: #8A2BE2;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: auto;
  display: flex;

}
.icon-circulo i{
  color: white;
  font-size: 30px;
}

/* menu programação */
.card-prog{
  background: #e9e6ef;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}

/* header */
.header-prog{
  background: linear-gradient(90deg, #8A2BE2, #471477);
  padding: 20px;
}

.header-prog h4{
  padding-left: 1%;
}


/* items da programação */
#programacao{
  background: #f0f0f0f8;
  padding: 50px 10%;
}


/*GALERIA*/
.galeria{
  overflow-y: auto;
  position: fixed;
  top: 10%;
  left: 10%;
  z-index: 1000;
  height: 80%;
  width: 80%;
  padding: 20px;
  background: #000000;
  border-radius: 30px;
  color: #fff;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.2s ease;
  pointer-events: none;
}
.galeria.ativa{
  transform: scale(1.1);
  opacity: 1;
  pointer-events: auto;
}
.galeria button{
  position: absolute;
  top: 10px;
  left: 95%;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.grid{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.grid .wrapper{
  height: 300px;
  overflow: hidden;
  max-width: 400px;
  margin: 5px;
}
.grid .wrapper img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.2s ease;
  border-radius: 3px;
}
.grid .wrapper img:hover{
  transform: scale(1.1);
}


@media (max-width: 768px){
  .galeria h1{
    font-size: 2.5em;
    font-weight: bold;
  }
  .galeria p{
    font-size: 1em;
  }
  .galeria button{
    left: 87%;
    top: 10px;
  }
}
@media (max-width: 480px){
  .galeria h1{
    font-size: 1.2em;
    font-weight: bold;
  }
  .galeria p{
    font-size: 0.8em;
  }
  .galeria button{
    left: 78%;
    top: 5px;
  }
  .grid .wrapper{
    height: 200px;
    overflow: hidden;
    max-width: 300px;
    margin: 5px;
  }
}



/* -- EDICOES ANTERIORES */
.botoes-anteriores button {
  width: 100%;
  height: 400px;
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  border-radius: 10px;
  border: none;
}
.botoes-anteriores img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.botoes-anteriores img:hover{
  transform: scale(1.1);
}
.botoes-anteriores p, .botoes-anteriores span {
  margin: 0px 20px 0 10px;
}
.titulo-subsection{
  font-weight: bold;
  font-size: 2em;
}
.overlay-texto{
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  padding: 20px;
}

@media (max-width: 768px){
  #edicoes-anteriores{
    padding: 5% 8%;
  }
  .titulo-subsection{
    font-size: 3em;
  }
  .botoes-anteriores span{
    font-size: 1em;
  }
}
@media (max-width: 480px){
  #edicoes-anteriores{
    padding: 5% 8%;
  }
  .titulo-subsection{
    font-size: 1.5em;
  }
  .botoes-anteriores span{
    font-size: 1em;
  }
  .overlay-texto{
    align-items: center;
  }
  .botoes-anteriores p, .botoes-anteriores span {
    margin: 0px;
  }
}



/* background da lista da prog com hover */
.card-prog .d-flex{
  padding: 12px;
  border-radius: 10px;
  transition: 0.3s;
}

.card-prog .d-flex:hover{
  background-color: #dfdce4;
  transform: translateX(5px);
  cursor: pointer;
}

/* horario */
.horario-icon{
  color: #8A2BE2;
  font-size: 20px;
}

.horario {
  color: #8A2BE2;
  font-weight: 700;
  margin-right: 10px;
}

.badge-custom{
  display: flex;
  background: #d4c7f1;
  color: #890ec2;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-top: 4px;
}

/*titulo geral*/
.titulo-section {
  font-size: 3em;
  font-weight: bold;
  margin: 10px 10px 10px 0;
}

.subtitulo-section {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 30px;
}

@media (max-width: 768px){
  .titulo-section {
  font-size: 2em;
  font-weight: bold;
  margin: 10px;
}

.subtitulo-section {
  font-weight: bold;
  font-size: 1.5em
}
  
}
@media (max-width: 480px){
  .titulo-section {
  font-size: 2em;

}
  .subtitulo-section {
    font-size: 1em;
  }
}

/* decoration do card dos palestrantes */
#palestrantes{
  padding: 50px;
}
.card-palestrante {
  border-radius: 15px;
  transition: 0.5s ease;
  background: #fff;
}

/* imagem que ainda sera adicionada */
.card-palestrante img {
  height: 250px;
  object-fit: cover;
}

.card-palestrante:hover {
  transform: translateY(-8px);
}


.card-palestrante h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* descrição dos palestrantes ainda deve ser modificada */
.graduacao {
  color: #7c3aed;
  font-size: 14px;
  font-weight: 500;
}


.descricao {
  color: #555;
  margin-top: 10px;
}
/* fim do card dos palestrantes */



/* section do minicurso */
#minicursos{
 padding: 1% 10%;
 background-color: #f0f0f0f8;;
}


.header-minicurso {
  text-align: center;
  margin-bottom: 3rem;
}
/* card minicurso */
.titulo-card {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.card-top {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

  .minicurso-card{
    background-color: #ffffff;
    border-left: 5px solid #7b2cff;
    border-radius: 15px;
    padding: 10px;
    transition: 0.3s ease;
    height: 100%;
  }

  .minicurso-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }

  /*ícone*/
  .minicurso-icon{
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #8A2BE2, #471477);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
  }
 
  .professor-text{
    color: #7b2cff;
    font-weight: 500;
    margin-bottom: 0;
  }

  /* descrições */

  .descricao-card{
    color: #6c757d;
    margin: 15px 0;
  }

  /* infos */
  .minicurso-card span{
    color: #6c757d;
    font-size: 0.95rem;
  }

  .minicurso-card i {
    margin-right: 6px;
  }

/* cards jovens cientistas */
.card-projeto{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
height:100%;
transition:0.3s;
}

.card-projeto:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}


.topo-card{
display:flex;
gap:10px;
margin-bottom:15px;
color:#7b2cff;
font-weight:600;

}

.topo-card i{
background:#7c3aed;
color:white;

width:40px;
height:40px;

display:flex;
align-items:center;
justify-content:center;

border-radius:8px;
font-size:20px;
}


.card-projeto h5{
font-size:18px;
font-weight:bold;
margin-bottom:10px;
}

.info{
font-size:14px;
color:#6c757d;
margin:0;
}


/*info inferiores */

.sessao{
background:#e9e6f3;
border-radius:12px;
}
/* fim cards jovens cientistass */




  /* hackthoon */
  /* Fundo gradiente principal */
.hack-section {
  background: linear-gradient(to top, #681baf, #340d58);
  padding: 80px 0;
}

/* Caixa requisitos */
.requisitos-box {
  background: linear-gradient(135deg, #7b1fa2, #9c27b0);
  color: white;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  padding: 20px 25px;
  max-width: 550px;
}

.requisitos-box h6{
  font-size: 18px;
  margin-bottom: 10px;
}

.requisitos-box ul {
  padding-left: 20px;
}

.requisitos-box li{
  margin-bottom: 6px;
}



/* section do mapa */
#section-chegar{
    background: linear-gradient(135deg, #7b1fa2, #9c27b0);
}

/* mapa arredondado */
.mapa-container{
    border-radius: 15px;
    overflow: hidden;
}

.mapa-container iframe{
    width: 100%;
    height: 260px;
    border: none;
}

/* endereço */
.endereco{
    color: white;
    font-size: 16px;
}

