body {
    margin: 0px;
    padding: 0px;
}

.no-margin {
    margin: 0px;
}

.no-padding {
    padding: 0px;
}

#section {
    height: 100vh
}
@media (max-width: 768px) {
    #section {
        height: 50vh
    }
}

.iten-content {
    width: 50%;
    height: 100%;
    float: left;
    line-height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff
}
@media (max-width: 768px) {
    .iten-content {
        width: 100%;
    }
}

.logotipo{
    width: 50%;
    max-width: 400px;
}
@media (max-width: 768px) {
    .logotipo{
        width: 70%;
    }
}

.fundo{
    width: 100%;
    height: 100%;
    background-image: url(./images/fundo.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

@media (max-width: 768px) {
    .fundo {
        background-size: auto 100%;
    }
}

.whatsapp {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 4px;
    background-color: #67D449;
    border-radius: 8px;
    border: 0px;
    width: 220px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white
}