@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

html, body{
	font-size: 14px;
    font-family: 'Oswald', sans-serif;
    overflow-x: hidden !important;
}
/** Header **/
.header {
    padding: 40px 0;
    text-align: center;
}
.logo {
    max-width: 330px;
    margin-bottom: 30px;
}
#header-txt {
    margin-bottom: 30px;
}
#header-txt p {
    font-size: 16px;
    color: #333333;
    font-weight: 300;
    margin-bottom: 20px;
}
#header-txt h1 {
    font-size: 50px;
    font-weight: 700;
    color: #7c39e3;
    max-width: 80%;
    margin: 0 auto;
}
#header-txt h5 {
    color: #00bf82;
    font-size: 30px;
    font-weight: 500;
    max-width: 85%;
    margin: 10px auto;
}
#prod {
    margin-top: 30px;
}
#prod-img {
    max-width: 280px;
    margin: 0 auto;
}
#prod-img:hover {
    transform: scale(1.1);
}
#prod h3 {
    margin-top: 20px;
    font-size: 33px;
    color: #7c39e3;
    line-height: 1.1;
    font-weight: 400;
}
#prod h3 span {
    font-size: 20px;
    color: #000;
}
#prod p {
    font-size: 25px;
    color: #00bf82;
    line-height: 1;
    margin-top: 15px;
    font-weight: 700;
}
#prod button {
    background: #dd68ff;
    margin: 10px auto;
    width: 250px;
    height: 55px;
    font-size: 25px;
    color: #ffffff;
    font-weight: 700;
    border-radius: 5px;
    border: none;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: none;
}
#prod button:hover {
    animation: fade 0.5s forwards; 
}
@keyframes fade {
    from {
        background: #dd68ff;
        box-shadow: none;
    }
    to {
        background: #00bf82;
        box-shadow: 5px 5px 0px 0px #7c39e3, 10px 10px 0px 0px #00bf82;
    }
}
/** section 1 **/
.section1 {
    padding: 50px 0 0 0;
    background: rgb(124,57,227);
    background: linear-gradient(0deg, rgba(124,57,227,1) 60%, rgba(255,255,255,1) 60%);
}
#who {
    background-image: linear-gradient(90deg, rgba(255,255,255,0) 15%, rgba(0,0,0,1) 100%),  url('../../versaoNOVO/img/img1.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 100px 0;
    border-radius: 10px;
    background-position: right top;
}
#center-row {
    display: flex;
    justify-content: center;
}
#who-row {
    display: flex;
    justify-content: flex-end;
}
#who-txt {
    padding: 0 50px;
}
#who-txt h5 {
    font-size: 35px;
    font-weight: 700;
    color: #00bf82;
    max-width: 80%;
}
#who-txt p {
    margin: 20px 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
    padding-right: 30px;
}
#vants {
    text-align: center;
    padding: 50px 0 30px 0;
    color: #ffffff;
}
#vant-title {
    margin-bottom: 50px;
}
#vant-title h5 {
    font-size: 30px;
}
#icons {
    margin-bottom: 30px;
}
#icons img {
    width: 80px;
    margin-bottom: 20px;
}
#icons h6 {
    font-size: 30px;
    font-weight: 700;
    color: #00bf82;
}
#icons p {
    font-size: 18px;
    max-width: 70%;
    margin: 0 auto;
    line-height: 1.2;
}
/** section 2 **/
.section2 {
    background: #7c39e3;
    padding: 0 0 50px 0;
}
#sec2-txt {
    text-align: center;
    margin-bottom: 50px;
}
#sec2-txt h5 {
    font-size: 40px;
    color: #00bf82;
    font-weight: 700;
}
.list {
    color: #ffffff;
    margin-bottom: 30px;
}
#list1 {
    border-right: 1px solid #ffffff;
}
#list2 {
    margin-left: 50px;
}
.list img {
    max-width: 300px;
    margin-bottom: 30px;
}
.list h5 {
    font-size: 30px;
    font-weight: 700;
    color: #e8ff27;
}
.list p {
    font-size: 18px;
    font-weight: 300;
}
.list ul {
    padding-left: 0px;
}
.list ul li {
    margin: 0;
    font-size: 16px;
    padding: 5px 0 5px 25px;
    list-style: none;
    background-image: url('../../versaoNOVO/img/check.svg');
    background-repeat: no-repeat;
    background-position: 0px 8px;
    background-size: 15px;
    line-height: 1.2;
}
/** Footer **/
.footer {
    padding: 50px 0;
}
.align-center {
    align-items: center;
}
#footer-txt p {
    font-size: 16px;
    color: #333333;
    font-weight: 300;
    margin-bottom: 10px;
}
#footer-txt h1 {
    font-size: 35px;
    font-weight: 700;
    color: #7c39e3;
    max-width: 85%;
}
#footer-txt h5 {
    color: #00bf82;
    font-size: 25px;
    font-weight: 500;
    margin-top: 10px;
}
#footer-cta {
    text-align: center;
}
#footer-cta button {
    background: #dd68ff;
    width: 300px;
    height: 55px;
    font-size: 25px;
    color: #ffffff;
    font-weight: 700;
    border-radius: 5px;
    border: none;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: none;
}
#footer-cta button:hover {
    animation: fade 0.5s forwards; 
}
@keyframes fade {
    from {
        background: #dd68ff;
        box-shadow: none;
    }
    to {
        background: #00bf82;
        box-shadow: 5px 5px 0px 0px #7c39e3, 10px 10px 0px 0px #00bf82;
    }
}
/** Media Queries **/
@media only screen and (max-width: 1745px) {
    #header-txt h1 {
        font-size: 45px;
    }
    #prod h3 {
        font-size: 30px;
    }
    #prod button {
        width: 100%;
    }
    #prod-img {
        max-width: 100%;
    }
}
@media only screen and (max-width: 1550px) {
    #header-txt h1 {
        font-size: 40px;
        max-width: 100%;
    }
    #prod h3 {
        font-size: 27px;
    }
}
@media only screen and (max-width: 1350px) {
    #header-txt h1 {
        font-size: 35px;
    }
    #header-txt h5 {
        font-size: 20px;
        max-width: 100%;
    }
    #footer-txt h1 {
        font-size: 30px;
    }
    #prod h3 {
        font-size: 25px;
    }
    #prod h3 span {
        font-size: 18px;
    }
    #prod p {
        font-size: 20px;
    }
    #prod button {
        font-size: 20px;
    }
}
@media only screen and (max-width: 1250px) {
    #who {
        background-size: cover;
    }
    #prod h3 {
        font-size: 22px;
    }
}
@media only screen and (max-width: 1120px) {
    #prod h3 {
        font-size: 20px;
    }
    #prod h3 span {
        font-size: 15px;
    }
    #prod p {
        font-size: 18px;
    }
    #prod button {
        font-size: 18px;
    }
}
@media only screen and (max-width: 1035px) {
    #prod h3 {
        font-size: 18px;
    }
    #prod h3 span {
        font-size: 14px;
    }
    #prod p {
        font-size: 16px;
    }
    #prod button {
        font-size: 16px;
    }
}
@media only screen and (max-width: 991px) {
    #prod h3 {
        font-size: 30px;
    }
    #prod h3 span {
        font-size: 20px;
    }
    #prod p {
        font-size: 25px;
    }
    #prod button {
        width: 200px;
        font-size: 20px;
    }
    #prod-img {
        max-width: 200px;
    }
    .list img {
        max-width: 100%;
    }
}
@media only screen and (max-width: 767px) {
    .header {
        text-align: center;
    }
    #header-txt {
        padding: 40px 0 0 0;
        margin-bottom: 0;
    }
    #header-txt h1 {
        max-width: 75%;
        margin: 0 auto;
    }
    .logo {
        width: 280px;
        margin-bottom: 20px;
    }
    .footer {
        text-align: center;
    }
    #footer-txt h1 {
        max-width: 100%;
        margin-bottom: 10px;
    }
    #footer-txt h5 {
        margin-bottom: 40px;
    }
    #who {
        padding: 280px 0 30px 0;
        background-position: center;
        background-image: linear-gradient(180deg, rgba(255,255,255,0) 15%, rgba(0,0,0,1) 70%),  url('../../versaoNOVO/img/img1.jpg');
    }
    #vant-title h5 {
        font-size: 23px;
    }
    #who-txt h5 {
        max-width: 100%;
    }
    .align-center {
        display: block !important;
    }
    #list1, #list2 {
        border: none;
        margin-left: 0px;
    }
    .list img {
        max-width: 280px;
    }
}
@media only screen and (max-width: 725px) {
    #center-row {
        display: block;
    }
    #list1, #list2 {
        border: none;
        margin-left: 0px;
    }
    .list {
        text-align: center;
    }
    .list ul, .list h5 {
        text-align: left;
    }
    .list p {
        text-align: left;
    }
}
@media only screen and (max-width: 520px) {
    .header {
        padding: 0 0 40px 0;
    }
    #header-txt h1 {
        max-width: 100%;
    }
}
@media only screen and (max-width: 414px) {
    #header-txt h1 {
        font-size: 30px;
    }
    #who-txt {
        text-align: center;
    }
    #who-txt h5 {
        font-size: 28px;
    }
    #who-txt p {
        padding: 0;
        font-size: 14px;
    }
}
@media only screen and (max-width: 375px) {
    #promo-img {
        min-height: 650px;
    }
    #footer-cta button, #header-txt button {
        width: 90%;
    }
}
@media only screen and (max-width: 325px) {
    #promo-img {
        min-height: 550px;
    }
    #header-txt h1, #footer-txt h1 {
        font-size: 25px;
    }
}