/*Ajustar a seta para aparecer nos celulares*/

/*FONTE*/
@font-face{
    font-family: Poiret;
    src: url(PoiretOne-Regular.ttf);
}

@font-face{
    font-family: Nunito;
    src: url(Nunito-VariableFont_wght.ttf);
}

/*CABEÇALHO*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

header{
    width: 100%;
    background-color: #007bff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    font-family: Poiret;
}

.nav_bar{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
}

.nav_bar ul{
    display: flex;
    list-style: none;
    text-transform: uppercase;
}

.nav_bar ul li{
    margin: 0 15px;
}

.nav_bar ul li a{
    text-decoration: none;
    color: #e7edea;
    font-size: 1.3rem;
    padding: 5px;
    position: relative;
}

.nav_bar ul li a:before{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffc52c;
    transition: width 0.3s ease-in-out;
}

.nav_bar ul li a:hover:before{
    width: 100%;
}

/*
.navbar-nav .nav-link{
    font-size: 1.3rem;
}
*/

.navbar-nav .nav-link.destaque{
    color: #ffc52c !important;
    font-weight: bold;
    font-size: 1.3rem;
    text-shadow: 0 0 5px rgba(0,0,0,0.3);
    background: rgba(255,197,44,0.15);
    padding: 8px 14px;
    border-radius: 8px;
}

.navbar-nav .nav-link.destaque:hover{
    color: #fff !important;
}

.navbar-nav .nav-link.destaque{
    transition: 0.3s ease;
}

.navbar-nav .nav-link.destaque:hover{
    background: #ffc52c;
    color: #000 !important;
}

.scroll-down{
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 35px;
    height: 35px;
    border-bottom: 4px solid #fff;
    border-right: 4px solid #fff;
    transform: translateX(-50%) rotate(45deg);
    animation: seta-movimento 1.5s infinite;
    opacity: 0.8;
    cursor: pointer;
}

@keyframes seta-movimento{
    0%{
        transform: translateX(-50%) translateY(0) rotate(45deg);
        opacity: 0.5;
    }
    50%{
        transform: translateX(-50%) translateY(10px) rotate(45deg);
        opacity: 1;
    }
    100%{
        transform: translateX(-50%) translateY(0) rotate(45deg);
        opacity: 0.5;
    }
}

.scroll-down:hover{
    opacity: 1;
}


/*CORPO*/
body{
    font-family: Nunito;
	padding-top: 60px;
}

#inicio{
	/*position: relative;*/
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #eee;
	background: url(capa.jpg) no-repeat center center;
	/*
		background-image: url(capa63.jpg);
		background-repeat: no-repeat;
		background-position: center center;
	*/
    background-size: cover;
	/*
		background-position: 10% 15%; X Y (comente esse X Y depois)
	*/
	background-position: center center;
    /*
        background-color: rgb(0, 0, 0, 0.2);
    */
    background-color: rgb(0, 0, 0, 0);
    background-blend-mode: color;
}

.botao{
    display: inline-block;
    font-size: 1.5rem;
    padding: 10px 15px;
    text-transform: uppercase;
    background: #007bff;
    border-radius: 5px;
    color: #FFFFFF;
}

.botao:hover{
    cursor: pointer;
    background-color:#ffc52c;
}

.corpo_texto{
    text-align: center;
    letter-spacing: 2.5px;
    font-weight: bold;
}

.corpo_texto h2{
    font-size: 3.0rem;
    text-transform: uppercase; 
}

.corpo_texto p{
    font-size: 1.5rem;
    padding: 10px 0;
}

#video{
    text-align: center;
    margin: 20px auto;
    max-width: 800px;
}

#video video{
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 700px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#video caption{
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
    text-align: center;
}

#mentoria{
    margin-top: 40px;
    border-left: 8px solid #007bff;
}

#mentoria h2{
    font-weight: bold;
    text-transform: uppercase;
}

#mentoria p{
    margin-bottom: 15px;
    line-height: 1.8;
}

.btn-primary{
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.btn-primary:hover{
    background-color: #ffc52c;
    border-color: #ffc52c;
    color: #fff;
}

/*RODAPÉ*/
footer{
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

footer .footer-container{
    max-width: 1200px;
    margin: 0 auto;
}

footer p{
    margin: 0;
}

/*MEDIAS QUERY*/
@media (max-width: 800px){
    #inicio{
        height: auto;
		min-height: 80vh;
        background-image: url(capa-celular.jpg);
        background-position: center top;
    }
	.scroll-down{
        bottom: 10px;
        width: 28px;
        height: 28px;
        border-width: 3px;
    }
}

@media (max-width: 480px){
    #inicio{
        min-height: 70vh;
    }
}