/*------------------------------------------------------Configuração geral------------------------------------------------------*/

*{
    font-family: "Rubik", sans-serif;
    list-style-type: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --bg-color: #1f1f21;
    --main-color: #ffae00;
    --text-color: #ffffff;
    --big-font: 3.5rem;
    --p-font: 1rem;
    transition: .2s;
    
}

/*------------------------------------------------------Tags------------------------------------------------------*/


body{
    overflow-x: hidden;
    margin: 0;
    box-sizing: border-box;
}

main{
    background-color: var(--bg-color);
    width: 100%; /* Define a largura para ocupar todo o HTML. */
    box-sizing: border-box;
}

ul{
    margin: 0;
}

span{
    color: var(--main-color);
}

/*------------------------------------------------------Classes------------------------------------------------------*/

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.fontg{
    font-size: 3em;
    display: flex;
    letter-spacing: 0.1em;
    justify-content: center;
}

.borda{
    border-radius: 10px;
}

.margin{
    margin: 0.3125rem;
}

/*Cor Background*/
.bg-amarelo{
    background-color: var(--main-color) !important;
}

.bg-preto{
    background-color: var(--bg-color);
}

.bg-white{
    background-color: var(--text-color);
}

.text-bg-amarelo{
    color: #ffae00 !important;
}

.text-bg-branco{
    color: #ffffff !important;
}

.text-bg-preto{
    color: #1f1f21!important;
}

.paragrafo-sobre {
    max-width: 700px; /* Defina a largura máxima desejada */
    margin: 0;   /* Para centralizar o parágrafo na tela */
    box-sizing: border-box;
}

/*------------------------------------------------------Divisor de sessões------------------------------------------------------*/

.featurette-divider{
    margin: 0.5rem 0;
    padding: 0.1rem 0;
    width: 100%;
    color: var(--text-color);
    border: 0;
}

/*------------------------------------------------------Header------------------------------------------------------*/

.header{
    text-align: center;
    margin: auto;
    background-color: var(--bg-color);
    position: fixed;
    width: 100%; /* para o header ocupar toda a largura da tela */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: space-evenly;
    transition: all ease 0.45s;
    box-sizing: border-box;
}

.header_logo{
    text-decoration: none;
    color: var(--text-color);
    font-size: 2.4em;
    font-weight: 600;
    padding: 0.2em;
    margin-left: 0;
}

.header_nav{
    background-color: var(--bg-color);
    display: none;
    margin-top: 1rem;
}

.header_nav ul{
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: var(--p-font);
    color: var(--text-color);
    transition: all ease 0.5s;
    font-weight: 400;
}

.header_nav a{
    color: var(--color-white);
    padding: 0.5em;
    text-decoration: none;
}

.header_nav.show{
    display: block;
}

.header_nav a:hover{
    color: var(--main-color);
    background-color: color-mix(in srgb, var(--bg-color), var(--color-white) 80%);
}

.header_nav a.active {
    color: var(--main-color);
}

.header_nav a.cont {
    background-color: var(--main-color);
    color: var(--text-color);
    padding: 0.3em;
}

.header_nav a.cont:hover {
    background-color: var(--text-color);
    color: var(--main-color);
}

/*------------------------------------------------------Quem sou eu------------------------------------------------------*/

.home {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1.875em;
    background-color: var(--bg-color);
    padding: 0.625rem;
}

.home-img {
    width: 60vh;
    height: auto;
}

.home-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: imgg 2s ease-in-out infinite;
    animation-delay: 2s;
    max-width: 28.125em;
}

.home-text span {
    padding: 0.3125em 1.5625em;
    background: linear-gradient(130.08deg, #383528 0%, #191919 100%);
    box-shadow: 0em 1.25em 2.5em #00000070;
    border: 0.0625em solid #3b3b3b;
    border-radius: 100px;
    color: var(--text-color);
    font-weight: 700;
    font-size: var(--p-font);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.home-text h1{
    font-size: var(--big-font);
    margin: 0;
    color: var(--text-color);
    margin-top: 1.25rem;
}

.home-text p {
    font-size: 1.2em;
    font-weight: 400;
    color: #c3c3c3;
    line-height: 1.875em;
    text-align: justify;
}

/*------------------------------------------------------div share------------------------------------------------------*/

.share{
    display: flex;
    position: absolute;
    align-items: end;
    justify-content: flex-end;
    left: 7%;
    top: 85%;
    box-sizing: border-box;
}

.share p{
    font-size: 1.0625em;
    color: var(--text-color);
}

.social i{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.8125em;
    width: 2.8125em;
    background: linear-gradient(130.08deg, #383528 0%, #191919 100%);
    box-shadow: 0em 1.25em 2.5em #00000070;
    border: 0.0625em solid #3b3b3b;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.25em;
    margin: 0 0.4375em;
    transition: all 0.6s ease-in-out;
}
.social i:hover{
    transform: translateY(-0.625em);
}

/*------------------------------------------------------Jornada------------------------------------------------------*/

.trailer{
    padding-bottom: 1em;
    padding-left: 1em;
    padding-right: 1.5em;
    line-height: 1.5em;
}

section.trailer{
    padding: 1rem;
}

.trailer div{
    text-align: center;
    margin: auto;
    width: auto;
}

.trailer_video .tamanhovideo{
    border-radius: .8em;
    margin-bottom: 1em;
}

.trailer div iframe {
    max-width: 100%; /* ão excede 100% da largura do contêiner pai */
    max-height: auto; /* Mantém a proporção da altura com base na largura */
}

.maxWidth{
    max-width: 90em;

} /* 1440px/16 = 90em */

.trailer_title{
    margin-top: 0;
    padding-top: .5em;
    color: var(--text-color);
}

.trailer_title h1{
    font-size: var(--font-big);
    margin-bottom: 1em;
}

.trailer_paragrafo{
    font-size: var(--p-font);
    color: var(--text-color);
    margin-bottom: 2em;
}

.trailer{  
    background-position: center top;
    background-repeat: repeat;
    background-color: initial;
}

.trailer_video {
    display: block;
}

.imagem{
    display: block;
}

.imagem .tamanhoimagem{
    border-radius: .8em;
    margin-bottom: 1em;
}

img.tamanhoimagem{
    max-width: 100%; /* não excede 100% da largura do contêiner pai */
    max-height: 100%; /* Mantém a proporção da altura com base na largura */
    width: 90%;
}

.trailer_botao{
    display: none;
}

a.btn.bv{
    display: none;
}
/*------------------------------------------------------Menu hamburguer------------------------------------------------------*/

#hamburguer{
    background-color: var(--bg-color);
    color: var(--color-white);
    display: block;
    text-align: center;
    padding: 0.3em;
    cursor: pointer;
    font-size: 2em;
}

span#hamburguer.material-symbols-rounded{
    color: var(--main-color);
}

/*------------------------------------------------------footer------------------------------------------------------*/

footer{
    background-color: var(--bg-color);
    padding: 1rem;
    text-align: center;
    color: var(--text-color);
}

.logos_footer{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tamanho{
    width: 2.5rem;
}

.texto_footer{
    font-size: 0.6em;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin:0;
    padding-top: 0.8rem;
    color: var(--color-white);
}

/*------------------------------------------------------Carousel------------------------------------------------------*/

.image-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
}

.conquista_cards{
    display: flex;
    align-items: center;
    justify-content: center;
}

.card{
    border: none;
    border-radius: 10px;
    box-shadow: 0.125rem 0.375rem 0.5rem 0 rgba(22, 22, 26, 0.18);
    margin: 0,625rem;
    display: block;
}

.carousel-inner{
    padding: 1em;
}

/*------------------------------------------------------Aprendizados------------------------------------------------------*/
.feature-icon-small{
    width: 3rem;
    height: 3rem;
}

.imagem-de-fundo{
    background-image: url('Imagens/ceu.png');
    background-size: cover; /* Para ajustar a imagem ao tamanho da seção */
     /* Para evitar repetição da imagem */
    background-position: center center; /* Para centralizar a imagem horizontal e verticalmente */
}

/*------------------------------------------------------Cards------------------------------------------------------*/

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  .b-example-divider {
    width: 100%;
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 0.0625rem 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
  }

  .b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
  }

  .bi {
    vertical-align: -.125em;
    fill: currentColor;
  }

  .nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
  }

  .nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -0.0625rem;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .bd-mode-toggle {
    z-index: 1500;
  }

  .bd-mode-toggle .dropdown-menu .active .bi {
    display: block !important;
  }

  .card2 {
    border: none;
    transition: transform 0.2s;
  }
  
  .card2:hover {
    transform: translateY(-0,3125rem);
  }
  
  .card2-img-top {
    object-fit: cover;
    height: 14.0625rem;
  }
  
  div.card-body{
    background-color: var(--text-color);
    border-radius: 10px;
  }


  img.card-img-top {
    border-radius: 10px;
    transition: transform 0.3s; /* Adicione uma transição suave de 0,3 segundos */
}

img.card-img-top:hover {
    transform: scale(1.05); /* Amplia a imagem em 10% (1.1 vezes) ao passar o mouse por cima */
}

/*------------------------------------------------------contatos------------------------------------------------------*/


#contatos .form-control{
    background-color: var(--main-color);
    border-color: var(--text-color);
    color: var(--bg-color);
}

#contatos .form-control::placeholder{
    color: var(--bg-color);
}

#contatos input.form-control{
    height: 2.75rem;
}

/*------------------------------------------------------botoes------------------------------------------------------*/

.botao:hover{
    background-color: var(--bg-color);
    color: var(--text-color);
}

.botao1{
    background-color: var(--main-color);
}

.botao1:hover{
    background-color: var(--text-color);
    color: var(--bg-color);
}

div.main-btn {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0.625rem;
    width: 60%;
    min-width: 9,375rem;
    justify-content: space-around;
}

a.btn{
    display: inline-block;
    background: var(--main-color);
    color: var(--text-color);
    border: 0.125em solid var(--main-color);
    font-size: 1em;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.6s ease-in-out;
    justify-content: space-between;
    text-align: center;
    min-width: 9.375rem;
}

a.bv{
    display: inline-block;
    background: var(--bg-color);
    color: var(--text-color);
    border: 0.1em solid var(--bg-color);
    font-size: 0.8em;
    font-weight: 400;
    border-radius: 8px;
    transition: all 0.6s ease-in-out;
    justify-content: space-between;
    text-align: center;
    min-width: 9.375rem;
}

a.btn.dois{
    display: inline-block;
    background: #141414;
    color: var(--text-color);
    border: 0.125em solid #141414;
    font-size: 1em;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.6s ease-in-out;
    justify-content: space-between;
    text-align: center;
    min-width: 9.375rem;
}

a.btn.primary-btn{
    text-align: center;
    display: inline-block;
    background: var(--main-color);
    color: var(--text-color);
    border: 0.125em solid var(--main-color);
    font-size: 1em;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.6s ease-in-out;
    justify-content: space-between;
    text-align: center;
    min-width: 9.375rem;
}

a.primary-btn:hover {
    transform: translateY(-0.3125em);
    background: transparent;
    color: var(--main-color);
    border-color:  0.125em solid var(--main-color);
}

a.dois:hover {
    transform: translateY(-0.3125em);
    color: #141414;
    background: var(--text-color);
    border: 0.125em solid var(--text-color);
}

.bv:hover {
    transform: translateY(-0.3125em);
    color: #141414;
    background: var(--text-color);
    border: 0.125em solid var(--text-color);
}

/*------------------------------------------------------Elas na tech------------------------------------------------------*/

.rows{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}












/*------------------------------------------------------@media maior que 36em------------------------------------------------------*/

@media screen and (min-width: 36em){

    #hamburguer{
        display: none;
    }

    .header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: var(--bg-color);
    }

    .header_logo{
        margin-left: 1em;
        text-decoration: none;
    }

    a.header_logo{
        text-decoration: none;
    }

    .header_logo:hover {
        color: var(--text-color);
        
    }

    .header_nav{
        display: block;
    }

    .header_nav ul{
        margin-right: 2em;
        font-size: 0.85em;
    }

    .header_nav li{
        display: inline-block;
    }

    .header_nav a{
        border-radius: 5px;
    }

    .header_nav a:hover{
        background-color: var(--color-white);
        color: var(--main-color);
    }

    .logos_footer{
        flex-direction: row;
        justify-content: center;
        gap:1em;
    }

    div.main-btn{
        display: flex;
    }

    .home-img img{
        animation: imgg 2s ease-in-out infinite;
        animation-delay: 2s;
    }
    
    @keyframes imgg{
        0%{
          transform: translateY(0);
        }
        50%{
          transform: translateY(-1.375em);
        }
        100%{
          transform: translateY(0);
        }
    }

    .cards-wrapper{
        display: flex;
    }
    
    .card{
        margin: 0 0.5em;
        width: calc(100%/3);
        text-align: center;
    }

    .image-wrapper{
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }


}

























/*------------------------------------------------------@media menor que 36em------------------------------------------------------*/

@media screen and (max-width: 36em){ /*menor que 36em*/

    *{
        text-decoration: none;
    }

    .share {
        display: none;
    }

    :root{
        --big-font: 4rem;
        --p-font: 0.7rem;
        transition: .2s;
    }

    .fontg{
        font-size: 2em;
        display: flex;
        letter-spacing: 0.0625em;
        justify-content: center;
    }

    @keyframes imgg{
        0%{
          transform: translateY(0);
        }
        50%{
          transform: translateY(-1.375em);
        }
        100%{
          transform: translateY(0);
        }
    }
    
    main{
        background-color: var(--bg-color);
        padding: 1.25rem;
        margin-top: 0.625rem;
        width: 100%; /* Define a largura para ocupar todo o HTML. */
        box-sizing: border-box;
    }

    body{
        overflow-x: hidden;
    }

    div.home-text{
        align-items: center;
        box-sizing: border-box;
    }

    .share {
        display: none;
    }

    header{
        padding: 0.6875em 4%;
        background: #2d2d2d;
        width: 100%;
    }

    header.header {
        padding: 2vw 0; /* Define o preenchimento vertical como 2% da largura da janela de visualização e 0 de preenchimento horizontal. */
        max-width: 100vh; /* Garante que a largura máxima do header não ultrapasse 100% da largura da janela de visualização menos 4% para acomodar o preenchimento. */
    }

    .home{
        padding-top: 0.625rem;
        height: auto;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .home-text{
        order: 2;
        text-align: center;
        padding: 0 1.25rem;
        padding-top: 0;
        margin-bottom: 1rem;
    }

    .home-img{
        margin: auto;
        height: auto;
        width: auto;
        justify-content: center;
        position: relative;
    }

    .home-img img{
        max-width: 28.125em;
        width: 100%;
        height: auto;
        animation: imgg 2s ease-in-out infinite;
        margin-top: 4.5rem;
        object-fit: contain;
    }

    .home-text span {
        padding: 0.2em 1em; 
        font-size: 0.9em; 
    }

    a.btn.dois {
        display: inline-block;
        margin-bottom: 4em; 
        padding: 0.5em 1.25em;
        min-width: 8rem;
        background-color: #141414;
        color: var(--text-color);
        text-align: center;
        justify-content: space-between;
        transition: all 0.6s ease-in-out;
        font-size: 1em;
        font-weight: 600;
        border-radius: 8px;
        border: 0.125em solid #141414;
        margin: 0;
    }

    a.btn.primary-btn{

        display: inline-block;
        margin-bottom: 4em; 
        padding: 0.5em 1.25em; 
        min-width: 5rem;
        background-color: var(--main-color);
        color: var(--text-color);
        text-align: center;
        justify-content: space-between;
        transition: all 0.6s ease-in-out;
        font-size: 1em;
        font-weight: 600;
        border-radius: 8px;
        border: 0.125em solid var(--main-color);
        margin: 0;

    }

    a.dois:hover {
        transform: translateY(-0.3125em);
        color: #141414;
        background: var(--text-color);
        border: 0.125em solid var(--text-color);
    }

    div.main-btn {
        display: inline-block; 
        width: auto; 
        height: auto;
        margin: 1em;
        width: 100%;
        min-width: 9,375rem;
    }

    section{
        padding: 4.375em 4%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    section.home{
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 1.25em;
        padding-bottom: 0;
    }

    .header_nav a.cont{
        background-color: transparent;
    }

    .header_nav a.cont:hover{
        background-color: transparent;
    }

    .header_logo:hover {
        text-decoration: none;
        color: var(--text-color);
    }

    .image-wrapper img{
        max-width: 100%;
        max-height: 100%;
    }

    section.conquista_cards{
        padding: 0 0.625em;
    }

    .image-wrapper{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .conquista_cards{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .card{
        border: none;
        border-radius: 10px;
        box-shadow: 0.15625rem 0.46875rem 0.625rem 0 rgba(22, 22, 26, 0.18);
        margin: 1em;
        display: block;
    }
    
    .carousel-inner{
        padding: 1em;
    }

    div.card-body{
        text-align: center;
    }

    .bloco {
        flex-direction: column;
        text-align: center; 
    }
    
    .left {
        margin-bottom: 1.25em;
    }
    
    img.elas {
        width: 100%; 
        height: auto; 
        object-fit: contain;
        
    }

    .foto-img {
        height: auto;
    }
    
    .foto-img img {
        width: 100%;
        height: auto; 
        object-fit: contain;
        margin-top: 0.3125em;
        max-width: 100%;
    }

    .trailer_video{
        display: none;
    }

    .trailer_botao{
        display: inline-block;
        margin-top: 1em;
        padding: 1em 2em;
        background-color: var(--bg-color);
        color: var(--text-color);
        border-radius: 8px;
        text-transform: uppercase;
    }
    
    .trailer_botao:hover{
        text-decoration: none;
        background-color: var(--text-color);
        color: var(--bg-color);
    }

    a.btn.bv{
        display: block;
    }

    a.btn.bv.trailer_botao{
        padding: 0.375rem 0.75rem;
    }

}