:root {

  --orange: #ff6613; /* Laranja */
}

.font-kohinoor {
  font-family: "Kohinoor Telugu", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100vw;
  color: #35351E;
   background-color:  #DDDDC5;
   /*
  background-image: url("images/bg.png");
  background-size:  auto;
  background-repeat: no-repeat;
  background-position: right top; */
  display: flex !important;
  flex-direction: column !important;
  font-family: "Kohinoor Telugu", sans-serif;
  align-items: center !important;
}
.teste1{
  margin: 0;
  padding: 0;
  width: 100vw;
   background-color:  #DDDDC5;
  display: flex !important;
  flex-direction: column !important;
  font-family: "Kohinoor Telugu", sans-serif;
  align-items: center !important;
}

.header {
  padding-top: 4rem; 
  width: 100%;
  /* height: 100vh;  */
  display: flex;
  justify-content: center; 
  align-items: center; 
  flex-direction: column;
  gap: 20px;
  position: relative; 
}

.desenho {
  max-width: 100%; 
  height: auto; 
  position: absolute;
  top: 0; 
  right: 0; 
}



/* Imagens responsivas */
.img-logo {
  width: auto;
  max-width: 300px;
}

.img-campanha {
  max-width: 500px;
  width: 90%; /* Evita que ultrapasse a tela */
}

/* Texto responsivo */
.p-realizam {
  margin: 20px 0;
  color: white;
  letter-spacing: 6px;
  text-align: center;
}

.p-tecno {
  color: white;
  font-family: "Kohinoor Telugu", sans-serif;
  font-size: 25px;
  text-align: center;
  font-weight: 100;
  max-width: 80%;
}


/* 
SECTION FORM */
/* Formulário responsivo */
.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nome,
.org {
  width: 100%;
  box-sizing: border-box;
}
form {
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.div-form {
    padding: 10px 40px 40px 40px;
  width: 80%;
  max-width: 740px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16.5px);
  -webkit-backdrop-filter: blur(16.5px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

input {
  padding: 10px;
  margin-bottom: 10px;
  background: rgba(187, 205, 197, 0.9);
  backdrop-filter: blur(12.5px);
  -webkit-backdrop-filter: blur(12.5px);
  border-radius: 5px;
  border: 1px solid rgba(187, 205, 197, 0.9);
  color: black;
}

/* Linha de email e celular */
.div-form2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}


.div-form2 input{
    width: 50%;
}

/* Botão laranja FORA da div-form */
.btn-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-confirmar {
  background-color: var(--orange);
  padding: 12px 20px;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-confirmar:hover {
  background-color: #e05510;
}


/* SECTION TEXT-CONEXOES */

.text-conexoes2 {
  width: 100%;
  margin: 30px 0px 30px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative; 
  z-index: 1; 
}

.desenho2 {
  position: absolute;
  top: 0; 
  left: 0; 
  max-width: 200px; 
  height: auto; 
  z-index: -1; 
}



.text-conexoes h1 {
    font-size: 2.5rem; 
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 0px;
  }
  
  .text-conexoes p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 2px;
  }






/* Estilizando a seção principal carrossel */
.slide-decks {
  z-index: 1;
    max-width: 800px; 
    margin: 0 auto;
    text-align: center;
    /* padding: 20px; */
    position: relative;
  }
  
  /* Cabeçalho do carrossel */
  .carousel-header {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  /* Ajustando o tamanho do carrossel */
  .carousel {
    width: 100%; 
  }
  
  /* Ajustando os slides */
  .carousel div {
    margin-bottom: -29px;
    text-align: center;
    padding: 5px;
  }
  
  .carousel img {
    width: 100%; 
    max-width: 800px; 
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Estilizando os botões de navegação */
  .slick-prev, 
  .slick-next {
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  

  
  /* Adicionando ícones aos botões */
  .slick-prev::before, 
  .slick-next::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
    font-size: 30px;
    opacity: 1;
  }

  .slick-prev, .slick-next {
    opacity: 1 !important; 
    background: var(--orange) !important;
  }

  .slick-prev:hover, .slick-next:hover {
    background: var(--orange) !important;
    opacity: 1 !important; 
  }
  
  .slick-prev::before {
    content: "\f104"; /
  }
  
  .slick-next::before {
    content: "\f105"; 
  }
  
  /* Estilizando os dots (paginação) */
  .slick-dots {
    bottom: -20px;
  }
  
  .slick-dots li button:before {
    font-size: 10px;
    color: gray;
  }
  
  .slick-dots li.slick-active button:before {
    color: black;
  }



  .data-local {
    padding: 15px 0px 15px 0px;
    width: 100%;
    background-color: #FF9C00;
    position: relative; 
    overflow: visible; 
  }
  
  .desenho3 {
    position: absolute;
    bottom: -200px; 
    right: 0; 
    max-width: 150px; 
    height: auto; 

  }
  

.data{
  margin-bottom: 10px;
  font-size: 30px;
  color: #35351E;
}

.local{
  font-size: 20px;
}

.conheca{
  font-size: 22px;
  color: var(--orange);
}


.parcerias{
  padding-top: 15px;
display: flex;
justify-content: flex-start;
align-items: center;
flex-direction: column;
  width: 100%;
  background: rgba(228, 228, 209, 0.55);
  backdrop-filter: blur(16.5px);
  -webkit-backdrop-filter: blur(16.5px);
}

.span-certo{
  margin-bottom: 13px;
  font-size: 26px;
  display: flex;
  flex-direction: row;
  gap: 5px;
}


.startups{
  margin-top: 5rem;
  width: 100%;
  height: auto;
}

.startups img{
  width: 99%;
  height: auto;
}


  
  /* Responsividade */
  @media (max-width: 480px) {
    .slide-decks {
      max-width: 90%;
    }
  
    .data{
      font-size: 20px;
    }
    
    .local{
      font-size: 12px;
    }

    .slick-prev, 
    .slick-next {
        display: none !important; 
    }
  
    .carousel-header {
      font-size: 1.2rem;
    }
  }


.slick-dots {
  display: none !important;
}

  


@media (max-width: 700px) {
    .slide-decks{
      max-width: 90%;
    }
  
    .carousel {
      max-width: 100%;
    }
  
    .carousel img {
      max-width: 100%;
    }
  
    .slick-prev,
    .slick-next {
      display: none !important; 
    }
  
    .carousel-header {
      font-size: 1.2rem;
    }

    .span-certo{
      font-size: 14px;
      margin-left: 10px;
    }
  }
  

  /* Responsividade */
@media screen and (max-width: 900px) {
  .img-logo {
    max-width: 40%;
  }

  .header{
    padding-top: 9rem;
  }

  .desenho{
    max-width: 200px;
  }

  .img-campanha {
    max-width: 60%;
  }

  .p-realizam {
    letter-spacing: 3px;
    font-size: 14px;
  }

  .p-tecno {
    font-size: 20px;
  }

  .div-form {
    width: 80%;
    padding: 15px;
  }

  .text-conexoes h1 {
    font-size: 1.5rem;
  }

  .text-conexoes p {
    font-size: 1rem;
  }

  .conheca{
    font-size: 1.2rem;
  }
  
  
}

/* Para telas menores (até 600px) */
@media screen and (max-width: 600px) {
  /* .header {
   padding-top: 0px;
  }  */

  .desenho{
    max-width: 200px;
  }
  .img-logo {
    max-width: 50%;
  }

  .img-campanha {
    max-width: 80%;
  }

  .p-realizam {
    letter-spacing: 2px;
    font-size: 12px;
  }

  .p-tecno {
    font-size: 18px;
  }

  .div-form {
    width: 90%;
    padding: 10px;
  }

  .row {
    flex-direction: column;
  }

  .btn-confirmar {
    width: 90%;
    max-width: 300px;
    font-size: 14px;
  }

  .text-conexoes h1 {
    font-size: 1.3rem;
  }

  .text-conexoes p {
    font-size: 0.9rem;
  }
  
}


@media (max-width: 480px) {
  /* html, body {
    background-size: auto; 
    background-position: top center;
  } */

  .p-hub{
    padding: 12px!important;
  }

  .desk{
    display: none;
  }

  .futuro-text{

    color: #35351E;
    font-size: 18px!important;
  }
}

@media (max-width: 860px){

  .slide-decks{
    width: 500px;
  }

  .carousel img{
    width: 500px;
  }

  .Dois{
    padding-top: 2rem;
  }
}

@media (max-width: 979px){
.desenho3{
  display: none;
}
}


 @media (min-width:880px){
  .Dois{
    padding-top: 5rem;
  }

  .complete{
    font-size: 25px;
  }
} 