/* -------------------------------------------- General Styles -------------------------------------------- */

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

:root {
    --lightGreen: #00CCCC;
    --green: #28A4A4;
    --grey: #B3B3B3;
    --lightPurple: #5B5BC1;
    --purple: #333399;
    --darkBlack: #1a1a1a;
    --mediumBlack: #333333;
    --lightBlack: #4d4d4d;
    --blue: #333399;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Raleway", sans-serif;
    line-height: 20px;
    font-weight: 600;
}

h4 {
    color: #3c3c9a;
    font-weight: 700;
    font-size: 1.5rem;
}

h2 {
    font-size: 3.5rem;
    font-weight: 600;
}

.bright {
    color: var(--lightGreen);
    text-shadow: 0 0 1px var(--green);
}

.container {
    width: min(calc(100% - 40px), 1160px);
    margin-inline: auto;
}

.center {
    align-items: center;
    justify-content: center;
    align-self: center;
    display: flex;
    flex-direction: column;
}

.decoration-bar::after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    margin-top: 0.5vh;
    border-radius: 999px;
    background: linear-gradient(90deg,
            var(--purple),
            var(--lightGreen));
}

.decoration-bar-subtitles::after {
    content: "";
    display: block;
    width: 110%;
    height: 3px;
    margin: 1vh auto 0 -5%;
    border-radius: 999px;
    background: linear-gradient(90deg,
            var(--purple) 0%,
            var(--lightGreen) 50%,
            var(--purple) 100%);
}

/* -------------------------------------------- NavBar -------------------------------------------- */

.nav-bar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    background: var(--purple);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: all .3s ease;
}

.nav-scrolled {
    transition: all .3s ease;
    background: rgba(51, 51, 153, .85);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    position: fixed;
    z-index: 1;
}

.logo-walie {
    max-width: 150px;
    height: 50px;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    padding: 10px;
}

.img-walie {
    max-width: 100px;
}

.list-nav {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0px;
}

.list-nav a {
    color: rgb(255, 252, 247);
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    position: relative;
    text-decoration: none;
}

.list-nav a::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--lightGreen);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease;
}

.list-nav a:hover::after {
    transform: scalex(1);
}

.nav-btn {
    font-family: "Raleway", sans-serif;
    background-color: var(--green);
    color: whitesmoke;
    padding: 7px 50px;
    border: 3px solid var(--green);
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: whitesmoke;
    color: var(--mediumBlack);
}

/* -------------------------------------------- HeroSection -------------------------------------------- */

.hero-bg {
    content: "";
    position: absolute;
    left: -20%;
    top: 13%;
    transform: translateY(-20%);
    width: 100%;
    height: 85%;
    background: var(--blue);
    border-radius: 50px;
    z-index: -1;
    opacity: 0.95;
}

.hero-section {
    margin-top: 10vh;
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    margin-bottom: 10vh;
    align-items: center;
    gap: 60px;
}

.div-text-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.div-text-hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.9;
    letter-spacing: 2px;
    margin-bottom: 1.5vh;
}

.background-h1 {
    background-color: transparent;
    border-radius: 30px;
}

.div-text-hero p {
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 5vh;
}

.hero-first-p {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--lightGreen);
}

.hero-button {
    font-family: "Raleway", sans-serif;
    background-color: var(--green);
    max-width: 20vw;
    color: whitesmoke;
    margin-top: 2vh;
    padding: 15px;
    border: 3px solid var(--blue);
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: whitesmoke;
    color: var(--darkBlack);
    border: 3px solid var(--green);
}

.div-img-hero img {
    width: 100%;
    max-width: 700px;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.divider {
    display: flex;
    border-top: 2 px solid #e7e7ef;
    margin-top: 5vh;
    padding: 3vh 10vh 0 2vh;
}

.h5-hero {
    font-size: 1.6rem;
}

.divider p {
    color: rgb(83, 83, 83);
}

/* -------------------------------------------- Problems -------------------------------------------- */

.challenge {
    border-top: 2px solid;
    border-bottom: 2px solid;
    border-color: #f2f2f294;
    margin-top: 0vh;
    padding-top: 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(243, 243, 243, 0.764);
    padding: 5vw 5vw;
}

.challenge h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2vh;
}

.challenge p {
    font-size: 1rem;
    font-weight: 400;
    color: #565656;
    margin-top: 2vh;
    text-align: center;
    margin-bottom: 10vh;
}

.challenge h4 {
    color: var(--lightGreen);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 2vh;
}

.challenge h4::after {
    content: "";
    display: block;
    width: 110%;
    height: 3px;
    margin: 0.5vh auto 0 -5%;
    border-radius: 999px;
    background: linear-gradient(90deg,
            var(--purple) 0%,
            var(--lightGreen) 50%,
            var(--purple) 100%);
}

.problems {
    display: flex;
    padding: 0 10vh;
}

.problems div {
    max-width: 32%;
    border: 1px solid #e7e7ef;
    border-radius: 20px;
    background-color: #fff;
    margin: 0 2vh;
}

.problems div:hover {
    border-color: var(--lightGreen);
    transform: scale(1.01) translateY(-6px);
    transition: transform .3s ease;
    box-shadow: 0 18px 44px rgba(35, 35, 89, .08);
}

.problems div img {
    width: 100%;
    max-width: 75px;
    margin-top: 3vh;
    margin-left: 3vh;
    background-color: #e9e9e972;
    border-radius: 20px;
    border: 1px solid #d8d8d86c;
    padding: 2vh;
}

.problems div h3 {
    padding-left: 3vh;
    padding-top: 3vh;
    margin-bottom: -0.5vh;
    color: var(--purple);
    font-weight: 700;
}

.problems div p {
    padding-left: 3vh;
    padding-top: 2vh;
    padding-right: 2vh;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 5vh;
    color: #787878;
}

.problem-resolution {
    padding: 15vh 20vh 20vh 20vh;
}

.problem-section-head {
    display: flex;
    flex-direction: column;
    margin-bottom: 5vh;
}

.problem-section-head h4::after {
    content: "";
    display: block;
    width: 110%;
    height: 3px;
    margin: 0.5vh 0 0.9vh -5%;
    border-radius: 999px;
    background: linear-gradient(90deg,
            var(--purple) 0%,
            var(--lightGreen) 50%,
            var(--purple) 100%);
}

.problem-section-head h2 {
    font-size: 3rem;
    font-weight: 600;
}

.problem-section-head p {
    font-size: 1rem;
    font-weight: 400;
    color: #565656;
    margin-top: 2vh;
    text-align: center;
}

/* -------------------------------------------- Resolutions -------------------------------------------- */

.resolutions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 102%;

}

.resolutions > div {
    display: flex;
    flex-direction: column;

    width: 100%;
    min-width: 0;

    padding: 32px 24px;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(0, 26, 255, 0.15);
    border-right: 3px solid var(--lightGreen);
    border-radius: 24px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.resolutions > div:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 44px rgba(35, 35, 89, 0.08);
}

.resolutions > div > div {
    color: var(--lightGreen);
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.resolutions > div h3 {
    color: var(--purple);
    font-weight: 600;

    font-size: clamp(1.25rem, 2vw, 2rem);
    line-height: 1.15;

    margin-bottom: 20px;

    overflow-wrap: anywhere;
    word-break: normal;
}

.resolutions > div ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resolutions > div li {
    font-size: 1rem;
    line-height: 1.5;

    overflow-wrap: anywhere;
}

/* -------------------------------------------- Products -------------------------------------------- */

.section-products {
    display: flex;
    background: linear-gradient(120deg, var(--blue), #29297a);
    padding: 12vh 0;
}

.walie-suite {
    width: 100%;
    max-width: 20vw;
    margin-bottom: 2vh;
    background-color: #eeeeee;
    backdrop-filter: blur(70px);
    border-radius: 25px;
    padding: 2vw;
}

.section-products h2 {
    color: whitesmoke;
    font-weight: 600;
    margin-top: 1vh;
    margin-bottom: 2vh;
}

.section-products p {
    color: #e2e2e2;
    font-weight: 400;
    margin-bottom: 5vh;
}

.products {
    align-self: center;
    width: 80%;
    color: whitesmoke;
}

.products-explanation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5vh;
}

.products-presentation {
    display: grid;
    grid-template-columns: .33fr .33fr .33fr;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}

.products-presentation div {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 5vh;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .15),
        inset 0 1px 1px rgba(255, 255, 255, .15);
}

.products-presentation div:hover {
    transform: scale(1.01) translateY(-6px);
    transition: transform .3s ease;
    box-shadow: 0 18px 44px rgba(35, 35, 89, .08);
}

.products-presentation div small {
    color: var(--lightGreen);
    font-weight: 600;
    margin-bottom: 1vh;
    align-self: center;
}

.products-presentation div img {
    width: 100%;
    max-width: 10vw;
    align-self: center;
    margin-bottom: 3vh;
    background-color: whitesmoke;
    border-radius: 17px;
}

.products-presentation div p {
    color: #f7f7f7;
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 2vh;
}

.products-presentation div a {
    color: var(--lightGreen);
    font-weight: 600;
    text-decoration: none;
    margin-top: 2vh;
    border-radius: 25px;
    border: 2px solid var(--lightGreen);
    max-width: fit-content;
    padding: 10px 20px;
}

.products-presentation div a:hover {
    background-color: var(--lightGreen);
    color: whitesmoke;
}

.products-presentation div a:hover {
    transform: scale(1.01);
    transition: transform .3s ease;
    box-shadow: 0 18px 44px rgba(35, 35, 89, .08);
}

/* -------------------------------------------- Integrations -------------------------------------------- */

.integracoes-div {
    display: grid;
    grid-template-columns: 0.49fr 0.49fr;
    min-width: 100%;
}

.img-integrations {
    width: 100%;
    margin: 15vh 0 15vh -1vh;
    border-bottom-right-radius: 40%;
    border-top-right-radius: 15%;
    border: 5px solid var(--lightGreen);
    border-left: 0px;
}

.text-interactions {
    margin-top: 15%;
    margin-left: 15%;
}

.text-interactions h2 {
    line-height: 0.9;
    margin-bottom: 5%;
    margin-top: 5%;
    font-weight: 600;
}

.text-interactions h4::after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    margin-top: 0.5vh;
    border-radius: 999px;
    background: linear-gradient(90deg,
            var(--purple),
            var(--lightGreen));
}

.text-interactions p {
    font-weight: 500;
    color: #828282;
}

.check-list {
    display: grid;
}

.check {
    gap: 15px;
    display: flex;
    align-items: center;
}

.check p {
    display: flex;
    font-size: 1rem;
    font-weight: 400;
    align-self: center;
    color: #4f4f4f;
    align-items: center;
    margin: 0;
}

/* -------------------------------------------- Results -------------------------------------------- */

.section-head h4 {
    color: #3c3c9a;
    font-weight: 700;
    font-size: 1.5rem;
}

.section-head h2 {
    font-size: 3.5rem;
    font-weight: 600;
}

.section-head p {
    color: #707070;
    font-weight: 500;
}

.cases {
    background-color: #ededff;
    border-top: 2px solid #e4e4ff;
    padding: 9%;
}

.cases-grid {
    display: flex;
    flex-direction: column;
    margin: 10vh 0 0 0;
}

.gains-percentual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--purple);
    border-radius: 24px;
    margin-bottom: 5vh;
    padding: 5vh;
    gap: 30px;
    border: 3px solid #3c3c9a;
}


.percentual-numbers {
    display: block;
    font-size: clamp(2.1rem, 4vw, 3rem);
    margin: 3vh 0;
    color: var(--lightGreen);
}

.gains-percentual-grid span {
    font-weight: 400;
    font-size: 0.9rem;
    color: white;
}

.case {
    padding: 2vw;
    background-color: white;
    border: 2px solid #e3e3e3;
    border-radius: 25px;
}

.case h2 {
    font-size: 1.3rem;
    color: #00CCCC;
    margin-bottom: 2vh;
}

.case h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4vh;
    letter-spacing: -1px;
}

.case p {
    font-size: 1rem;
    font-weight: 400;
    color: #757575;
    margin-top: 0.5rem;
}

/* -------------------------------------------- CTA -------------------------------------------- */

.cta-box {
    color: whitesmoke;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--purple);
    padding: 10vh;
    border-radius: 20px;
    margin: 10vh 0;
}

.cta-box h4 {
    color: var(--lightGreen);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 5vh;
}

.cta-box h4::after {
    content: "";
    display: block;
    width: 20%;
    height: 3px;
    margin-top: 0.5vh;
    border-radius: 999px;
    background: linear-gradient(90deg,
            var(--lightGreen),
            var(--purple));
}

.cta-box h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2vh;
    line-height: 0.9;
}

.cta-box p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #c5c5c5;
    margin-bottom: 5vh;
}

.cta-box button {
    font-family: "Raleway", sans-serif;
    background-color: var(--green);
    color: whitesmoke;
    border: 2px solid var(--green);
    padding: 15px 50px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5vh;
}

.cta-box button:hover {
    background-color: whitesmoke;
    color: var(--darkBlack);
    border: 2px solid var(--green);
}

.footer-privacy{
    text-align: center;
    margin-top: 5vh;
    color: #c2c2c2;
    font-weight: 400;
    border-top: 1px solid #c2c2c262;
    padding-top: 5vh;
}

.footer-privacy a{
    text-decoration: none;
    color: #00CCCC;
}


/* -------------------------------------------- Footer -------------------------------------------- */

footer{
    background-color: var(--blue);
    padding: 5vh 4vw 3vh 4vw;
    color: whitesmoke;
}

.div-footer {
    display: grid; 
    grid-template-columns: 0.33fr 0.33fr 0.33fr;
}

footer img {
    width: 100%;
    max-width: 30%;
}

.footer-contato {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 9vw;
}

.footer-description {
    font-weight: 400;
    color: #d6d6d6;
    margin-top: 2vh;
    margin-bottom: 2vh;
}

footer ul {
    list-style: none;
}

.footer-navegacao {
    font-weight: 400;
    text-decoration: none;
    color: #d6d6d6;
    cursor: pointer;
}

.footer-navegacao:hover {
    transform: scale(1.01);
    transition: transform .1s ease;
}

.footer-links {
    display: grid;
    gap: 5px;
}

.footer-contact {
    font-weight: 400;
    text-decoration: none;
    color: #d6d6d6;
}


.nav-bar {
    z-index: 1000;
    justify-content: space-between;
    gap: 32px;
}

.nav-choices {
    display: flex;
    align-items: center;
    gap: 42px;
}

.list-nav {
    padding-left: 0;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: #fff;
    transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
    position: relative;
}

.div-text-hero {
    position: relative;
    z-index: 2;
}

.div-img-hero {
    position: relative;
    z-index: 2;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 180px;
}

.divider {
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 28px;
}

.divider > div {
    flex: 1;
}

.challenge {
    text-align: center;
}

.challenge > p {
    max-width: 780px;
}

.challenge > h1 {
    max-width: 950px;
}

.products-explanation,
.section-head,
.problem-section-head {
    text-align: center;
}

.resolutions > div,
.products-presentation > div {
    min-width: 0;
}

.integracoes-div {
    align-items: center;
    gap: clamp(32px, 6vw, 90px);
}

.div-img {
    min-width: 0;
}

.text-interactions {
    width: min(100%, 620px);
    margin: 0;
    padding-right: clamp(24px, 5vw, 80px);
}

.check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 36px;
    margin-top: 32px;
}

.check {
    padding-top: 0;
    min-width: 0;
}

.check img {
    width: 24px;
    height: 24px;
    max-width: none;
    flex: 0 0 24px;
}

.check p {
    justify-content: flex-start;
    text-align: left;
    line-height: 1.4;
}


.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 50px;
    border: 2px solid var(--green);
    border-radius: 30px;
    background: var(--green);
    color: whitesmoke;
    transition: all .3s ease;
}

.cta-button:hover {
    background: whitesmoke;
    color: var(--darkBlack);
}

.footer-description-wrap {
    margin-top: 1vw;
}

.footer-nav-wrap {
    padding: 1vw;
    margin-left: 10vw;
}

@media (max-width: 900px) {
    .nav-bar {
        position: sticky;
        padding: 14px 24px;
    }

    .nav-scrolled {
        position: fixed;
    }

    .menu-toggle {
        display: block;
        z-index: 1002;
    }

    .nav-choices {
        position: fixed;
        inset: 0 0 auto auto;
        width: min(84vw, 380px);
        min-height: 100dvh;
        padding: 100px 28px 36px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        background: rgba(35, 35, 115, .97);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        transform: translateX(105%);
        visibility: hidden;
        transition: transform .3s ease, visibility .3s ease;
        box-shadow: -20px 0 50px rgba(0, 0, 0, .25);
        z-index: 1001;
    }

    .nav-choices.menu-open {
        transform: translateX(0);
        visibility: visible;
    }

    .list-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .list-nav li {
        width: 100%;
    }

    .list-nav a {
        display: block;
        width: 100%;
        padding: 14px 10px;
        font-size: 1.05rem;
    }

    .list-nav a::after {
        top: auto;
        bottom: 4px;
    }

    .nav-btn {
        width: 100%;
        padding: 13px 24px;
    }

    .menu-is-open {
        overflow: hidden;
    }

    .hero-section {
        margin-top: 0px;
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 80px;
        padding-top: 56px;
    }

    .hero-bg {
        top: 0;
        left: 50%;
        width: calc(100% + 80px);
        height: 72%;
        transform: translateX(-50%);
        border-radius: 0 0 42px 42px;
    }

    .div-text-hero {
        text-align: center;
        align-items: center;
    }

    .div-text-hero h1 {
        font-size: clamp(2.5rem, 8vw, 4.5rem);
        line-height: 1;
    }

    .div-text-hero p {
        max-width: 680px;
        line-height: 1.65;
        margin-top: 24px;
    }

    .hero-button {
        max-width: none;
        margin-top: 24px;
    }

    .div-img-hero {
        width: min(100%, 700px);
        margin-inline: auto;
    }

    .divider {
        margin-top: 8px;
        padding: 28px 0;
    }

    .challenge {
        padding: 70px 24px;
    }

    .challenge h1 {
        font-size: clamp(2rem, 6vw, 3.2rem);
    }

    .problems {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        width: min(100%, 900px);
        padding: 0;
        margin-top: 40px;
    }

    .problems > div {
        max-width: none;
        margin: 0;
        text-align: left;
    }

    .problems > div:last-child {
        grid-column: 1 / -1;
        width: min(100%, 430px);
        justify-self: center;
    }

    .problem-resolution {
        padding: 80px 20px;
    }

    .problem-section-head h2 {
        font-size: clamp(2rem, 6vw, 3rem);
        text-align: center;
    }

    .resolutions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .resolutions > div {
        padding: 28px 22px;
    }

    .resolutions > div h3 {
        font-size: 1.5rem;
    }

    .resolutions > div:hover {
        transform: translateY(-4px);
    }

    .products-presentation div img {
        max-width: 30%;
    }
    

    .section-products {
        padding: 80px 0;
    }

    .products-presentation {
        grid-template-columns: 1fr;
    }

    .products-presentation > div:last-child {
        grid-column: auto;
        width: 100%;
    }

    .integracoes-div {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .img-integrations {
        margin: 0;
        max-height: 520px;
        object-fit: cover;
        border: 0;
        border-bottom: 5px solid var(--lightGreen);
        border-radius: 0;
    }

    .text-interactions {
        width: min(100%, 760px);
        margin-inline: auto;
        padding: 64px 28px 80px;
    }

    .text-interactions h2 {
        line-height: 1.1;
    }

    .cases {
        padding: 80px 24px;
    }

    .section-head p {
        text-align: center;
    }

    .cta-box {
        margin: 70px 0;
        padding: 64px 40px;
        text-align: center;
    }

    .cta-box h4::after {
        margin-top: 1vh;
        margin-left: 40%;
    }

    .div-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px;
        padding: 56px 40px;
    }

    footer > div:first-child {
        grid-column: 1 / -1;
    }

    footer img {
        max-width: 150px;
    }

    .footer-nav-wrap,
    .footer-contato {
        margin: 0;
        padding: 0;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 32px), 1160px);
    }


    h2,
    .section-head h2 {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
        line-height: 1.08;
    }

    h4,
    .section-head h4 {
        font-size: 1.15rem;
    }

    .nav-bar {
        padding-inline: 48px;
    }

    .logo-walie {
        height: 44px;
        padding: 4px;
    }

    .img-walie {
        max-width: 90px;
    }

    .nav-choices {
        width: 100%;
    }

    .hero-section {
        width: 100%;
        padding-inline: 20px;
        padding-top: 46px;
        margin-bottom: 56px;
    }

    .hero-bg {
        width: 100%;
        height: 60%;
        border-radius: 0 0 30px 30px;
    }

    .hero-first-p {
        font-size: .78rem;
        letter-spacing: .12em;
    }

    .div-text-hero h1 {
        font-size: clamp(2.15rem, 11vw, 3.3rem);
        letter-spacing: -.02em;
    }

    .div-text-hero p {
        font-size: .95rem;
    }

    .hero-button {
        width: 100%;
        max-width: 320px;
    }

    .divider {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
        border-top: 2px solid rgba(7, 7, 7, 0.12);
    }

    .divider > div {
        padding: 18px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .divider > div:last-child {
        border-bottom: 0;
    }

    .challenge {
        padding: 60px 18px;
    }

    .challenge > p {
        line-height: 1.6;
    }

    .problems {
        grid-template-columns: 1fr;
        gap: 18px;
        width: 100%;
    }

    .problems > div:last-child {
        grid-column: auto;
        width: 100%;
    }

    .problems div img {
        max-width: 64px;
        margin: 24px 0 0 24px;
        padding: 14px;
    }

    .problems div h3 {
        padding: 24px 24px 0;
        font-size: 1.35rem;
    }

    .problems div p {
        padding: 14px 24px 28px;
        margin: 0;
        line-height: 1.6;
    }

    .problem-resolution {
        padding: 64px 16px;
    }

    .problem-section-head h2 {
        margin-bottom: 8px;
    }

    .problem-section-head p {
        line-height: 1.6;
    }

    .resolutions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .resolutions > div {
        padding: 20px 14px;
        border-radius: 18px;
    }

    .resolutions > div > div {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .resolutions > div h3 {
        font-size: 1.05rem;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .resolutions > div li {
        font-size: 0.82rem;
        line-height: 1.4;
    }
    
    .products-presentation {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products {
        width: min(calc(100% - 32px), 980px);
    }

    .products-explanation {
        text-align: center;
    }

    .products-explanation p {
        line-height: 1.6;
    }

    .products-presentation > div {
        padding: 30px 24px;
    }

    .text-interactions {
        padding: 54px 20px 64px;
        text-align: center;
    }

    .text-interactions h4::after {
        margin-inline: auto;
    }

    .text-interactions p {
        line-height: 1.65;
    }

    .check-list {
        grid-template-columns: 1fr;
        width: min(100%, 310px);
        margin-inline: auto;
        gap: 18px;
        text-align: left;
    }

    .check {
        width: 100%;
    }

    .cases {
        padding: 64px 16px;
    }

    .cases-grid {
        margin-top: 48px;
    }

    .gains-percentual-grid {
        grid-template-columns: 1fr;
        padding: 30px 24px;
        gap: 12px;
    }

    .gains-percentual-grid > div {
        padding: 8px 0 20px;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .gains-percentual-grid > div:last-child {
        border-bottom: 0;
    }

    .percentual-numbers {
        margin: 10px 0;
    }

    .case {
        padding: 30px 24px;
    }

    .cta-box {
        margin: 56px 0;
        padding: 48px 22px;
        border-radius: 18px;
    }

    .cta-box h4 {
        margin-bottom: 28px;
    }

    .cta-box h4::after {
        margin-top: 1vh;
        margin-left: 40%;
    }

    .cta-box h2 {
        font-size: clamp(2rem, 9vw, 2.7rem);
        line-height: 1.08;
    }

    .cta-box p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .cta-button {
        width: 100%;
        padding-inline: 20px;
    }

    .div-footer {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 24px;
    }

    footer > div:first-child {
        grid-column: auto;
    }

    .footer-description {
        line-height: 1.6;
    }
}


/* -------------------------------------------- Language Switcher -------------------------------------------- */

.language-switcher {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 2000;
    font-family: "Raleway", sans-serif;
}

.language-switcher__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 68px;
    height: 52px;
    padding: 0 15px;

    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;

    background: rgba(51, 51, 153, 0.94);
    color: #fff;

    box-shadow: 0 14px 34px rgba(28, 28, 90, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    cursor: pointer;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.language-switcher__toggle:hover {
    transform: translateY(-3px);
    background: var(--green);
    box-shadow: 0 18px 40px rgba(28, 28, 90, 0.34);
}

.language-switcher__toggle:focus-visible,
.language-switcher__options button:focus-visible {
    outline: 3px solid rgba(0, 204, 204, 0.45);
    outline-offset: 3px;
}

.language-switcher__icon {
    font-size: 1.15rem;
    line-height: 1;
}

.language-switcher__current {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.language-switcher__options {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);

    width: 160px;
    padding: 8px;

    border: 1px solid rgba(51, 51, 153, 0.12);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 45px rgba(30, 30, 80, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.98);
    transform-origin: bottom right;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.language-switcher.is-open .language-switcher__options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-switcher__options button {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0.5vh 0;
    padding: 11px 12px;

    border: 0;
    border-radius: 10px;

    background: transparent;
    color: var(--mediumBlack);

    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;

    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.language-switcher__options button:hover,
.language-switcher__options button.is-active {
    background: rgba(0, 204, 204, 0.12);
    color: var(--purple);
}

@media (max-width: 600px) {
    .language-switcher {
        right: 16px;
        bottom: 16px;
    }

    .language-switcher__toggle {
        min-width: 62px;
        height: 48px;
        padding-inline: 13px;
    }
}
