.atendimento {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 320px;
    z-index: 2000;
}

.atendimento--fechado {
    max-width: 54px;
}

.atendimento__wrapper {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 2px 2px 4px rgba(0,0,0,.3);
    overflow: hidden;
    margin-bottom: 10px;
    transition: all .5s;
    opacity: 1;
    height: 378px;
}

.atendimento__wrapper fieldset {
    padding: 0;
    border: 0;
    margin: 0;
}

.atendimento__wrapper--esconder {
    opacity: 0;
    height: 0;
    visibility: hidden;
}

.atendimento__titulo {
    background: #25d366;
    color: #fff;
    fill: #fff;
    font-size: .8em;
    display: flex; 
    align-items: center;
    padding: 15px;
}

.atendimento__titulo p {
    color: #fff;
    margin: 0;
}

.atendimento__campos {
    padding: 18px;
}

.atendimento__label {
    margin-bottom: 5px;
}

.atendimento__input,
.atendimento__select,
.atendimento__textarea {
    background: #f5f7f9;
    border: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    height: 40px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    border-left: 2px solid #25d366;
    border-radius: 3px;
}

.atendimento__textarea {
    height: 120px;
}

.atendimento__submit {
    background: #25d366;
    height: 40px;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 40px;
    border: 0;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
}

.atendimento__submit:hover,
.atendimento__submit.ativo {
    background: #1ec45c;
}

.atendimento__botao {
    height: 54px;
    width: 54px;
    background: #25d366;
    border: 0;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    box-shadow: 2px 2px 4px rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.atendimento__botao:hover,
.atendimento__botao.ativo {
    background: #1ec45c;
}

.atendimento__botao:focus,
.atendimento__input:focus,
.atendimento__select:focus,
.atendimento__submit:focus {
       outline: none;
}

.atendimento__botao svg {
    fill: #fff;
}

.atendimento__icone {
    position: absolute;
    transition: all .5s;
}

.atendimento__botao:not(.atendimento__botao--ativo) .atendimento__icone--fechar {
    transform: rotate(45deg) scale(0);
    opacity: 0;
}

.atendimento__botao.atendimento__botao--ativo .atendimento__icone--fechar {
    transform: rotate(0deg) scale(1);
    opacity: 1;
}

.atendimento__botao:not(.atendimento__botao--ativo) .atendimento__icone--whatsapp {
    transform: rotate(0deg) scale(1);
    opacity: 1;
}

.atendimento__botao.atendimento__botao--ativo .atendimento__icone--whatsapp {
    transform: rotate(45deg) scale(0);
    opacity: 0;
}

