html, body {
    position:relative;
    width: 100%;
    height:100%;
}
body {
    background-color:#fff;
    font-family: 'Lato', sans-serif;
    font-size:16px;
}
header img {
    display: block;
}
section {
    padding-bottom: 50px;
}
.btn-pmm {
    background-color:#642381;
    border-color:#642381;
    color:#fff; 
    padding:20px;
    display: flex;
    justify-content: space-around;
    box-shadow: 1px 1px 5px -1px rgba(0,0,0,0.51);
    -webkit-box-shadow: 1px 1px 5px -1px rgba(0,0,0,0.51);
    -moz-box-shadow: 1px 1px 5px -1px rgba(0,0,0,0.51);
}
.btn-pmm-sm {
    padding:10px 20px;
    display: inline-block;
}

.btn-pmm.blue1 {
    background-color:#35509f;
    border-color:#35509f;
}
.btn-pmm.blue1:hover {
    background-color:#35509f;
    border-color:#35509f;
}
.btn-pmm.blue {
    background-color:#009f9b;
    border-color:#009f9b;
}
.btn-pmm.blue:hover {
    background-color:#009f9b;
    border-color:#009f9b;
}
.btn-pmm:hover {
    background-color:#642381;
    border-color:#642381;
    color:#fff; 
}
.btn-pmm.green {
    background-color:#92c01f;
    border-color:#92c01f;
}
.btn-pmm.green:hover {
    background-color:#92c01f;
    border-color:#92c01f;
}
.btn-pmm.pink {
    background-color:#e2007d;
    border-color:#e2007d;
}
.btn-pmm.pink:hover {
    background-color:#e2007d;
    border-color:#e2007d;
}
.btn-pmm.orange {
    background-color:#f09103;
    border-color:#f09103;
}
.btn-pmm.orange:hover {
    background-color:#f09103;
    border-color:#f09103;
}
.btn-icon {
    text-align: center;
    flex:0 1 20%;
    display: flex;
    align-items: center;
}
.btn-icon img {
    width: auto;
    height: 50px;
}
.btn-title {
    color:#fff;
    font-weight:900;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    flex:0 1 70%;
    align-content: center;
    padding:10px 0;
    text-transform: uppercase;
}
.btn-submit {
    background-color:#c20078;
    border-color:#c20078;
    color:#fff; 
    width: 100%;
    display: block;
    font-size:18px;
    font-weight: bold;
    padding:20px;
    box-shadow: 1px 1px 5px -1px rgba(0,0,0,0.51);
    -webkit-box-shadow: 1px 1px 5px -1px rgba(0,0,0,0.51);
    -moz-box-shadow: 1px 1px 5px -1px rgba(0,0,0,0.51);
}
.btn-submit:hover {
    background-color:#e440a5;
    border-color:#e440a5;
    color:#fff; 
}
.btn-padrao {
    background-color:#c20078;
    border-color:#c20078;
    color:#fff;
}
.btn-padrao:hover {
    background-color:#e440a5;
    border-color:#e440a5;
    color:#fff; 
}
.featured-text {    
    font-size: 18px;
    font-weight:600;
    line-height: 32px;
    text-align: center;
}
.form-section-wrap {
    border-radius: 0.5rem;
    background-color:#efefef;
    box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.51);
    -webkit-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.51);
    -moz-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.51);
    margin:30px 0 50px 0;
    padding:30px;
}
.form-section-wrap .title,
.form-section-wrap h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color:#40519a;
}

.saiba-mais {
    width: 100%;
    position: fixed;
    bottom:0;
    left:0;
    font-size:18px;
    background-color: #ccc;
    padding:10px 0;
    margin-bottom:15px;
    z-index: 999;
    text-align:center;
}
.floating { 
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
} 
@media (min-width: 768px) {
    .saiba-mais {
        display:none;
    }
    header {
        background-image: url('../img/banner-1920-x-250.jpg');
        background-size: contain;
        background-position: top center;
        background-repeat: no-repeat;
        width: 100%;
        height: 250px;
    }
    header img {
        display: none;
    }
}
@keyframes translation {
    0%{
      transform: translateX(0);
    }
    100%{
      transform: translateX(calc(100vw - 11em));
    }
  }
  
@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }   
}