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

body{
    font-family:'Poppins',sans-serif;
    background:#4E5822;
    color:#d8b179;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
}

.container{
    text-align:center;
    padding:40px;
    max-width:700px;
}

.logo{
    width:280px;
    max-width:90%;
    margin-bottom:30px;
    border-radius: 30px;
}

h1{
    font-size:3rem;
    font-weight:600;
    margin-bottom:10px;
    letter-spacing:2px;
}

h2{
    font-size:1.2rem;
    font-weight:300;
    margin-bottom:30px;
    color:#e4c796;
}

p{
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:40px;
    color:#f1dcc0;
}

.status{
    display:inline-block;
    padding:14px 30px;
    border:2px solid #d8b179;
    border-radius:50px;
    font-weight:600;
    letter-spacing:1px;
    transition:.3s;
}

.status:hover{
    background:#d8b179;
    color:#556423;
}

/* Botão WhatsApp */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:70px;
    height:70px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,.35);
    z-index:999;
    animation:pulse 2s infinite;
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
    animation:none;
}

@keyframes pulse{

    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }

    70%{
        transform:scale(1.05);
        box-shadow:0 0 0 20px rgba(37,211,102,0);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}