@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

body{
    background:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5) );
}



.container{
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 20px 0 20px;
}

/*Inicio Cabeçalho*/

header{
    width: 96%;
    background: #fff;
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    z-index: 10;
    transition: .2s;
    opacity: 0.85;
}

.header-active{
    top: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 .1rem .3rem rgba(0, 0, 0, .3);
}

header .navbar ul{
    display: flex;
    align-items: center;
    justify-content: space-between;  
    list-style: none; 
}

header .navbar ul li{
    margin:0 1rem;
}

header .navbar ul li a{
    font-size: 2rem;
    color: #0038A7;
    transition: .2s;
}

header .navbar ul li a:hover{
    color: #ee7103;
}


header .logo{
    font-size: 2.5rem;
    color: #ee7103;
    text-transform: uppercase;
}

header .logo img{
    max-height: 4rem;
    width: auto;
    vertical-align: middle;
}

header .fa-bars{
    font-size: 3rem;
    color: #0038A7;
    cursor: pointer;
    display: none;
    transition: .2s;
}

header .fa-times{
    transform: rotate(180deg);
    color: #ee7103;
}
/*Fim Cabeçalho*/

.container .box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.container .box .dream{
    display: flex;
    flex-direction: column;
    width: 32.5%;

}

.container .box .dream .dream-content{
    position: relative;
    overflow: hidden;
}

.container .box .dream .dream-content img{
    width: 100%;
    display: block;
    padding-bottom: 35px;
    padding-left: 25px;
    border: 5px;
}

.container .box .dream .dream-content .content{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.6s;
}

.container .box .dream .dream-content .content:hover{
    opacity: 1;
}

.content h1{
    font-size: 45px;
    color: #ee7103;
    margin-bottom: 15px;
}

.content p{
    font-size: 19px;
    color: #fff;
}

@media only screen and (max-width:768px){
    .container .box{
        flex-direction: column;
    }

    .container .box .dream{
        width: 100%;
    }
}

@media only screen and (max-width:643px){
    .container .heading{
        width: 100%;
    }

    .container .heading h3{
        font-size: 1em;
    }
}
