html, body {
    min-height: 100%;
}

body {
    font-family: "Cambay", sans-serif;
    color: #EFEFEF;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vh;
    height: 100vw;
    background-image: url("/themes/4ca91fa9-40c6-49cc-9a7e-9a858a8c3286/body.png");
    background-size: cover;
    transform-origin: top left;
    z-index: -1;
    transform: rotate(90deg) translateY(-100%);
}

.wrapper {
    width: 90%;
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
}

header .header-title, .about,
header nav ul, header a.connect,
.home .info, .home .buttons .button,
.customers > div:first-child, .customers .wrapper,
.services > div:first-child, .services .icon {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
    backdrop-filter: blur(20px);
}

.news ul li, .news ul::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1.34%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
}

header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 120px;
}

header .header-title {
    display: flex;
    align-items: center;
    border: 1px solid #656565a3;
    border-radius: 20px;
    padding: 2px 13px;
}

header .header-title h1 {
    font-size: 23px;
    margin: 0;
    padding-right: 5px;
}

header .header-title .logo {
    display: inline-block;
    vertical-align: top;
}

header .header-title .logo img {
    max-width: 30px;
    max-height: 30px;
}

header nav {
    flex-grow: 1;
    justify-items: center;
}

header nav ul {
    text-align: center;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    border: 1px solid #656565a3;
    border-radius: 20px;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a {
    text-decoration: none;
    color: #EFEFEF;
    font-size: 18px;
    padding: 0 15px;
}

header .buttons a {
    display: inline-block;
    font-size: 23px;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    vertical-align: top;
}

header .buttons a i {
    margin-top: 7px;
}

header .buttons a:first-child {
    margin-right: 10px;
}

header a.connect {
    color: #EFEFEF;
    padding: 10px 25px;
    border-radius: 20px;
    border: 1px solid #656565a3;
    text-decoration: none;
    font-size: 18px;
}

.home {
    display: flex;
    width: 100%;
    margin: 1rem 0;
    min-height: 490px;
}

.home .info {
    flex-grow: 1;
    border: 1px solid #656565a3;
    border-top-left-radius: 35px;
    border-bottom-left-radius: 35px;
    padding: 50px 70px;
    margin-right: -25px;
    align-content: center;
}

.home .info h3 {
    font-size: 34px;
    margin: 0;
}

.home .info h1 {
    font-size: 54px;
    margin: 0;
}

.home .info .text {
    display: inline-block;
    font-size: 20px;
    margin: 20px 0;
    width: 100%;
}

.home .info .buttons {
    display: inline-block;
    width: 100%;
}

.home .buttons .button {
    display: inline-block;
    vertical-align: top;
    color: #EDEDED;
    border: 1px solid #656565a3;
    font-size: 24px;
    border-radius: 30px;
    padding: 16px 30px 10px 30px;
    text-decoration: none;
}

.home .info .buttons .button:last-child {
    margin-left: 10px;
    padding-right: 20px;
}

.home .buttons i {
    transform: rotate(45deg);
    margin-left: 5px;
}

.home .bg {
    width: 35%;
    background-image: url("/themes/4ca91fa9-40c6-49cc-9a7e-9a858a8c3286/home.jpg");
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border-top-right-radius: 35px;
    border-bottom-right-radius: 35px;
}

.about {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #656565a3;
    border-radius: 35px;
    margin: 7rem 0;
}

.about > div:first-child {
    display: flex;
    align-items: center;
}

.about h1 {
    width: max-content;
    font-size: 50px;
    font-weight: normal;
    padding: 2rem;
}

.about img {
    height: 320px;
    margin: -25px 0;
}

.about .text {
    padding: 0 2rem;
    font-size: 18px;
}

.about .text strong {
    font-size: 22px;
}

.services {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.services .services-title {
    padding: 16px 35px;
    border-radius: 60px;
    border: 1px solid #656565a3;
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
    position: relative;
}

.services-title::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 77px;
    background: rgba(255,255,255,0.3);
}

.services .services-title h1 {
    font-size: 45px;
    margin: 0;
}

.services .list {
    width: 100%;
}

.services .list ul {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 60px 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.services .list li {
    position: relative;
    flex: 0 0 calc(25% - 40px);
    max-width: calc(25% - 40px);
    text-align: center;
    color: white;
    z-index: 2;
}

.services .list li::before {
    content: "";
    position: absolute;
    top: 40px;
    left: -20px;
    right: -20px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    z-index: 1;
}

.services .list li::after {
    content: "";
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.3);
}

.services .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 55px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.services .icon i {
    color: white;
    font-size: 28px;
}

.services .title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.services .list li p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 250px;
    margin: 0 auto;
}

.customers {
    display: flex;
    align-items: stretch;
    width: 100%;
    padding-top: 50px;
    margin: 6rem 0;
}

.customers > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 40px;
    border: 1px solid #656565a3;
    padding: 40px;
    margin-right: -70px;
    z-index: 1;
    width: 272px;
    align-items: flex-start;
}

.customers .wrapper {
    border-radius: 40px;
    border: 1px solid #656565a3;
    padding: 10px 30px 10px 75px;
}

.customers h1 {
    font-size: 55px;
    margin: 0;
    font-weight: normal;
}

.customers h3 {
    font-size: 20px;
    margin: 0;
    font-weight: normal;
}

.customers ul {
    display: inline-block;
    width: 100%;
    list-style-type: none;
    padding: 0;
    margin: 60px 0 0 0;
    text-align: center;
}

.customers ul li {
    display: inline-block;
    width: calc(33.33% - 30px);
    margin-bottom: 60px;
    vertical-align: top;
    box-sizing: border-box;
    padding: 20px;
}

.customers ul li:nth-child(3n + 2) {
    margin: 0 40px;
}

.customers ul li .logo {
    height: 150px;
    align-content: center;
}

.customers ul li .depoimento {
    min-height: 150px;
    margin-top: 1rem;
}

.customers ul li .logo img {
    width: 80%;
    max-width: max-content;
    max-height: stretch;
}

.customers ul li h4 {
    font-weight: normal;
    font-size: 24px;
    margin: 10px 0 0 0;
    text-align: center;
}

.customers ul li p {
    text-align: center;
    margin: 10px 0;
    color: #717171;
}

.extra {
    display: inline-block;
    width: 100%;
    margin-bottom: 6rem;
}

.extra h1 {
    font-size: 66px;
    margin: 0;
    text-align: center;
}

.extra h3 {
    font-size: 20px;
    color: #717171;
    text-align: center;
    margin: 0;
    font-weight: normal;
}

.split-section {
    display: flex;
    width: 100%;
}

.contact {
    display: inline-block;
    width: calc(50% - 20px);
    margin-right: 20px;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 30px;
}

.contact h1 {
    font-size: 66px;
    margin: 0;
}

.contact h3 {
    font-size: 20px;
    color: #717171;
    margin: 0;
    font-weight: normal;
}

.contact ul {
    display: inline-block;
    list-style-type: none;
    width: 100%;
    padding: 0;
    margin: 20px 0;
}

.contact ul li {
    padding: 10px 0;
    font-size: 20px;
    color: #F6F6F6;
    box-sizing: border-box;
}

.contact .content {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}

.contact ul li:not(:last-child) {
    margin-bottom: 20px;
}

.contact ul li .icon {
    width: 45px;
    text-align: center;
}

.contact ul li i {
    font-size: 32px;
    margin-right: 10px;
}

.contact iframe {
    display: inline-block;
    width: 100%;
    height: 300px;
    border: none;
    margin-top: 10px;
    border-radius: 30px;
}

.contact.full {
    width: 100%;
    margin-right: 0;
}

.contact.full ul li {
    width: calc(33.33% - 20px);
}

.contact.full ul li:nth-child(3n + 2) {
    margin: 0 25px 20px 25px;
}

.news {
    display: flex;
    flex-direction: column;
    width: calc(50% - 20px);
    margin-left: 20px;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 30px;
}

.news > h1 {
    font-size: 66px;
    margin: 0;
}

.news h3 {
    font-size: 20px;
    color: #717171;
    margin: 0;
    font-weight: normal;
}

.news ul {
    display: inline-block;
    width: 100%;
    list-style-type: none;
    overflow-y: scroll;
    flex-grow: 1;
    height: 0;
    box-sizing: border-box;
    padding: 0 15px 0 0;
    margin: 20px 0 0 0;
}

.news ul::-webkit-scrollbar {
    width: 10px;
    position: absolute;
}

.news ul::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.news ul::-webkit-scrollbar-thumb {
    border-radius: 7px;
}

.news ul li {
    display: inline-block;
    border-radius: 28px;
    margin: 10px 0;
    width: 100%;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.news ul li:first-child {
    margin-top: 0;
}

.news ul li a {
    display: flex;
    text-decoration: none;
}

.news ul li .preview {
    width: 35%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
}

.news ul li .info {
    flex-grow: 1;
    box-sizing: border-box;
    padding: 15px;
}

.news ul li .info h1 {
    font-weight: normal;
    color: #F6F6F6;
    font-size: 24px;
}

.news ul li .info span {
    color: #717171;
}

footer {
    display: inline-block;
    width: 100%;
    height: 100px;
    vertical-align: top;
    margin-top: 80px;
}

footer .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .socials {
    display: inline-block;
}

footer .socials a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    font-size: 36px;
    padding: 0 20px;
    line-height: 23px;
    color: #F6F6F6;
}

footer span {
    font-size: 18px;
}

footer span a {
    text-decoration: none;
    color: #F6F6F6;
}

.hide-mobile {
    display: initial;
}

.hide-desktop, header .menu-title, .divider {
    display: none;
}

@media screen and (max-width: 1500px) {
    .about h1 {
        font-size: 40px;
        padding: 1rem;
    }

    .about .text {
        padding: 0 1rem;
        font-size: 17px;
    }

    .about .text strong {
        font-size: 20px;
    }

    .about img {
        height: 300px;
    }

    .customers > div:first-child {
        padding: 20px;
        width: 250px;
    }

    .customers h1 {
        font-size: 40px;
    }

    .customers .wrapper {
        padding: 10px 10px 10px 75px;
    }

    .services .services-title h1 {
        font-size: 40px;
    }
}

@media screen and (max-width: 1080px) {
    header .header-title h1 {
        display: none;
    }

    header nav ul li a {
        padding: 0 10px;
    }

    .home .info .buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .home .info .buttons .button:last-child {
        margin: 0;
    }

    .about {
        flex-direction: column;
        padding: 15px;
    }

    .about > div:first-child {
        width: 100%;
        justify-content: space-between;
    }

    .about img {
        margin: -85px 15px 15px 0;
        height: 270px;
    }

    .customers {
        flex-direction: column;
    }

    .customers > div:first-child {
        width: auto;
        margin: 0 0 -75px 0;
        padding: 40px;
    }

    .customers .wrapper {
        padding: 0;
        margin: 0;
        width: auto;
    }

    .services .list li {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media screen and (max-width: 870px) {
    .split-section {
        flex-direction: column;
        gap: 2rem;
    }

    .contact.full .contact-us {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact.full .contact-us li {
        width: 100%;
    }

    .split-section .contact {
        width: 100%;
        margin: 0;
    }

    .split-section .news {
        width: 100%;
        margin: 0;
        min-height: 40em;
    }

    .hide-mobile, header .logo, header .buttons {
        display: none !important;
    }

    .hide-desktop {
        display: block;
    }

    body {
        padding-top: 76px;
    }

    header {
        background: transparent;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1000;
        height: 70px;
        justify-content: center;
    }

    header .header-title, header .menu-title {
        display: flex;
        flex-direction: row;
        align-items: center;
        max-width: 60%;
    }

    header .header-title {
        position: absolute;
        right: 5%;
    }

    header .menu-title {
        position: absolute;
        top: 0;
        right: 0;
        padding: 20px;
    }

    header .header-title .logo-title img, header .menu-title .logo-title img {
        max-width: 30px;
        max-height: 30px;
    }

    header .menu-title h1 {
        margin: 0;
    }

    .header-title h1 {
        display: unset !important;
    }

    .menu-button.active + .header-title {
        display: none;
    }

    .menu-button.active {
        position: fixed;
        top: 35px;
    }

    .header-title h1, .menu-title h1 {
        font-size: 25px;
        margin-right: 3px !important;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .divider {
        width: 80%;
        height: 2px;
        margin: 20px 0;
        justify-self: center;
        display: flex;
        background: #656565a3;
    }

    header nav {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        border-right: solid 1px #0B0B0B;
        transition: left .3s ease;
        z-index: 999;
        padding-top: 3rem;
        box-sizing: border-box;
        background: #0B0B0B;
    }

    header nav.open {
        left: 0;
    }

    header a.connect {
        padding: 14px 30px;
        width: stretch;
        border-radius: 30px;
        text-align: center;
        margin: 20px 8px;
    }

    header nav ul {
        display: block;
        max-height: none;
        margin: 0 7px;
    }

    header nav ul li {
        width: 100%;
        padding: 0 2rem;
    }

    header nav ul li > a {
        display: block;
        width: 100%;
        text-align: left;
        padding: 20px 0;
        font-size: 20px;
        box-sizing: border-box;
    }

    header nav ul li .buttons-li {
        display: flex;
        margin-top: 1rem;
    }

    header nav ul li .buttons-li a {
        display: flex;
        font-size: 23px;
        border-radius: 10px;
        height: 40px;
        text-align: center;
        vertical-align: top;
        align-items: center;
        margin-right: 1rem;
    }

    .menu-button {
        font-size: 28px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
        backdrop-filter: blur(20px);
        color: #EFEFEF;
        border: 1px solid #656565a3;
        cursor: pointer;
        z-index: 1000;
        position: absolute;
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        padding: 6px;
        border-radius: 175px;
        display: flex;
    }

    .home {
        flex-direction: column-reverse;
    }

    .home .info {
        margin-right: 0;
        border-top-left-radius: 0;
        border-bottom-right-radius: 35px;
        margin-top: -40px;
    }

    .home .bg {
        width: 100%;
        height: 300px;
        background-position: top;
        border-bottom-right-radius: 0;
        border-top-left-radius: 35px;
        background-size: 260%;
    }

    .home > .buttons {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 20px;
    }

    .home > .buttons .button {
        width: auto;
        text-align: center;
    }

    .home > .buttons .button.outline {
        background: transparent;
        border: none;
        backdrop-filter: unset;
        text-align: center;
    }

    .customers ul li {
        width: 100%;
        margin: 0 0 30px 0 !important;
    }

    .services .list li::before {
        display: none;
    }

    .services .services-title h1 {
        font-size: 32px;
    }

    .services .list ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .services .list li {
        position: relative;
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    .services .list li::after {
        display: none;
    }

    .services .icon {
        position: relative;
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .services .icon::before {
        content: "";
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 40px;
        background: rgba(255,255,255,0.3);
    }

    .services .icon::after {
        content: "";
        position: absolute;
        bottom: -29px;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 29px;
        background: rgba(255,255,255,0.3);
    }

    .services .list li:first-child .icon::before {
        display: none;
    }

    .services .title h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        margin-top: 35px;
    }

    .services .list li p {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 220px;
        margin: 8px auto;
    }
}

@media screen and (max-width: 690px) {
    .home .info {
        padding: 35px 20px;
    }

    .about img {
        height: 170px;
    }

    footer {
        height: auto;
    }

    footer .wrapper {
        flex-direction: column;
    }

    footer .socials {
        padding: 8px 0;
    }

    footer .socials a {
        padding: 0 10px;
        font-size: 27px;
    }

    footer span {
        text-align: center;
        font-size: 14px;
        width: 100vw;
        height: 40px;
        align-content: center;
    }
}

@media screen and (max-width: 500px) {
    .home .bg {
        height: 250px;
    }

    .about h1 {
        font-size: 30px;
    }

    .about img {
        height: 110px;
    }

    .news ul li .preview {
        width: 100%;
        height: 130px;
    }

    .news ul li a {
        flex-direction: column;
    }

    .contact, .news {
        padding: 0;
    }

    .news ul li .preview {
        border-bottom-left-radius: 0;
        border-top-right-radius: 28px;
    }
}