@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

:root {
    --primary-color: #92c021;
    --gray: #f2f2f2;
}

a {
    color: inherit;
    text-decoration: none;
}

html {
    overflow-y: hidden;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

* {
    font-family: "Sora", sans-serif;
    box-sizing: border-box;
}

section {
    width: 100%;
    padding: 25px 0;
}

h1, h2, h3, h4, h5 {
    text-align: center;
    text-transform: uppercase;
}

p {
    font-weight: 300;
}

img {
    max-width: 100%;
}

/* Header */

header {
    display: flex;
    flex-direction: row;
    width: 1100px;
    margin: auto;
    position: absolute;
    top: 0;
    left: auto;
    right: auto;
    padding: 20px 0;
    z-index: 9;
}

header img {
    height: 40px;
}

header nav {
    margin-left: 20px;
    display: flex;
    flex-direction: row;
}

header nav a {
    flex: 1;
    font-size: 11px;
    text-decoration: none;
    color: #fff;
    text-align: center;
}

header i {
    display: none !important;
}

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

    header i {
        display: block !important;
    }
    header {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5%;
    }

    header i {
        color: #fff;
    }
    header nav {
        display: none;
        flex-direction: column;
        justify-content: center;
        margin: 0;
        text-align: left;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        position: fixed;
        background-color: var(--primary-color);
        gap: 15px;
        padding: 0 5%;
        align-items: flex-start;
    }

    header nav a {
        flex: 1;
        font-size: 15px;
        text-decoration: none;
        color: #fff;
        text-align: center;
    }

    header nav.active {
        display: flex;
        justify-content: flex-start;
        padding: 20% 5%;
    }

    header nav i {
        position: absolute;
        top: 5%;
        right: 5%;
        color: #fff;
    }

    header nav a {
        flex: 0;
        text-align: left;
    }

    header nav br {
        display: none;
    }
}


/* Banner */

section#banner {
    padding: 0;
    background-color: #000;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section#banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}


section#banner video {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    object-fit: cover;
}

section#banner .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    color: var(--primary-color);
}

section#banner .text h2{
    font-size: 42px;
}

section#banner .text p {
    font-size: 30px;
}


@media screen and (max-width: 1100px) {
    section#banner {
        width: 100%;
    }
    section#banner .text h2{
        font-size: 20px;
    }

    section#banner .text p {
        font-size: 16px;
    }
}


/* Services */

section#services {
    width: 1100px;
}

section#services .services {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 20px;
}

section#services .services .service {
    width: 100%;
    align-items: center;
    display: grid;
    grid-template-columns: 25% 70%;
    gap: 5%;
}


section#services .services .service .title {
    font-size: 35px;
    font-weight: 800;
    text-align: right;
    line-height: 0.9;
    text-transform: uppercase;
    color: #fff;
    text-shadow:
            1px 1px 0 var(--primary-color),
            -1px -1px 0 var(--primary-color),
            1px -1px 0 var(--primary-color),
            -1px 1px 0 var(--primary-color),
            1px 1px 0 var(--primary-color);
}

section#services .services .service .text {
    line-height: 2;
    font-weight: 300;
}

@media screen and (max-width: 1100px) {
    section#services {
        width: 100%;
        padding: 0 5%;
    }
    section#services .services {
        display: flex;
        flex-direction: column;
    }
    section#services .services .service{
        width: 100%;
        align-items: center;
        display: grid;
        grid-template-columns: 30% 70%;
        gap: 5%;
    }
}


/* Clients */

section#clients .splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

section#clients img {
    max-height: 50px;
    width: auto;
    max-width: 80%;
}

/* Clients */

section#about {
    background-color: var(--gray);
}

section#about .about-intern {
    width: 900px;
    margin: auto;
}

section#about .about-intern .peoples .people {
    display: flex;
    grid-template-columns: 35% 55%;
    flex-direction: row;
    align-content: center;
    justify-content: center;    align-items: start;
    gap: 5%;
}

section#about .about-intern .peoples-grid {
    display: grid;
    grid-template-columns: 10% 85%;
    grid-gap: 5%;
}

section#about .about-intern .peoples-grid h5 {
    writing-mode: vertical-rl;
    font-size: 70px;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    color: var(--gray);
}


section#about .about-intern .peoples .people p {
    text-align: justify;
}

section#about .about-intern .peoples .people img {
    max-width: initial;
    width: 200px;
    margin-top: 70px;
}

@media screen and (max-width: 1100px)
{
    section#about .about-intern {
        width: 100%;
        padding: 0 5%;
    }
    section#about .about-intern .peoples .people {
        flex-direction: column;
    }

    section#about .about-intern .peoples-grid h5 {
        display: none;
    }
    section#about .about-intern .peoples-grid {
        grid-template-columns: 100%;
        grid-gap: 0;
    }

    section#about .about-intern .peoples .people img {
        width: 50%;
        margin: 0 auto;
    }
}


/*Testimonials*/

section#testimonials {
    width: 100%;
}

section#testimonials .splide__slide {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    opacity: 0.2;
    padding: 0 20px;
    transition: opacity 0.5s ease;
}

section#testimonials .splide__slide img, section#testimonials .splide__slide svg{
    height: 60px;
    transition: height 0.5s ease;
}

section#testimonials .splide__slide.is-next img, section#testimonials .splide__slide.is-next svg{
    height: 90px;
}

section#testimonials .splide__slide.is-next img.bigger{
    height: 120px;
}

section#testimonials .splide__slide p{
    text-align: center;
    font-size: 11px;
    transition: font-size 0.5s ease;
}

section#testimonials .splide__slide:hover {
    opacity: 1;
    transition-duration: 1s;
}

@media screen and (max-width: 1100px) {
    section#testimonials .splide__slide {
        opacity: 1;
    }
}

section#testimonials .splide__slide.is-next {
    opacity: 1;
}

section#testimonials .splide__slide.is-next p {
    font-size: 18px;
}

@media screen and (max-width: 760px) {
    section#testimonials .splide__slide.is-next p, section#testimonials .splide__slide p {
        text-align: center;
        font-size: 15px;
    }
    section#testimonials .splide__slide.is-next img, section#testimonials .splide__slide.is-next svg, section#testimonials .splide__slide img, section#testimonials .splide__slide svg{
        height: 90px !important;
    }
    section#testimonials .splide__slide img.bigger {
        height: 120px !important;
    }
}


section#testimonials img {
    max-width: 100% ;
    height: 50px;
}

/*Contact*/

section#contact {
    width: 1100px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

section#contact form {
    width: 800px;
    display: flex;
    flex-direction: column;
}

section#contact form button{
    background-color: transparent;
    border: 1px solid #000;
    padding: 8px 13px;
    font-weight: 400;
    cursor: pointer;
    font-size: 18px;
    margin: 35px auto 0;
    height: 50px;
    width: 250px;
}

section#contact form button:hover{
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #fff;
}

section#contact label{
    width: 100%;
}

section .column {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
}

section .column-slim {
    margin: 25px;
    display: grid;
    grid-template-columns: 50% 50%;
}

section .column-slim div {
    display: flex;
    flex-direction: row;
    align-content: initial;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

section .column-slim div label {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border: 1px solid #000;
    cursor: pointer
}

section .column-slim div input {
    display: none;
}

section .column-slim #contact-label {
    text-align: right;
    padding-right: 25px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

section .column-slim input[type="radio"]+ label {
    height: 45px;
}

section .column-slim input[type="radio"]:checked + label {
    background-color: var(--primary-color);
    color: #fff;
    border: var(--primary-color);
}

section#contact input{
    border: none;
    border-bottom: 2px solid #000;
    width: 100%;
    padding: 10px 5px;
}

section#contact input::placeholder {
    color: #000;
    font-size: 15px;
}

@media screen and (max-width: 1100px) {
    section#contact {
        width: 100%;
    }

    section#contact form {
        width: 100%;
        padding: 0 5%;
    }

    section .column-slim {
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    section .column-slim #contact-label {
        text-align: left;
    }

    section .column-slim div {
        width: 100%;
    }

    section .column {
        flex-direction: column;
    }

    section#contact form button {
        margin: 0 auto;
    }
}

/*Footer*/

footer {
    background-color: #91bf21;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0;
    color: #fff;
}

footer .footer-container {
    grid-template-columns: 80% 20%;
    width: 1100px;
    display: grid;
}

footer .footer-container .squares {
    display: grid;
    grid-template-columns: 50% 50%;
}

footer .footer-container .squares .square {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 50px;
    text-align: center;
}

footer .footer-container .squares .square.social-media {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

footer .footer-container .squares .square.social-media button {
    background-color: #e0eac6;
    color: #696969;
    border: 1px solid #fff;
    padding: 8px 13px;
    font-weight: 400;
    cursor: pointer;
    font-size: 18px;
    border-radius: 30px;
}

footer .footer-container .squares .square.social-media button.instagram:hover {
    width: 150px;
    background: linear-gradient(#5541d3, #bf2a7e, #fdbf53);
    color: #fff;
}

footer .footer-container .squares .square.social-media button.facebook:hover {
    width: 150px;
    background: linear-gradient(#4267B2, #898F9C);
    color: #fff;
}

footer .footer-container .squares .square.social-media button:hover span {
    display: block;
}

footer .footer-container .squares .square.social-media button:hover i {
    display: none;
}

footer .footer-container .squares .square.social-media button span {
    display: none;
}

footer .footer-container .squares .square:first-child {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

footer .footer-container .squares .square:nth-child(2) {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
}

footer .footer-container .squares .square:nth-child(3) {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
}

footer .footer-container .squares .square:last-child {
    border-right: 1px solid #fff;
}

footer img{
    filter: brightness(0) invert(100%);
    width: 180px;
}

footer #back-to-top {
    padding-left: 5px;
    text-align: left;
    display: flex;
    writing-mode: vertical-rl;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1100px){
    footer .footer-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        font-size: 13px;
    }

    footer .footer-container .squares .square.social-media{
        padding: 0;
    }

    footer .footer-container .squares {
        display: flex;
        flex-direction: column;
    }

    footer .footer-container .squares .square {
        padding: 20px;
    }

    footer .footer-container .squares .square {
        border: none !important;
    }

    footer #back-to-top {
        display: none;
    }
}



/*FLOAT ZAP*/

.float-buttons {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.float-buttons button {
    background-color: var(--primary-color);
    border: none;
    font-size: 35px;
    border-radius: 100%;
    min-width: 60px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-buttons button i {
    color: #fff;
}


#zap-form {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: -webkit-fill-available;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99999999;
}


#zap-form.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

#zap-form .mini-form {
    position: absolute;
    right: 30px;
    bottom: 80px;
    background-color: #fff;
    width: 320px;
    border-radius: 15px;
}

#zap-form .mini-form #title,
#zap-form .mini-form #body {
    padding: 15px;
}

#zap-form .mini-form #title {
    padding-top: 30px;
    background-color: rgba(38, 92, 84, 1);
    border-radius: 5px 5px 0 0;
}

#zap-form .mini-form #title p {
    color: rgb(229, 229, 229);
    margin: 0;
}

#zap-form .mini-form #body {
    background-color: rgba(235, 229, 222, 1);
    border-radius: 0 0 5px 5px;
}

#zap-form .mini-form input[type="text"] {
    margin: 5px 0;
    width: 100%;
    border: 1px solid #fefefe;
    padding: 5px 2px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

#zap-form .mini-form button {
    margin-top: 10px;
    width: 100%;
    background-color: rgba(83, 164, 81, 1);
    color: #fff;
    padding: 7px 0;
    border: none;
    cursor: pointer;
}

@media screen and (max-width: 1100px) {
    #zap-form .mini-form {
        right: initial;
        bottom: initial;
    }
}

#zap-form .close {
    fill: #fff;
    position: absolute;
    right: 10px;
    top: 5px;
    width: fit-content;
}

#zap-form .close svg{
    color: #fff;
}

#zap-form #zap-message-error {
    color: red;
    font-size: 11px;
    text-align: center;
}

.toggle-zap-form {
    cursor: pointer;
}

.message {
    text-align: center;
}

html, body {
    overflow-x: hidden;
    margin: 0;
}

.container {
    width: 500%;
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    background-color: var(--primary-color);
}

.service-bg{
    display: grid;
    grid-template-columns: 50% 40% 5% 5%;
    align-items: center;
    height: 100vh;
    width: 1100px;
    justify-content: center;
    margin: auto;
    flex-direction: row;
}

.service-bg img{
    width: 100%;
    object-fit: cover;
}

.service-bg h2{
    text-align: left;
    color: #fff;
}

.service-bg p{
    color: #fff;
}

.service button {
    background-color: transparent;
    cursor: pointer;
    border: 1px solid #fff;
    color: #fff;
    fill: #fff;
    margin: auto;
    padding: 15px 30px;
    text-transform: uppercase;
}

.service button:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.service .service-description {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    padding-right: 25px;
}

.text-invert-marquee h4 {
    color: var(--primary-color);
    writing-mode: vertical-rl;
    font-size: 50px;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.service .arrow i {
    font-size: 100px;
    margin-left: -25px;
}

.service .service-description i.arrow-mobile {
    display: none;
}

@media screen and (max-width: 1100px){
    .service .service-description {
        align-items: center;
    }
    .service .service-description i.arrow-mobile {
        display: block;
        font-size: 40px;
    }
    .service-bg{
        display: flex;
        padding:  10% 5%;
        align-items: center;
        height: 100%;
        margin: auto;
        width: 100%;
        justify-content: center;
        flex-direction: column-reverse;
        text-align: center;
    }
    .service-bg .text-invert-marquee, .service-bg .arrow{
        display: none;
    }
    .service-bg h2{
        text-align: center;
    }

}


.loading {
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: #fff;
    z-index: 999999;
    top:0;
    left:0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.loading img {
    width: 200px;
}

section.panel {
    padding: 0;
    background-color: #b9b9b9;
}

.service.cinza .text-invert-marquee h4 {
    color: #b9b9b9;
}


section.panel:first-child {
    padding: 0;
    background-color: var(--primary-color);
}

section.panel:first-child .text-invert-marquee h4 {
    color: var(--primary-color);
}

.toggle-nav-menu {
    cursor: pointer;
}

.splide__pagination {
    bottom: -20px;
}

.splide__pagination__page.is-active {
    background-color: var(--primary-color) !important;
}

#what-we-can-do h2 {
    font-size: 30px;
}

#what-we-can-do .mobile {
    display: none;
}

#what-we-can-do .desktop {
    display: block;
}
#what-we-can-do .service {
    background-color: var(--primary-color);
}


#what-we-can-do .service.cinza {
    background-color: #b9b9b9;
}


@media screen and (max-width: 1100px) {
    #what-we-can-do .mobile {
        display: block;
    }
    #what-we-can-do .desktop {
        display: none;
    }
}