:root {
    --font-primary: 'Sora', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #F1F0EE;
}

.mobile-only {
    display: none !important;
}

.container {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

.container-small {
    width: 100%;
    max-width: 1168px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .container.full-mobile {
        padding: 0;
    }
}

/* HEADER */

.logo {
    width: 100%;
    max-width: 294px;
    height: auto;
    margin-left: 30px;
}

header .wrapper {
    display: flex;
    height: 100px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    position: relative;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 80px;
}

nav ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #18212B;
    transition: opacity 0.3s ease;
}

nav ul li:last-child a {
    background-color: #18212B;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
}

nav a:hover {
    opacity: 0.8;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-right: 20px;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #40C2CC;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .logo {
        width: 52px;
        height: 52px;
        margin-left: 0;
    }

    header .wrapper {
        height: 115px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 100px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 30px;
    }

    nav ul li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    nav ul li a {
        display: block;
        padding: 20px 0;
        font-size: 18px;
    }

    nav ul li:last-child {
        border-bottom: none;
        margin-top: 20px;
    }

    nav ul li:last-child a {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 150px;
    }

    nav {
        width: 85%;
    }
}

/* HOME */

.hero {
    display: flex;
    position: relative;
    height: 570px;
    margin-top: 20px;
}

.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero .wrapper {
    width: 100%;
    display: flex;
    gap: 40px;
    flex-direction: column;
    align-self: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    padding: 0 16px;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
}

.hero h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: lighter;
    color: #fff;
}

.hero h2 span {
    font-weight: var(--font-weight-semibold);
    color: #40C2CC;
}

.hero p {
    color: #fff;
    max-width: 564px;
}

@media screen and (max-width: 768px) {
    .hero {
        height: 608px;
        margin-top: 0;
    }

    .hero .container {
        justify-content: flex-start;
        padding-top: 50px;
    }

    .hero-image {
        padding: 0;
    }

    .hero h2, .hero p {
        text-align: center;
    }

    .hero h2 {
        font-size: 2.3rem;
    }

    .hero p {
        max-width: 300px;
        margin: 0 auto;
    }
}

.section-title {
    font-size: 18px;
    font-weight: lighter;
    color: #2D3542;
    position: relative;
    padding-left: 20px;
    margin-bottom: 16px;
}

.section-title:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    width: 14px;
    height: 15px;
    transform: translate(-50%, -50%) !important;
    background: url("../images/section-before.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

#sobre {
    padding: 110px 0;
}

#sobre .wrapper {
    display: flex;
    justify-content: space-between;
}

#sobre .wrapper .column {
    width: 100%;
    max-width: 554px;
}

.venn-diagram {
    width: 100%;
    max-width: 450px;
    height: auto;
}

.title {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: lighter;
    margin-bottom: 30px;
}

.title span {
    font-weight: var(--font-weight-semibold);
}

.divider-with-logo {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.relative {
    position: relative;
}

@media screen and (max-width: 768px) {
    #sobre {
        padding: 80px 0;
    }

    .section-title {
        margin-bottom: 8px;
    }

    .container-small {
        padding: 0 20px;
    }

    #sobre .wrapper {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    #sobre .wrapper h3 {
        font-size: 2rem;
        margin-bottom: 14px;
    }   
}

#setores {
    padding: 110px 0;
}

#setores .grid {
    display: grid;
    width: 95%;
    margin: 0 auto;
    max-width: 1405px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px 8px;
}

#setores .grid .card {
    display: flex;
    width: 100%;
    height: 332px;
    flex-direction: column;
    padding: 42px 32px 0 32px;
    border-radius: 16px;
    background-color: #2D3542;
}

#setores .grid .card img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

#setores .grid .card .card-title {
    font-size: 1.5rem;
    font-weight: normal;
    color: #40C2CC;
}

#setores .grid .card .card-body {
    color: #fff;
}

.swiperSetores,
.swiperSolucoes {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiperSetores .swiper-slide {
    display: flex;
    min-height: 332px;
    flex-direction: column;
    padding: 42px 32px;
    border-radius: 16px;
    background-color: #2D3542;
}

.swiperSetores .swiper-slide img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.swiperSetores .swiper-slide .card-title {
    font-size: 1.5rem;
    font-weight: normal;
    color: #40C2CC;
    margin-bottom: 8px;
}

.swiperSetores .swiper-slide .card-body {
    color: #fff;
}

.swiperSetores .navigation,
.swiperSolucoes .navigation {
    display: flex;
    gap: 8px;
    padding-top: 20px;
}

.swiperSolucoes .navigation {
    padding-top: 0;
}

.swiperSetoresButton.swiper-button-next,
.swiperSolucoesButton.swiper-button-next,
.swiperSetoresButton.swiper-button-prev,
.swiperSolucoesButton.swiper-button-prev,
.swiperMidiaButton.swiper-button-next,
.swiperMidiaButton.swiper-button-prev {
    position: unset;
    margin-top: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #40C2CC;
}

.swiperSetoresButton.swiper-button-next:after,
.swiperSolucoesButton.swiper-button-next:after, 
.swiperSetoresButton.swiper-button-prev:after,
.swiperSolucoesButton.swiper-button-prev:after,
.swiperMidiaButton.swiper-button-next:after,
.swiperMidiaButton.swiper-button-prev:after {
    font-size: 16px;
    color: #fff;
}

.swiperSetoresButton.swiper-button-next:hover,
.swiperSolucoesButton.swiper-button-next:hover,
.swiperSetoresButton.swiper-button-prev:hover,
.swiperSolucoesButton.swiper-button-prev:hover,
.swiperMidiaButton.swiper-button-next:hover,
.swiperMidiaButton.swiper-button-prev:hover {
    opacity: 0.8;
}

.solutions {
    padding: 110px 0;
}

.swiperSolucoes {
    display: flex;
    width: 100%;
    flex-direction: column;
    transition: height 0.3s ease;
}

.swiperSolucoes .swiper-wrapper {
    transition-property: height, transform !important;
    transition-duration: 0.6s !important;
    transition-timing-function: ease !important;
}

.swiperSolucoes .swiper-slide {
    height: auto;
}

.swiperSolucoes .swiper-slide .wrapper {
    height: auto;
}

.swiperSolucoes .buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 36px 0;
}

.swiperSolucoes .wrapper {
    display: flex;
    justify-content: space-between;
    padding: 20px 14px 20px 80px;
    background-color: #fff;
    border-radius: 16px;
    position: relative;
}

.swiperSolucoes .swiper-slide:nth-child(2) .wrapper {
    color: #fff;
    background-color: #2D3542;
}

.swiperSolucoes .swiper-slide:nth-child(3) .wrapper {
    color: #fff;
    background-color: #18212B;
}

.swiperSolucoes .swiper-slide .column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 386px;
}

.swiperSolucoes .swiper-slide .column .title {
    font-size: 2.35rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.swiperSolucoes .swiper-slide .column .sub-title {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 36px;
}

.swiperSolucoes .swiper-slide img {
    width: 100%;
    max-width: 560px;
    border-radius: 16px;
    display: block;
}

.swiperSolucoes .swiper-slide .img-wrapper {
    position: relative;
}

.swiperSolucoes .swiper-slide .img-wrapper:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -32px;
    width: 124px;
    height: 209px;
    background: url("../images/slide-ribbon.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
}

.button {
    display: flex;
    width: 100%;
    max-width: 208px;
    justify-content: center;
    align-items: center;
    justify-self: center;
    background-color: #40C2CC;
    color: #fff;
    padding: 12px 0;
    border-radius: 50px;
    text-decoration: none;
}

.button:hover {
    opacity: 0.8;
}

.link-tel {
    margin-top: 40px;
}

.link-tel,
.link-email {
    display: flex;
    color: #283069;
    text-decoration: none;
    padding-left: 40px;
    margin-bottom: 18px;
    position: relative;
}

.link-tel:hover,
.link-email:hover {
    opacity: 0.8;
}

.link-tel:before {
    content: '';
    width: 22px;
    height: 22px;
    background: url("../images/phone.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translate(-50%,-50%)!important;
}

.link-email:before {
    content: '';
    width: 22px;
    height: 15px;
    background: url("../images/mail.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translate(-50%,-50%)!important;
}

.brand-logo {
    display: block;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    #setores {
        padding: 80px 0;
    }
    .swiperSetores .swiper-slide {
        padding: 24px 32px;
    }
    .swiperSetores .swiper-slide .card-title {
        line-height: 1.2;
    }
    .swiperSolucoes .wrapper {
        flex-direction: column;
        padding: 0;
    }
    .swiperSolucoes .wrapper .column {
        width: 100%;
        padding: 20px;
    }
    .swiperSolucoes .swiper-slide img {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        max-width: 100%;
    }
    .swiperSolucoes .swiper-slide .column .sub-title {
        margin-bottom: 18px;
    }
    .swiperSolucoes .swiper-slide .img-wrapper:before {
        display: none;
    }
    .button {
        display: none;
    }
    .swiperSolucoes .buttons {
        order: 1;
    }
    .swiper-wrapper {
        order: 2;
    }
    .solutions {
        padding: 80px 0;
    }
}

.equipe {
    padding: 110px 0;
}

.equipe .two-columns {
    display: grid;
    grid-template-columns: .4fr .6fr;
    justify-content: center;
}

.equipe .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 75px 130px;
    padding-top: 56px;
}

.equipe .team-grid .team-grid-link {
    text-decoration: none;
    color: inherit;
}

.equipe .team-grid .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.equipe .team-grid .card .img-wrapper {
    width: 192px;
    height: 192px;
    margin-bottom: 12px;
    overflow: hidden;
    position: relative;
    transition: all .2s ease-out; 
}

.equipe .team-grid .card .img-wrapper:hover {
    opacity: 0.8;
}

.equipe .team-grid .card .img-wrapper:after {
    content: '';
    background: url("../images/linkedin.png");
    width: 29px;
    height: 29px;
    position: absolute;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    bottom: 0;
    right: 20px;
}

.equipe .team-grid .card .img-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
}

.equipe .team-grid .card .card-name {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
}

@media screen and (max-width: 1024px) {
    .logo {
        max-width: 200px;
    }
    .equipe .team-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 50px 80px;
    }
}

@media screen and (max-width: 768px) {
    .equipe {
        padding: 80px 0;
    }
    .equipe .two-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .equipe .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding-top: 32px;
    }
    .equipe .team-grid .card .img-wrapper {
        width: 146px;
        height: 146px;
    }
    .equipe .team-grid .card .card-name {
        font-size: 18px;
    }
    .equipe .team-grid .card .card-job {
        font-size: 12px;
    }
}

@media screen and (max-width: 375px) {
    .equipe .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

#contato {
    padding: 110px 0;
}

#contato .wrapper {
    display: grid;
    grid-template-columns: .4fr .6fr;
    gap: 180px;
}

#contato .form-wrapper {
    border-radius: 16px;
    background-color: #2D3542;
    padding: 68px 64px 45px;
}

#contato .form-wrapper .form-group {
    display: flex;
    flex-direction: column;
}

.row {
    display: inline-block !important;
    align-items: center;
}


#contato .form-wrapper form {
    display: flex;
    flex-direction: column;
}

#contato .form-wrapper form label {
    color: #FFFFFF;
    margin-bottom: 12px;
}

#contato .form-wrapper form input {
    padding: 14px;
    border-radius: 6px;
}

#contato .form-wrapper form input:placeholder {
    color: rgba(54, 54, 54, .5);
}

#contato .form-wrapper form input[type="textarea"] {
    border-radius: 6px;
    resize: vertical;
    min-height: 120px;
}

#contato .form-wrapper .radio-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

#contato .form-wrapper form input[type="radio"] {
    margin-bottom: 0;
}

#contato .form-wrapper form label[for="radio"] {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 0;
}

#contato .form-wrapper .button {
    max-width: 116px;
    align-self: flex-end;
    margin-top: 38px;
    border-style: none;
}

@media screen and (max-width: 768px) {
    #contato {
        padding: 80px 0;
    }
    #contato .wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    #contato .form-wrapper {
        padding: 40px 20px 30px;
    }
    #contato .form-wrapper .button {
        display: flex;
        width: 100%;
        max-width: unset;
        align-self: center;
        margin-top: 24px;
    }
}

.midia {
    padding: 110px 0;
}

.midia .container .wrapper {
    padding: 96px 0 80px;
    border-radius: 16px;
    background-color: rgba(45, 53, 66, .09);
}

.midia .swiperMidia {
    overflow: hidden;
    height: 100%;
}

.midia .swiperMidia .navigation {
    display: flex;
    gap: 8px;
    padding-top: 20px;   
}

.midia .swiperMidia .swiper-slide {
    display: flex;
    flex-direction: column;
    width: 272px;
    max-width: 100%;
    height: 380px;
    background-color: #fff;
    border-radius: 16px;
}

.midia .swiperMidia .swiper-slide .meta-box {
    display: flex;
    flex-direction: column;
    padding: 22px 50px 22px 22px;
    height: 100%;
}

.midia .swiperMidia .swiper-slide .title {
    font-size: 1.25rem;
    line-height: 1;
    margin-bottom: 12px;
}

.midia .swiperMidia .swiper-slide .sub-title {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0;
    font-weight: 600;
}

.midia .swiperMidia .swiper-slide .midia-link {
    display: flex;
    margin-top: auto;
    font-size: 14px;
    color: #40C2CC;
    text-decoration: none;
    position: relative;
    left: 28px;
    margin-top: auto;
    justify-self: center;
}

.midia .swiperMidia .swiper-slide .midia-link:before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 12px;
    background: url("../images/arrow-turn-down-right.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 50%;
    left: -16px;
    transform: translate(-50%, -50%);
}

.midia .swiperMidia .swiper-slide .midia-link:hover {
    text-decoration: underline;
}

.midia .swiperMidia .swiper-slide img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    width: 100%;
    max-height: 186px;
    object-fit: cover;
    object-position: center center;
}

footer .container .wrapper {
    background-color: #18212B;
    padding-top: 42px;
    padding-bottom: 64px;
    color: #fff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

footer .container-small .top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(207, 207, 207, .30);
    margin-bottom: 36px;
}

footer .container-small .top-row img {
    display: block;
    width: 100%;
    max-width: 74px;
    height: auto;
}

footer .container-small .top-row .link-title {
    font-size: 24px;
    text-decoration: none;
    color: #CFCFCF;
}

footer .container-small .top-row .link-title:hover {
    text-decoration: underline;
}

footer .container-small .bot-row {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

footer .container-small .bot-row p {
    font-weight: bold;
    margin-bottom: 8px;
}

footer .container-small .bot-row a {
    color: #fff;
    text-decoration: none;
    font-weight: lighter;
}

footer .container-small .bot-row a:hover {
    text-decoration: underline;
}

footer .container-small .bot-row a:not(:last-child) {
    margin-bottom: 40px;
}

footer .container-small .copyright {
    color: #CFCFCF;
}

footer .container-small .signature-block {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 16px;
    text-decoration: none;
}

footer .container-small .signature {
    font-size: 10px;
    color: #CFCFCF;
    opacity: 0.6;
    text-decoration: none;
}

footer .container-small .back-to-top {
    font-size: 12px;
    color: #CFCFCF;
    opacity: 0.6;
    text-decoration: none;
    padding-right: 18px;
    position: relative;
}

footer .container-small .back-to-top:hover,
footer .container-small .signature:hover {
    filter: brightness(1.2);
}

footer .container-small .back-to-top:after {
    content: "";
    display: flex;
    width: 24px;
    height: 24px;
    background: url("../images/arrow-up.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(-50%, -50%) !important;
}

@media screen and (max-width: 768px) {
    .midia {
        padding: 80px 0 0;
    }
    footer .container-small .top-row {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    footer .container-small .bot-row {
        flex-direction: column;
        align-items: center;
    }
    footer .container-small .bot-row a:not(:last-child) {
        margin-bottom: 32px;
    }
    footer .container-small .bot-row p {
        margin-bottom: 0;
    }
    .copyright {
        margin-top: 32px;
        text-align: center;
    }
    footer .container .wrapper {
        padding-top: 32px;
        padding-bottom: 32px;
    }
}






textarea {
    width: 100%;
    min-height: 120px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap; /* Quebra linha automaticamente */
    word-wrap: break-word; /* Quebra palavras longas */
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
}

/* Label do checkbox especificamente */
.form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
}

.form-group input[type="checkbox"] {
    width: 14px !important;
    height: 14px;
    margin: 0;
    border-radius: 4px;
    cursor: pointer;
}