*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --verde:#015c2d;
    --verde-claro:#059e39;
    --preto:#30343e;

}

body{

    font-family:'Work Sans',sans-serif;

    background:#ffffff;

    color:var(--preto);

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

}

.container{

    width:100%;

    max-width:760px;

    padding:40px;

    text-align:center;

}

.logo{

    width:190px;

    max-width:90%;

    height:auto;

    margin-bottom:55px;

}

h1{

    font-size:52px;

    font-weight:300;

    line-height:1.2;

    color:var(--preto);

    margin-bottom:30px;

}

h1 span{

    display:block;

    font-weight:700;

    color:var(--verde);

}

p{

    max-width:640px;

    margin:0 auto;

    font-size:21px;

    line-height:1.8;

    color:#5d6570;

}

.breve{

    margin-top:35px;

    font-size:24px;

    font-weight:600;

    color:var(--verde);

}

@media (max-width:768px){

.logo{

    width:160px;

    margin-bottom:40px;

}

h1{

    font-size:36px;

}

p{

    font-size:18px;

}

.breve{

    font-size:20px;

}

.container{

    padding:30px;

}

}