/* ==========================
   HOME
========================== */

#home{

    width:100%;
    height:85vh;

}

/* ==========================
   BANNER
========================== */

.banner{

    width:100%;
    height:100%;

    background-image:
        linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
        url("../image/banner-home.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

/* ==========================
   OVERLAY
========================== */

.overlay{

    width:100%;
    height:100%;

    display:flex;

    align-items:center;

    padding-left:8%;

}

/* ==========================
   TEXTO
========================== */

.text-home{

    max-width:650px;

}

.text-home h1{

    color:#fff;

    font-size:3.5rem;

    font-weight:800;

    line-height:1.1;

    margin-bottom:25px;

}

.text-home p{

    color:#f0f0f0;

    font-size:1.15rem;

    line-height:1.7;

    margin-bottom:35px;

}

/* ==========================
   BOTÃO
========================== */

.btn-home{

    display:inline-block;

    padding:16px 35px;

    background:#f4b400;

    color:#000;

    font-weight:700;

    text-decoration:none;

    border-radius:10px;

    transition:.3s;

}

.btn-home:hover{

    background:#ffc72c;

    transform:translateY(-3px);

}

/* ==========================
   RESPONSIVO
========================== */

@media(max-width:900px){

    .overlay{

        justify-content:center;

        padding:30px;

        text-align:center;

    }

    .text-home h1{

        font-size:2.5rem;

    }

    .text-home p{

        font-size:1rem;

    }

}