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

html {
  scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif !important;
}

body p, li {
    font-size: 17px;
    margin-bottom: 1px;
}

.card-texts {
    margin: 12px 0 0 290px !important;
}

.card-texts p {
    font-size: 23px !important;
}

.fluxograma-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header CSS */

#header {
    display: flex;
    justify-content: space-between;
    background: #eeeeee;
    padding: 25px 55px;
}

#header #headerImg {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header #topContactButton {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

#header #topContactButton a.btn-contact-representative {
    border: 2.5px #c92e1a solid;
    font-weight: 900;
    color: #c92e1a;
    border-radius: 50px;
    padding: 7px 30px;
}

#header #topContactButton a:link {
    text-decoration: none;
}

#header #topContactButton a:hover {
    text-decoration: none;
}

/* End */

/* Presentation Section CSS */

#presentation {
    background: url("../img/slider.jpg") top center no-repeat;
    background-size: 100%;
}

#presentation img {
    position: absolute;
}

#presentation .texts-container .texts {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
}

#presentation .texts-container .texts .btn-contact {
    border: 2px #c52c16 solid;
    background: #c52c16;
    font-weight: bold;
    color: #ffffff;
    border-radius: 40px;
    padding: 12px 50px;
}

#presentation .texts-container .texts .btn-contact:link {
    text-decoration: none;
}

#presentation .texts-container .texts .btn-contact:hover {
    text-decoration: none;
}

/* End */

/* Presentation Details Section CSS */

#presentationDetails .box {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 180px;
    margin-left: 50px;
}

/* End */

/* Main Features Section CSS */

#mainFeatures {
    display: flex;
    align-items: start;
    justify-content: space-around;
    flex-wrap: nowrap;
}

/* End */

/* App Section CSS */

#appSection {
    background: #eeeeee;
    font-size: 13px;
}

#appSection .app-description {
    padding: 5px 50px;
}

/* End */

/* Contact Section CSS */

#contact {
    margin-top: 45px;
    background: url("../img/bg-footer.jpg") top center no-repeat;
    background-size: 100%;
}

#contact .btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 300;
    color: #ffffff;
    background: #25d366;
    padding: 4px 20px;
    width: 335px;
    border-radius: 45px;
    text-decoration: none;
}

#contact .flex-whats .btn-whatsapp a:link {
    text-decoration: none;
}

#contact .content .flex-whats .btn-whatsapp a:hover {
    text-decoration: none;
}

#contact .flex-whats {
    padding: 20px;
    flex-wrap: nowrap;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

#contact .btn-send-form {
    font-weight: 700;
    background: #ffffff;
    padding: 15px 30px;
    border-radius: 45px;
    color: #005fb9;
    -webkit-box-shadow: 9px 10px 28px -2px rgba(0, 0, 0, 0.2);
    box-shadow: 9px 10px 28px -2px rgba(0, 0, 0, 0.2);
    transition: all .2s;
}

#contact .btn-send-form:hover {
    -webkit-box-shadow: 9px 10px 50px -2px rgba(0, 0, 0, 0.3);
    box-shadow: 9px 10px 50px -2px rgba(0, 0, 0, 0.3);
}

#contact .contact-row {
    padding-top: 150px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

/* End */

/* General */

ul {
    padding: 0;
    list-style-type: none;
}

ul li {
    margin-bottom: 10px;
}

h1, h2.title {
    font-weight: 900;
}

.gray-color {
    color: #4a4c4c;
}

h1.orange-title {
    font-weight: 900;
    color: #c52c16;
}

/* End */

/* Contact Form Inputs CSS */

.inputCommum {
    display: inline-block;
    width: 100%;
    position: relative;
    margin: 16px 0;
}

.inputCommum label {
    position: absolute;
    top: -15px;
    left: 16px;
    background: #FFF;
    z-index: 2;
    padding: 0 8px;
    font-size: 16px;
}

.inputCommum input {
    border: 2px solid #ae9cda;
    height: 50px;
    line-height: 55px;
    background: #FFF;
    width: 100%;
    border-radius: 3px;
    padding: 0 16px;
    font-size: 18px;
    font-family: Roboto Medium, Arial, Helvetica, sans-serif;
    transition: border .3s ease;
    color: #666;
}

.inputCommum input:focus {
    border: 2px solid #FF7F00;
    color: #333;
}

.inputCommum .erro {
    display: inline-block;
    font-size: 13px;
    text-align: left;
    width: 100%;
    color: #D90000;
    opacity: 0;
    transition: opacity .3s ease;
}

.inputCommum.erro input {
    border: 2px solid #D90000;
    color: #333;
}

.inputCommum.erro .erro {
    opacity: 1;
}

.inputCommum textarea {
    border: 2px solid #AE9CDA;
    line-height: 144%;
    background: #FFF;
    width: 100%;
    border-radius: 3px;
    padding: 16px;
    font-size: 16px;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    transition: border .3s ease;
    color: #ae9cda;
    max-width: 100%;
    min-width: 100%;
}

.inputCommum textarea:focus {
    border: 2px solid #FF7F00;
    color: #333;
}

textarea:focus, input:focus, a, button {
    border: 0;
    outline: none;
}

/* End */

/* Responsive CSS */

@media only screen and (max-width: 767.98px) {
    body {
        overflow-x: hidden !important;
    }

    body h1 {
        font-size: 30px !important;
    }

    body h2 {
        font-size: 25px !important;
    }

    body p {
        font-size: 20px !important;
    }

    body ul li {
        font-size: 20px !important;
    }

    #header {
        display: flex;
        justify-content: space-between;
        background: #eeeeee;
        padding: 20px 20px;
    }

    #header #headerImg {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #header #topContactButton a.btn-contact-representative {
        border-radius: 50px;
        padding: 7px 11px;
    }

    #header #topContactButton .btn-contact-representative span.btn-text {
        display: none;
    }

    #presentation #imgSystemContainer {
        display: flex;
        align-items: start;
        justify-content: center;
    }

    #presentation img {
        position: relative !important;
        margin: 30px 40px !important;
        width: 400px;
    }

    #presentation .texts-container {
        margin-top: 0 !important;
        padding: 0 0 20px 0 !important;
        margin-bottom: 40px !important;
    }

    #presentation .texts-container .texts .btn-contact {
        padding: 12px 50px;
        font-size: 20px;
    }

    #presentation .texts-container .texts {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #presentation .texts-container .texts h3 {
        color: #000000 !important;
        font-size: 38px !important;
    }

    #presentation .texts-container .texts p {
        font-size: 30px !important;
    }

    .card-texts {
        margin: 60px 0 0 0 !important;
    }

    .card-texts p {
        font-size: 20px !important;
    }

    #mainFeatures .features-description {
        padding: 5px 50px;
    }

    #appSection .app-img {
        margin-bottom: 20px;
    }

    #presentationDetails {
        margin: 0 !important;
    }

    #presentationDetails .box {
        display: flex;
        flex-direction: column !important;
        justify-content: space-evenly;
        align-items: center;
        margin-top: 0 !important;
        margin-left: 0 !important;
    }

    #presentationDetails .box p {
        text-align: center !important;
        margin-bottom: 30px;
        font-size: 23px !important;
    }

    #mainFeatures .computers {
        margin-top: -80px;
    }

    #contact .form {
        padding: 0 !important;
    }

    #contact .contact-row {
        padding-top: 0;
    }

    #contact .flex-whats .title {
        color: #151515 !important;
    }

    #contact {
        background: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    body {
        overflow-x: hidden !important;
    }

    body h1 {
        font-size: 30px !important;
    }

    body h2 {
        font-size: 25px !important;
    }

    body p {
        font-size: 30px !important;
    }

    body ul li {
        font-size: 30px;
    }

    #header {
        display: flex;
        justify-content: space-between;
        background: #eeeeee;
        padding: 20px 20px;
    }

    #header #headerImg {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #header #topContactButton a.btn-contact-representative {
        border-radius: 50px;
        padding: 7px 11px;
    }

    #header #topContactButton .btn-contact-representative span.btn-text {
        display: none;
    }

    #presentation #imgSystemContainer {
        display: flex;
        align-items: start;
        justify-content: center;
    }

    #presentation img {
        position: relative;
        margin: 30px 40px !important;
        width: 500px;
    }

    #presentation .texts-container {
        margin-top: -40px !important;
        padding: 60px 0 20px 0 !important;
        margin-bottom: 40px !important;
    }

    #presentation .texts-container .texts .btn-contact {
        padding: 12px 50px;
        font-size: 20px;
    }

    #presentation .texts-container .texts {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #presentation .texts-container .texts h3 {
        color: #000000 !important;
        font-size: 38px !important;
    }

    #presentation .texts-container .texts p {
        font-size: 30px !important;
    }

    .card-texts {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 10px 0 0 130px !important;
    }

    .card-texts p {
        font-size: 25px !important;
    }

    .fluxograma-img {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #mainFeatures .features-description {
        padding: 5px 50px;
    }

    #appSection .app-img {
        margin-bottom: 20px;
    }

    #presentationDetails {
        margin: 0 !important;
    }

    #presentationDetails .box {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        margin-top: 0 !important;
        margin-left: 0 !important;
    }

    #presentationDetails .box p {
        text-align: center !important;
        margin-bottom: 30px;
        font-size: 23px !important;
    }

    #mainFeatures .computers {
        margin-top: -80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #contact .form {
        padding: 0 !important;
    }

    #contact .contact-row {
        padding-top: 0;
    }

    #contact .flex-whats .title {
        color: #151515 !important;
    }

    #contact {
        background: none;
    }
}

/* End */
