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

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 400;
    font-style: normal;
    font-family: "Roboto";
    user-select: none;
    --color-primary: #f1373f;
    --color-secondary: #ffffff;
    --color-tertiary: #6C6C6C;
    --color-fourth: #242423;
    --color-fifth: #1b1b1b;
    --color-button: green;
}

*:focus {
    outline: none;
    /* background-color: ; */
}

.container {
    display: block;
    width: 100%;
    max-width: 1300px;
    margin: auto;
}

.container h1 span {
    font-weight: 300;
    display: block;
    width: 100%;
    margin: auto;
    margin-bottom: 30px;
    padding: 10px 20px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.5);
}

h1 {
    color: var(--color-secondary);
    display: block;
    float: left;
    font-size: 30px;
    text-align: center;
    width: 100%;
    font-weight: 700;
}

h2 {
    display: block;
    float: left;
    font-size: 26px;
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}

h3 {
    display: block;
    float: left;
    font-size: 20px;
    text-align: center;
    width: 100%;
}

header {
    display: block;
    float: left;
    width: 100%;
    height: 100dvh;
    max-height: 800px;
}

.menu {
    margin-left: 50%;
    margin-top: 50px;
}

.menu a {
    text-decoration: none;
    color: white;
    margin-right: 14px;
    border-radius: 3px;
    cursor: pointer;
}

.menu a:last-child {
    color: black;
    background-color: var(--color-button);
    margin-right: 0px;
    padding: 10px;
    color: white;
    border-radius: 10px;
}

.menu a:last-child:hover {
    background-color: var(--color-button);
}

.logo {
    display: block;
    position: absolute;
    top: 0px;
    width: 270px;
    height: 100px;
    margin-top: 10px;
    padding: 10px;
    z-index: 10;
}

.logo img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

header .btnTop {
    display: block;
    float: right;
    padding: 0 60px 0 60px;
    line-height: 45px;
    color: white;
    border: 2px solid white;
    border-radius: 7px;
    margin-top: 10px;
    cursor: pointer;
}

header .btnTop svg {
    display: none;
}

header .btnTop:hover {
    transform: scale(1.1);
    transition: 0.5s;
    background-color: #4d9fc8;
}

header .btnTop:not(:hover) {
    transition: 0.5s;
}

main {
    display: block;
    float: left;
    width: 100%;
}

#loadding {
    display: block !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    z-index: 99999;
}

#loadding .load {
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 5px solid #f3f3f3;
    /* Light grey */
    border-top: 5px solid #666;
    /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.imageRef {
    display: none;
}

.bannerPrincipal {
    background-size: cover;
    width: 100%;
}

.banner-overlay {
    float: left;
    backdrop-filter: brightness(0.5) blur(2px);
    width: 100%;
    height: 100%;
}

.banner-section {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.banner1 {
    display: block;
    float: left;
    width: 100%;
    background-origin: content-box;
    background-size: 75%;
    height: 685px;
}


.textoBanner {
    display: block;
    padding: 80px 10px;
    position: relative;
    margin-bottom: 15%;
}


.textoBanner .layout {
    margin-top: 70px;
    display: block;
}

.textoBanner .text {
    display: block;
    text-align: center;
    letter-spacing: 0.2px;
    width: 100%;
    font-size: 20px;
    margin-top: 30px;
    line-height: 1.5;
    color: var(--color-secondary);
    padding-left: 20px;
    font-family: "Open Sans";
}

.layout .btnEnfase {
    font-size: 16px;
}

.layout .btnEnfase {
    color: black;
    text-align: center;
    display: block;
    margin: auto;
    max-width: 400px;
    width: 95%;
    float: none;
}

.block {
    display: block;
    float: left;
    width: 100%;
    padding: 40px 0;
    background-color: var(--color-secondary);
}

/* Problem row */

.problem-row {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.problem-section {
    display: flex;
    justify-content: space-evenly;
    gap: 40px;
}

.big-problem-section {
    width: 65%;
    display: flex;
}

.big-problem-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style-type: none;
}

.big-problem-section li {
    min-height: 90px;
    display: flex;
    gap: 20px;
}

.big-problem-section li span:first-child {
    margin: auto;
}

.big-problem-section li span:last-child {
    padding: 15px;
    border-bottom: solid 1px rgba(137, 137, 137, 0.615);
    width: 100%;
}

.big-problem-section .btnEnfase {
    text-wrap: balance;
}

.small-problem-section {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center
}

.small-problem-section .icone {
    color: var(--color-primary);
    width: auto;
    font-size: 45px;
    margin-right: 20px;
}


.small-problem-section h2 {
    text-align: start;
    margin: 0;
}

.team-help {
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-help h3 {
    width: auto;
    height: auto;
    padding: 15px 10px;
    margin: 0 !important;
    border-radius: 15px;
    border: dashed 3px var(--color-fourth);
}

.team-help .btnEnfase {
    text-wrap: nowrap;
}

/* Know us */

.know-us-row {
    background-color: var(--color-fifth);
}

.know-us-row h2 {
    color: #ffff;
}

.know-us-row h2 span {
    text-decoration: underline 2px var(--color-primary);
}

.know-us-section {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 20px;
}

.know-us-section .icone {
    transition: 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: rgba(255, 255, 255, 0.485);
    aspect-ratio: 1/1;
    text-align: center;
    color: #000;
    border-radius: 500px;
    padding: 5px;
    width: min-content;
    font-size: 25px;
}

.know-us-col {
    min-height: 253.3px;
    color: #ffffffb0;
    transition: 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
    border: solid 1px rgba(255, 255, 255, 0.096) !important;
    border-radius: 15px;
    padding: 25px;
    text-align: justify;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    background-color: var(--color-fifth);
    border: solid 1px;
}

.know-us-col:hover {
    transition: 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #fff;
    transform: scale(1.05);
    border: solid 1px rgba(255, 255, 255, 0.428) !important;
}

.know-us-col:hover .icone {
    transition: 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: #fff;
}

.know-us-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.help {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.help .btnEnfase {
    text-wrap: nowrap;
}

.know-us-accordion {
    margin: auto;
}



/* Know three problems */

.know-three-row h2 span {
    color: var(--color-primary);
    font-size: 30px;
}

.know-three-row h3 span {
    text-decoration: underline 2px var(--color-primary);
}

.know-three-section {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 20px;
}

.know-three-col {
    aspect-ratio: 1.5/1;
    border: solid 1px rgba(0, 0, 0, 0.119);
    border-radius: 2px;
    padding: 25px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.block h3 {
    margin-top: 30px;
}


.know-three-col h4 {
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
}

.know-three-col .icone {
    width: auto;
    font-size: 28px;
    color: var(--color-secondary);
    background-color: var(--color-primary);
    aspect-ratio: 1/1;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
}

.know-three-col p {
    text-align: center;
}

.item {
    width: unset;
    height: unset;
}


.infocol3 {
    background-color: #cbcbcb35;
    display: block;
    float: left;
    width: calc(100% / 3);
    border: 1px solid #00000020;
    height: 300px;
    margin-top: 20px;
    padding: 50px;
    border-radius: 5%;
}

.infocol3 .icone {
    display: block;
    margin: auto;
    width: 50px;
}

.btnModal {
    display: block;
    width: calc(100% / 3);
    margin: auto;
}

.btnModal2 {
    display: block;
    float: right;
    margin: auto;
}

.btnModal2,
.info .btnEnfase {
    margin-top: 8px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 19px;
}


.infocol3 .text {
    display: block;
    float: left;
    width: 100%;
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
    color: #111;
}

.infocol3:nth-child(n+3) {
    border-left: none;
}

.carrossel:not(hover) {
    background-color: var(--color-fifth);
    padding: 40px 0 40px 0;
    display: block;
    float: left;
    width: 100%;
}

.marginAdd {
    margin-top: 20px;
}

.carrossel .container {
    padding: 20px 0px 40px 0px;
    display: table;
    position: relative;
    text-align: center;
}

.carrossel .container:last-child {
    background-color: var(--color-secondary);
    padding: 40px 20px 20px;
    border-radius: 30px;
}

.carrossel h1 strong {
    font-weight: 700;
}

.carrossel h2 {
    display: block;
    float: left;
    width: 100%;
    margin-top: 20px;
    text-align: left;
}

.carrossel h3 {
    color: var(--color-secondary);
}

.carrossel .fullLayout {
    display: block;
    float: left;
    white-space: nowrap;
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
}

.carrossel .iconLeft {
    display: block;
    position: absolute;
    top: 50%;
    left: -20px;
    width: 40px;
    height: 40px;
    padding: 15px;
    border-radius: 50%;
    color: #666;
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    z-index: 9999 !important;
    margin-top: -40px;
    cursor: pointer;
}

.carrossel .iconRight {
    display: block;
    position: absolute;
    top: 50%;
    right: -85px;
    width: 40px;
    height: 40px;
    padding: 15px;
    border-radius: 50%;
    color: #666;
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    z-index: 9999 !important;
    margin-top: -40px;
    cursor: pointer;
}

.carrossel .fullLayout .banner3 {
    display: inline-block;
    margin-right: 20px;
    /* width: calc((100% / 3) - (40px / 3)); */
    width: 100%;
    height: 50%;
}

.carrossel .fullLayout .banner3 img {
    width: 30%
}

.carrossel .fullLayout .banner3:last-child {
    margin-right: 0;
}

.owl-carousel {
    max-width: 1300px;
    width: 100vw;
    box-sizing: border-box;
    height: 90%;
}

.owl-carousel .owl-item img {
    /* aspect-ratio: 5 / 3; */
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background-position: center;
    display: block;
    padding: 0 10px;
    /* width: 390px; */
}

.owl-theme .owl-dots .owl-dot span {
    background: var(--color-secondary);
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--color-tertiary) !important;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-primary);
}


.container-grid {
    display: flex;
    width: 100%;
    background-color: var(--color-secondary);
}

.child-grid {
    width: 50%;
    padding: 40px 20px 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.child-grid h2 {
    font-size: 26px;
    text-align: center;
    margin: 0;
}

.child-grid .text {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    padding: 0%;
    text-align: justify;
}

.child-grid img {
    display: block;
    float: left;
    width: 100%;
    background: url("../images/general/fachada.jpg") no-repeat right center #fff;
    background-origin: content-box;
    background-size: 50%;
}

.child-grid .btnEnfase {
    float: none;
    margin: auto;
}


footer {
    display: block;
    float: left;
    width: 100%;
}

.text2 {
    display: block;
    margin: auto;
    max-width: 400px;
    width: 95%;
    color: white !important;
}

.text2 .btnEnfase {
    color: black;
}

.container_line .container>h1 {
    color: white;
    text-align: center;
}

.text {
    display: block;
    width: 100%;
    float: left;
    text-align: center;
    line-height: 1.5;
    font-size: 18px;
    margin-top: 20px;
    color: white;
    margin-bottom: 20px;
}

.background_primary .text {
    background-color: var(--color-button);
    padding: 15px;
    border-radius: 30px;
}

.business {
    display: block;
    float: left;
    width: 100%;
    background-color: var(--color-secondary);
}

.business h1 {
    color: var(--color-fourth);
    padding-top: 40px;
}

.business h3 {
    margin: auto;
}

.business h3 span {
    text-decoration: underline 2px var(--color-primary);
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    border: solid 1px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 50%;
    float: right;
    margin-bottom: 20px;
}

.form-container h2 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

.form-group button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: var(--color-button);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.form-group button:hover {
    background-color: var(--color-button);
}

.half_display {
    display: block;
    float: left;
    width: 50%;
    padding: 50px;
}

.container_divid {
    display: block;
    width: 100%;
    padding: 50px;
}

.contact1 {
    display: block;
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

.contact1 hr {
    margin: 10px 0;
    color: #ff00003e;
}

.contact1 a {
    font-size: 19px;
    transition: 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--color-fifth);
}

.contact1 a:hover {
    transition: 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--color-primary);
}

.contact1 .icone {
    display: block;
    float: left;
    width: 24px;
}

.contact1 .icone .icon {
    color: var(--color-primary);
    width: 20px;
    height: 20px;
}

.contact1 .text {
    display: block;
    float: left;
    width: calc(100% - 70px);
    margin-top: 0;
}

.contact1 .text .label {
    display: block;
    float: left;
    width: 100%;
    font-size: 14px;
    color: #333;
    text-align: left;
}

.contact1 .text .value {
    display: block;
    float: left;
    width: 100%;
    font-size: 20px !important;
    color: var(--color-button);
    font-weight: 600;
    text-align: left;
}

.licence {
    display: block;
    float: left;
    width: 100%;
    text-align: center;
    background-color: var(--color-fifth);
    padding: 20px 0;
    color: white !important;
    font-weight: 300 !important;
}

.btnEnfase {
    cursor: pointer;
    display: table;
    float: left;
    margin-top: 30px;
    padding: 20px 10px;
    text-align: center;
    max-width: 400px;
    width: 95%;
    font-weight: 400;
    background-color: var(--color-button);
    color: white !important;
    font-size: 20px;
    border-radius: 10px;
    text-transform: uppercase;
}

.btnEnfase:hover {
    background-color: var(--color-button);
}

.powerby {
    display: block;
    margin: 5px auto 0px auto;
    padding-left: 20px;
}

.powerby a {
    color: #ccc;
}

.powerby a:visited {
    color: #ccc;
}

#projetos {
    height: unset;
    width: 100vw !important;
    box-sizing: border-box;
}

.arrow-up {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    border: none;
    border-radius: 2px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    padding: 20px;
    text-align: center;
    aspect-ratio: 1/1;
    z-index: 5;
    cursor: pointer;
}

@media screen and (max-width: 1300px) {

    .menu {
        width: max-content;
        margin-left: 40dvw;
    }

    .menu a {
        text-wrap: nowrap;
    }

    .container {
        display: block;
        width: 100%;
        max-width: 1000px;
        margin: auto;
    }

    .container-grid {
        display: flex;
    }


    .container-grid .btnEnfase {
        margin-bottom: 30px;
    }

    .know-three-col {
        aspect-ratio: unset;
        width: 100%;
        height: 290px;
    }
}


@media screen and (max-width: 1000px) {
    .container {
        padding: 0 25px;
        box-sizing: border-box;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    header {
        height: auto;
    }

    .bannerPrincipal {
        background-size: cover;
        background-position: center center;
        background-repeat: none;
        height: 85dvh;
    }

    .banner-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .logo {
        width: 50%;
        height: auto;
        margin-top: 40px;
        left: 25%;
    }


    .logo img {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 90%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .container h1 span {
        font-size: 18px;
    }

    .menu {
        display: none;
    }

    .imageRef {
        display: block;
        float: left;
        width: 100%;
    }

    .imageRef img {
        display: block;
        float: left;
        width: 100%;
    }

    header .btnTop {
        display: none;
    }

    #projetos {
        width: calc(100vw - 40px);
    }

    header .btnTop span {
        display: none;
    }

    header .btnTop svg {
        display: block;
        width: 50px;
        height: 50px;
        fill: white;
    }

    header .btnTop:hover {
        background-color: transparent
    }

    .banner1 {
        background: transparent;
        background-size: 100%;
        height: auto
    }

    .info {
        background: transparent;
        background-origin: content-box;
        position: relative;
    }

    .info h1,
    .info .text {
        color: #111 !important;
    }

    .textoBanner {
        width: 100%;
        padding: 40px 0;
    }

    .textoBanner .layout {
        display: flex;
        justify-content: center;
    }

    .btnEnfase {
        font-size: 15px;
    }

    .carrossel .btnEnfase {
        width: 80%;
        margin-left: 10% !important;
    }

    .help .btnEnfase {
        text-wrap: balance;
    }


    .textoBanner .text,
    .textoBanner .text1 {
        width: 100%;
        font-size: 18px;
        text-align: center;
        padding-left: 0;
    }

    .removedPhone {
        display: none;
    }


    .container-grid {
        display: block;
    }

    .child-grid {
        width: 100%;
    }

    .problem-section {
        display: flex;
        flex-direction: column;
    }

    .small-problem-section {
        width: 100%;
    }

    .big-problem-section {
        width: 100%;
    }

    .know-us-section {
        grid-template-columns: repeat(1, 1fr);
    }

    .know-three-section {
        grid-template-columns: repeat(1, 1fr);
    }

    .textoBanner .video {
        display: block;
        float: left;
        width: 100%;
        margin-top: 20px;
        background-color: white;
    }

    .infocol3 {
        width: 100%;
        height: auto;
        margin-top: 20px;
        padding: 20px 40px;
        border-radius: 5%;
    }

    .btnModal {
        width: 100%;
    }

    .infocol3 .text {
        display: block;
        float: left;
        width: 100%;
        font-size: 18px;
        text-align: center;
        margin-top: 10px;
        color: #111;
    }

    .infocol3:nth-child(n+3) {
        border-left: 1px solid #111
    }

    .carrossel {
        width: 100vw;
    }

    .carrossel .iconLeft {
        bottom: 50%;
        left: 30px;
        width: 20px;
        height: 20px;
        color: white;
        margin-top: -20px;
        cursor: pointer;
        background: rgba(0, 0, 0, 0.2);
    }

    .carrossel .iconRight {
        bottom: 50%;
        right: -20px;
        width: 20px;
        height: 20px;
        color: white;
        margin-top: -20px;
        background: rgba(0, 0, 0, 0.2);
    }

    .owl-carousel {
        width: 90vw;
        margin-left: 5vw;
    }

    .owl-carousel .owl-item {
        width: 100%;
        overflow: hidden;
    }

    .owl-carousel .owl-item img {
        display: block;
        padding: 0 10px;
        width: calc(100% - 20px) !important;
        height: auto;
    }

    .owl-carousel .item {
        aspect-ratio: 1/1;
        display: flex;
        justify-content: center !important;
        align-items: center !important;
    }

    .owl-carousel .owl-item img {
        padding: 0;
        width: 100%;
    }

    .footer2 {
        padding: 40px 0;
    }

    .half_display {
        width: 100%;
        padding: 0px;
        margin-top: 20px;
    }

    .half_display a {
        font-size: 14px;
        ;
    }

    .form-container {
        width: 100%;
    }

    .business h3 {
        text-align: justify;
    }
}

@media screen and (max-width: 500px) {
    .owl-dots {
        display: none !important;
    }
}