/* Reset básico e box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* Remove o destaque azul ao tocar em links e elementos */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f9f9f9;
    -webkit-font-smoothing: antialiased; /* Melhora a renderização de fontes no WebKit */
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    margin-bottom: .5rem;
    color: #2c3e50;
    font-size: 2.8rem;
    font-weight: 300;
}

h2 {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.8rem;
    margin-bottom: 3rem;
    position: relative;
}

h3 {
    line-height: 1.3rem;
    font-weight: 600;
}

section {
    padding: 60px 0;
}

p {
    font-size: 1.2rem;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: #3498db;
}

ul {
    list-style: none;
}

.fixed-mobile-buttons {
    transition: all .2s ease;
    display: none;
}

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* Oculta o destaque ao tocar */
}

.button_cta {
    background: linear-gradient(108.8deg, #FFFFFF 20.08%, #02CF5F 89.85%);
    color: #2C3E50;
    padding: 17px 68px;
    border-radius: 32px;
    transition: all .3s ease;
    margin: 0 auto;
    display: block;
    width: fit-content;
    border: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-size: 20px;
    font-weight: 700;
}

.button_cta:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.header {
    background-color: #fff;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: all .2s ease;
    height: 73px;
    -webkit-backface-visibility: hidden; /* Melhora a suavidade das animações em iOS */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .container .socials a {
    display: block;
    width: 40px;
    transition: all .2s ease;
}

.header .container .socials a:hover {
    transform: scale(1.15);
}

.header .container .socials a img {
    transition: all .2s ease;
}

.header.scrolled {
    background-color: #002B3F;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 50px;
}

.header.scrolled .nav-menu ul li {
    padding: 12px 0;
}

.header.scrolled .nav-menu ul li::after {
    background: #02D35F;
    height: 5px;
}

.header.scrolled .logo img {
    width: 132px;
}

.header.scrolled .nav-menu ul li a {
    color: #fff;
    font-size: .9rem;
}

.header.scrolled .socials a img {
    width: 25px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
}

.logo img {
    width: 180px;
}

.nav-menu ul {
    display: flex;
}

.nav-menu ul li {
    margin-left: 25px;
    padding: 24px 0px;
    position: relative;
}

.nav-menu ul li::after {
    content: " ";
    position: absolute;
    width: 0;
    height: 8px;
    border-radius: 8px;
    bottom: -3px;
    left: 0;
    transition: all .15s ease;
    background: #002B3F;
}

.nav-menu ul li:hover::after {
    width: 100%;
}

.nav-menu ul li a {
    color: #555;
    font-weight: 300;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #2c3e50;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* Oculta o destaque ao tocar */
}
 
.hero-section {
    background: url(../images/midukan-banner-hero.png) 0 0 no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 8rem;
    position: relative;
    overflow-x: clip;
    .button_cta {
        margin-left: 0;
    }

    &::after {
        content: " ";
        background: url(../images/sprite-hero.png) 0 0 no-repeat;
        position: absolute;
        bottom: -16vw;
        width: 53vw;
        height: 60vw;
        background-size: contain;
        right: 0vw;
    }

    &::before {
        content: " ";
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 0 470px 470px 470px;
        border-color: transparent transparent #02CF5F transparent;
        transform: rotate(135deg);
        right: -13vw;
        position: absolute;
        bottom: -6vw;
    }
}

.hero-section h1 {
    font-size: 66px;
    text-transform: uppercase;
    line-height: 66px;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    text-align: left;

    strong {
        span {
            color: #02CF5F;
        }
    }
}
.hero-section h2 {
    text-align: left;
    font-size: 35px;
    line-height: 35px;
    color: #fff;
    font-weight: 300;

    strong {
        span {
            font-weight: 700;
        }
    }
}
.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-section {
    background-color: #fff;
}

.services-section .container {
    display: flex;
    flex-direction: column;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.service-item {
    background-color: #02CF5F;
    padding: 56px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-item i {
    font-size: 3rem;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #fff;
}

.about-section {
    text-align: center;
    background: linear-gradient(269.94deg, #0B0B0B 1.39%, #4C4C4C 51.07%, #0B0B0B 97.96%);
    position: relative;

    h1 {
        font-weight: 700;
        font-size: 45px;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 15px;

        &::after {
            content: " ";
            position: absolute;
            width: 80%;
            height: 5px;
            bottom: -5px;
            left: 50%;
            transform: translatex(-50%);
            background-image: linear-gradient(90deg, #078DCC 7.61%, #16F4A5 95.55%);
        }
    }

    p {
        font-size: 16px;
        font-weight: 300;
        line-height: 20px;
        color: #fff;
    }

    i {
        color: #02CF5F;
    }

    &::after {
        content:  " ";
        background: url(../images/sprite-disk.png) 0 0 no-repeat;
        background-size: cover;
        width: 338px;
        height: 675px;
        position: absolute;
        right: 0;
        bottom: -36%;
    }

    .service-item {
        background: #fff;

        h3,p { 
            color: #2c3e50;
        }
    }
}

.about-section .service-grid {
    margin: 5rem 0;
}

.what-section {
    padding: 5rem 0;
}

.what-section .container {
    display: flex;
}

.what-section .container .content-picture {
    padding: 0 4rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background: #02CF5F;
    border-radius: 32px;
    position: relative;
    width: 62%;
    height: 234px;
}

.what-section .container .content-picture img {
    width: 400px;
    display: block;
    position: absolute;
    left: 47%;
    top: -30%;
    transform: translateX(-50%);
}

.what-section .container .content-info {
    display: grid;
    place-content: center;
    padding: 0 5rem;
}

.features-section {
    padding: 5rem 0;

    .button_cta {
        background: linear-gradient(90deg, #02344B 0%, #09577B 100%);
        color: #fff;
        padding: 17px 32px;
        box-shadow: 0px 7px 10px 0px #0000004D;
        margin-top: 1rem;
    }

    span {
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    .service-item p {
        font-size: 16px;
        line-height: 18px;
    }
}

.features-section h1 {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 45px;
}

.features-section .service-grid {
    margin: 5rem 0;
    grid-template-columns: 1fr 1fr 1fr;

    .service-item {
        display: grid;
        place-content: center;
        padding: 30px 12px;
    }
}

.custom-software-section {

    .mobile-only {
        display: none;
    }
    padding: 0;

    .button_cta {
        background: linear-gradient(90deg, #078DCC 7.61%, #16F4A5 95.55%);
        color: #fff;
        box-shadow: 0px 7px 10px 0px #0000004D;
        position: relative;
        z-index: 3;
    }
    h1 {
        margin: 0;
        font-size: 2.8rem;
        font-weight: 300;
        text-align: center;
    }

    .container {
        background: #fff;
        border-radius: 20px;
        padding: 60px 25px;
        position: relative;
        z-index: 2;
        &::after {
            content:  " ";
            width: 100%;
            height: 100px;
            background:#fff;
            position: absolute;
            bottom: -16px;
            left: 0;
            z-index: 1
        }
    }
}

.custom-software-section ul {
    margin: 5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.custom-software-section li {
    padding: 32px 12px;
    background: #02CF5F;
    margin: 12px;
    border-radius: 21px;
    font-weight: 500;
    place-items: center;
    display: grid;
    text-align: center;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    transition: all .2s ease;
    color: #fff;
    font-size: 16px;
    font-weight: 700;

    i { 
        color: #2c3e50;
    }
}

.custom-software-section li i {
    font-size: 3rem;
    position: absolute;
    top: -1.5rem;
}

.custom-software-section li:hover {
    transform: scale(1.1);
}

.custom-software-section span {
    font-weight: 300;
    font-size: 1.2rem;
    margin: 0 auto 2rem auto;
    line-height: 1.5rem;
    text-align: center;
    display: block;
}

.cases-section {

    background: url(../images/bg-cases.png) 0 0 no-repeat;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-size: cover;
    position: relative;
    
    padding-bottom: 1rem;

    h1 {
        text-align: center;
        font-weight: 700;
        font-size: 45px;
        text-transform: uppercase;
    }

    &::after {
        content:  " ";
        background: url(../images/sprite-line.png) 0 0 no-repeat;
        left: 0;
        top: -20%;
        width: 236px;
        height: 911px;
        position: absolute;
    }
}

.cases-section .carousel-cases {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.cases-section .carousel-cases .item {
    padding: 5rem 0;
    display: flex;
    height: 700px !important;
}

.cases-section .carousel-cases .item .prints {
    width: 60%;
    position: relative;
    display: grid;
    place-items: center;

    img {
        transform: scale(1.5);
    }
    
}

.cases-section .carousel-cases .item .prints .print_mobile {
    max-width: 235px;
    position: absolute;
    top: 60%;
    transform: translateY(-37%);
    right: -2rem;

}

.cases-section .carousel-cases .item .infos {
    width: 40%;
    padding: 2rem;
    display: grid;
    place-content: center;
}

.cases-section .carousel-cases .item .infos h2 {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 24px;
    font-weight: 700;
}

.cases-section .carousel-cases .custom-position {
    position: absolute;
    bottom: 10rem;
    right: 28.6rem;
}

.cases-section .carousel-cases .controls-glider {
    background: #002b3f;
    position: relative;
    height: 57px;
    top: 6px;
}

.cases-section .carousel-cases .glider-next,
.cases-section .carousel-cases .glider-prev {
    cursor: pointer;
    color: #02CF5F;
    opacity: 1;
    padding: 10px 15px;
    background: #fff;
    width: 60px;
    height: 60px;
    font-size: 2rem;
    transition: all .2s ease;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* Oculta o destaque ao tocar */
    box-shadow: 2px 2px 15px 0px #00000040;

}

.cases-section .carousel-cases .glider-next:hover,
.cases-section .carousel-cases .glider-prev:hover {
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px,
    rgba(0, 0, 0, 0.07) 0px 2px 2px,
    rgba(0, 0, 0, 0.07) 0px 4px 4px,
    rgba(0, 0, 0, 0.07) 0px 8px 8px,
    rgba(0, 0, 0, 0.07) 0px 16px 16px;
}

.cases-section .carousel-cases .glider-next.disabled,
.cases-section .carousel-cases .glider-prev.disabled {
    
    cursor: default; /* Indica que o botão está desabilitado */
}

.cases-section .carousel-cases .glider-prev {
    top: 6px;
}

.cases-section .carousel-cases .glider-next {
    top: 6px;
    left: 38px;
}

.contact-section {
    background: url(../images/bg-contact.jpeg) 0 0 no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;

    &::after { 
        width: 100%;
        height: 100%;
        background: #ffffffe3;
        content: " ";
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1
    }

    .container {
        z-index: 3;
        position: relative;
    }
}



.contact-section h1 {
    color: #2c3e50;
    margin: 0;
    font-size: 45px;
    font-weight: 45px;
    text-transform: uppercase;
    position: relative;
    text-align: center;

    &::after {
        content: " ";
        position: absolute;
        width: 50%;
        height: 5px;
        bottom: -5px;
        left: 50%;
        transform: translatex(-50%);
        background-image: linear-gradient(90deg, #078DCC 7.61%, #16F4A5 95.55%);
    }

}

.contact-section h2 {
    margin-bottom: 1rem;
}

.contact-section > .container > p {
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    max-width: 600px;
    margin: 10px auto 0 auto;
    line-height: 1.5rem;
    text-align: center;
}

.contact-form {
    width: 600px;
    margin: 3rem auto 3rem auto;
    background-color: #DCE4E8;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 1rem;
    display: block;
    font-weight: 300;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    -webkit-appearance: none; /* Remove estilos nativos dos inputs no iOS */
}

.form-group textarea {
    resize: vertical;
    -webkit-appearance: none; /* Remove estilos nativos da textarea no iOS */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

.contact-form button[type="submit"] {
    background: linear-gradient(90deg, #02344B 0%, #09577B 100%);
    color: #fff;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* Oculta o destaque ao tocar */
}

.contact-info {
    text-align: center;
    margin-top: 30px;
    color: #555;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info i {
    margin-right: 8px;
    color: #3498db;
}

.depoiments-section {
    position: relative;
    overflow: hidden;
}

.depoiments-section::before {
    content: " ";
    position: absolute;
    top: 35%;
    right: -99vw;
    width: 150%;
    height: 232%;
    background-image: linear-gradient(45deg, #ffffff54, #ffffff00);
    transform: rotate(21deg);
    z-index: 0;
}

.depoiments-section {
    background-image: linear-gradient(269.94deg, #0B0B0B 1.39%, #4C4C4C 51.07%, #0B0B0B 97.96%);
    z-index: 3;
}       

.depoiments-section .container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.depoiments-section .container .content {
    width: 40%;
}

.depoiments-section .titles {
    text-align: left;
    display: grid;
    place-content: center;
}

.depoiments-section .titles h1 {
    margin: 0;
    font-size: 45px;
    font-weight: 700;
    color: #fff;   
    line-height: 45px;
    text-transform: uppercase   ;

    strong {

        color: #02CF5F;
    }
}

.depoiments-section .titles span {
    margin-top: 15px;
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    max-width: 600px;
    line-height: 1.5rem;
    color: #fff;

    strong {
        color: #02CF5F;
        font-weight: inherit;
        display: block;
    }
}

.depoiments-section .dots-depoiments {
    margin-top: 1rem;
}

.depoiments-section .photo-depoiment {
    width: 110px;
    height: 110px;
    border-radius: 51%;
    background: #c1c1c1;
    display: grid;
    place-items: center;
    margin: 0 auto 1rem auto;
    overflow: hidden;
}

.depoiments-section .photo-depoiment img {
    max-width: 100%;
}

.depoiments-section p {
    color: #fff;
}

.depoiments-section p strong {
    display: block;
    margin-bottom: 2rem;
}

.depoiments-section .carousel-depoiments {
    margin: 2rem 0 0 0;
}

.depoiments-section .carousel-depoiments-item {
    text-align: center;
}

.target-section {
    text-align: center;
    background: url(../images/bg-target.png) 0 0 no-repeat;
    background-size: cover;
    color: #fff;
    padding: 5rem 0;
}

.target-section h1 {
    color: #fff;
    margin: 0;
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
}

.target-section p {
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.target-section .button_cta {
    margin: 2rem auto 0 auto;
    background: linear-gradient(90deg, #078DCC 7.61%, #16F4A5 95.55%);
    color: #fff;
}

.footer {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    background-color: #FFF;
    color: #ecf0f1;
    text-align: center;
    padding: 20px 0;
    border-top: 12px solid #02CF5F;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.footer p {
    color: #333;
    font-size: .8rem;
    margin: 2rem 0 0 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
}

.footer .container span {
    font-weight: 700;
    color: #002B3F;
    display: inline;
    margin-bottom: 1rem;
    text-align: left;
}

.footer .container .logo-footer {
    width: 30%;
    margin-right: 6rem;
}

.footer .container .footer-right {
    display: flex;
}

.footer .container .links-footer {
    text-align: left;
}

.footer .container .links-footer a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}

.footer .container .links-footer a:hover {
    text-decoration: none;
    font-weight: bold;
    color: #02CF5F;
    font-size: 1rem;
}

.footer .container .socials-footer {
    margin-left: 5rem;
}

.footer .container .socials-footer img {
    width: 30px;
}

.footer .container .socials-footer ul {
    display: flex;
}

.footer .container .socials-footer ul li {
    padding: 0 5px;
}

.footer .container .socials-footer ul li a img {
    transition: all .2s ease;
}

.footer .container .socials-footer ul li a:hover img {
    transform: scale(1.1);
}

.footer .container .links-footer,
.footer .container .socials-footer {
    padding-top: 12px;
}

.footer .div_logo{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: self-end;
}

.footer .div_logo img{
    width: 90px;
}

.citation-section, .what-section {
    background: #f9f9f9 ;
}
.citation-section {
    padding:10rem 0 3rem  0;
}

.citation-section .container {
    text-align: center;
}

.citation-section span {
    font-size: 45px;
    line-height: 50px;
    font-weight: 700;
    text-align: center;
    color: #2C3E50;

    strong {
        color: #02CF5F;
    }
}

.citation-section i {
    font-size: 4rem;
    display: none;
    opacity: 0.2;
}

.what-section {
    h1 {
        font-size: 45px;
        font-weight: 700;
    }
    p {
        font-size: 20px;
        line-height: 30px;
    }
}

/* class glider generic */

.glider-dot:hover,
.glider-dot:focus,
.glider-dot.active {
    background: #02CF5F !important;
}

.glider-slide {
    transition: all .3s ease;
    opacity: 0;
}

.glider-slide.active {
    opacity: 1;
}

@media (min-width: 555px) {
    .fixed-mobile-buttons {
        display: none !important;
    }
}




@media (max-width: 1280px) {
   
    .citation-section {
        padding: 2rem 0;
    }

    .citation-section span {
        font-size: 20px;
        line-height: 24px;
        width: 80%;
        display: block;
        margin: 0 auto;
    }

    .fixed-mobile-buttons {
        background: #FFF;
        bottom: 0;
        position: fixed;
        width: 100%;
        padding: 0;
        display: flex;
        gap: 5px;
        padding: 10px;
        z-index: 9999999;
    }

    .fixed-mobile-buttons a {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 66px;
        border-radius: 4px;
        color: #fff;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* Oculta o destaque ao tocar */
    }

    .fixed-mobile-buttons a:first-child {
        background-color: rgb(0, 43, 63);
    }

    .fixed-mobile-buttons a:last-child {
        background-color: rgb(87, 200, 87);
    }

    .fixed-mobile-buttons a span {
        font-size: 14px;
        margin-top: 5px;
    }

    .fixed-mobile-buttons a img {
        display: block;
        width: 25px;
        height: 25px;
    }

    .container {
        max-width: 1100px;
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }

    p {
        font-size: 1rem;
        font-weight: 300;
    }

    body.no-scroll {
        i.fa-bars::before {
            content: "\f00d" !important;
            color: #002B3F !important;
        }
        .fixed-mobile-buttons {
            bottom: -150%;
        }
    }

    .menu-toggle {
        display: block;
    }

    header {
        padding: 10px 0;
    }

    .header {
        display: grid;
        place-items: center;
    }

    .header.scrolled {
        height: 73px;
    }

    .header.scrolled .logo img {
        width: 180px;
    }

    .header.scrolled i {
        color: #fff;
    }

    .header .socials {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 100%;
        height: 100vh;
        background-color: #fff;
        box-shadow: -3px 0 10px rgba(0, 0, 0, 0.15);
        z-index: 1100;
        transition: right 0.4s ease-in-out;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Adicionado para rolagem suave no menu */
        margin-top: 0;
        padding-top: 80px;
        display: block;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu.active ul li a {
        color: #333 !important;
        font-size: 1.4rem !important;
    }

    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .nav-menu ul li {
        margin: 0;
        border-bottom: 1px solid #eee;
        padding: 0;
    }

    .nav-menu ul li::after {
        display: none;
    }

    .nav-menu ul li:last-child {
        border-bottom: none;
    }

    .nav-menu ul li a {
        display: block;
        padding: 15px 10px;
        color: #333;
        font-weight: 500;
        text-align: left;
        transition: background-color 0.2s ease;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* Oculta o destaque ao tocar */
    }

    .nav-menu ul li a:hover {
        background-color: #f4f4f4;
        color: #3498db;
    }

    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        width: 100%;
    }

    .nav-menu ul {
        flex-direction: column;
        width: 100%;
    }

    .nav-menu ul li a {
        display: block;
        font-size: 1.4rem;
        font-weight: 300;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        z-index: 9999;
        transform: translateY(-50%);
    }

    .hero-section {
        align-items: self-start;
        margin-top: 2rem;
        min-height: unset;
        height: auto;
        overflow: hidden;
        padding-bottom: 0;

        &::after {
            display: none;
        }

        &::before {
            content: url(../images/Vector.png);
            border: 0;
            right: 0;
            transform: scale(1.3);
            bottom: 8%;
            width: 390px;
            height: 390px;
        }

        .sprite-hero {
            margin-top: 1rem;
            position: relative;
            width: 100%;
        }
    }
    .hero-section h1 {
        font-size: 28px;
        line-height: 28px;
    }

    .hero-section h2 {
        font-size: 16px;
        line-height: 20px;
    }
    
    .hero-section .button_cta {
        margin-left: 0;
        background: linear-gradient(90deg, #078DCC 7.61%, #16F4A5 95.55%);
        color: #fff;
        font-size: 14px;
        padding: 12px 24px;
    }

    .hero-section p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.4rem;
        line-height: 1.8rem;
        font-weight: 400;
        margin-bottom: 1.5rem;
    }

    h1 {
        font-size: 2.4rem;
        line-height: 2.6rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .service-grid {
        grid-template-columns: 1fr 1fr;
        margin: 2rem 0;
        gap: 10px;
    }

    .contact-form {
        padding: 20px;
        max-width: 100%;
        width: 100%;
        margin: 2rem 0 0 0;
    }

    .contact-section h1 {
        margin-bottom: 1rem;
    }
    .what-section {
        p {
            font-size: 14px;
            font-size: 20px;
        }
        h1 {
            font-size: 28px;
            line-height: 45px;
            text-align: left;
        }
    }
    .what-section .container {
        flex-direction: column;
    }

    .what-section .container .content-picture {
        text-align: center;
        margin: 0 auto;
        width: 63%;
        height: 140px;
    }

    .what-section .container .content-picture img {
        width: 230px;
    }

    .what-section .container .content-info {
        padding: 2rem 0 0 0;
    }
    .about-section  {
        i {
            font-size: 35px;
        }
        .service-grid {
            position: relative;
            z-index: 2;
            margin: 2rem 0 0 0;
        }
        .service-item {
            padding: 1rem;
            

            h3 { 
                font-size: 14px;
                line-height: 14px;
                font-weight: 700;
            }

            p { 
                font-size: 14px;
                line-height: 14px;
            }
        }
        h1 {
            font-size: 28px;
            line-height: 30px;
            width: 80%;
            margin: 0 auto 15px auto;
    
            &::after {
                height: 2px;
                width: 100%;
            }
        }
        p {
            font-size: 16px;
            line-height: 16px;
        }

        &::after {
            bottom: -13%;
            width: 105px;
            height: 219px;
        }
    }
    .cases-section {
        background: url(../images/bg-cases-mobile.png) top right no-repeat;
        background-size: cover;

        h1 { 
            font-size: 28px;
            line-height: 35px;
        }
        &::after {
            display: none;
        }
    }
    .cases-section .carousel-cases {
        padding-bottom: 3rem;
    }
    .cases-section .carousel-cases .item {
        display: flex;
        flex-direction: column;
        height: auto !important;
        padding: 0;
    }

    .cases-section .carousel-cases .item .prints {
        position: relative;
        width: 100%;

        img {
            transform: scale(1.1) translateX(-3rem);
        }
    }

    .cases-section .carousel-cases .item .prints .print_mobile {
        position: absolute;
        bottom: 2rem;
        right: -1rem;
        width: 115px;
        transform: scale(1.5);
        top: 22%;
    }
    .cases-section .carousel-cases .item .infos {
        padding: 3rem 3rem 0 3rem;
        width: 100%;
    }

    .cases-section .carousel-cases .item .infos h2 {
        text-align: left;
        font-weight: 700;
        font-size: 20px;
        line-height: 20px;
    }

    .cases-section .carousel-cases .custom-position {
        position: static;
        text-align: left;
        margin-left: 3rem;
    }

    .cases-section .carousel-cases .custom-position .controls-glider {
        background: unset;
    }

    .cases-section .carousel-cases .custom-position .glider-next,
    .cases-section .carousel-cases .custom-position .glider-prev {
        position: static;
        width: 40px;
        height: 40px;
        padding: 0;

        i {
            font-size: 20px;
            position: relative;
            top: -3px;
        }
    }

    .features-section {
        .button_cta {
            font-size: 14px;
        }
        h1 {
            font-size: 28px;
            line-height: 35px;
            font-weight: 700;
            width: 80%;
            margin: 0 auto;
        }

        .service-grid {
            grid-template-columns: 1fr 1fr;

            .service-item {
                padding: 24px 12px;
                
                i {
                    font-size: 35px;
                }
                h3 {
                    font-size: 14px;
                    line-height: 14px;
                }
            }
        }
    }
    .depoiments-section {
        &::before {
            width: 100%;
            height: 100%;
            top: 13vh;
            right: 0;
            transform: rotate(82deg);
        }
    }
    .depoiments-section .container {
        flex-direction: column;

        .content {
            width: 100%;
        }
    }

    .depoiments-section .titles {
        text-align: center;
    }

    .depoiments-section .titles h1 {
        margin: 0;
        font-size: 28px;
        text-align: left;
        line-height: 30px;
    }

    .depoiments-section .titles span {
        text-align: left;
        max-width: 80%;
        strong {
            display: inline;
        }
    }

    .depoiments-section .photo-depoiment {
        width: 70px;
        height: 70px;
        border-radius: 51%;
        background: #c1c1c1;
        display: grid;
        place-items: center;
        margin: 0 auto 1rem auto;
    }

    .depoiments-section p strong {
        display: block;
        margin-bottom: 1rem;
    }

    .depoiments-section .carousel-depoiments {
        margin: 2rem 0 0 0;
    }

    .depoiments-section .carousel-depoiments-item {
        text-align: center;
        width: 100%;
    }
    .custom-software-section {
        .desktop-only {
            display: none;
        }
        .mobile-only {
            display: block;
        }
        .container {
            width: 90%;
        }

        h1 {
            margin-bottom: 1rem;
            position: relative;

            &::after {
                content: " ";
                position: absolute;
                width: 80%;
                height: 2px;
                bottom: -5px;
                left: 50%;
                transform: translatex(-50%);
                background-image: linear-gradient(90deg, #078DCC 7.61%, #16F4A5 95.55%);
            }
        }
        ul {
            margin-bottom: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            
        }
        .shadow-item {
            position: relative;

            &::after {
                content:  " ";
                height: 100%;
                width: 20%;
                background-image: linear-gradient(90deg, #ffffff00, #fff);
                position: absolute;
                top: 0;
                right: 0;
            }
        }
        .carousel-custom {
            padding: 1rem 0;
            margin: 1rem 0;
            i {
                font-size: 3rem;
                position: absolute;
                top: -1.5rem;
                color: #2c3e50;
            }
            .item-custom {
                display: grid;
                text-align: center;
                position: relative;
                box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
                color: rgb(255, 255, 255);
                font-size: 16px;
                font-weight: 700;
                padding: 55px 12px;
                background: rgb(2, 207, 95);
                margin: 12px;
                border-radius: 21px;
                place-items: center;
                transition: 0.2s;
            }
            .glider-slide {
                opacity: 1;
            }

            
        }
        
        .button_cta {
            background: linear-gradient(90deg, #078DCC 7.61%, #16F4A5 95.55%);
            color: #fff;
            box-shadow: 0px 7px 10px 0px #0000004D;
            font-size: 14px;
            line-height: 14px;
            text-align: center;
            width: 70%;
            padding: 12px 35px;
            
        }
    }

    .target-section {
        color: #FFF;
    }

    .target-section h1 {
        font-size: 2.2rem;
        line-height: 2.5rem;
        margin-bottom: 1rem;
    }

    .target-section p {
        font-size: 1rem;
        strong {
            color: #02CF5F;
        }
    }

    .target-section .button_cta {
        margin: 2rem auto 1rem auto;
        font-size: 14px;
    }

    .services-section {
        background-color: #fff;
    }

    .services-section .container {
        display: flex;
        flex-direction: column;
    }

    .footer {
        padding-bottom: 6rem;
    }

    .footer .container {
        flex-direction: column;
    }

    .footer .container .logo-footer {
        margin: 0 auto;
        width: 45%;

        img { 
            width: 100%;
        }
    }

    .footer .container span {
        text-align: center;
    }

    .footer .container .links-footer {
        text-align: center;
        margin: 1rem 0;
    }

    .footer .container .socials-footer {
        margin-left: 0;
    }

    .footer .container .socials-footer span {
        text-align: center;
    }

    .footer .container .socials-footer ul {
        justify-content: center;
    }

    .footer .container .footer-right {
        flex-direction: column;
    }

    .footer .div_logo{
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 555px) and (max-width: 1279px) { /* fix tablet print mobbile */
    .cases-section .carousel-cases .item .prints .print_mobile {
        transform: scale(2.5);
        bottom: 2rem;
        right: 9rem;
        top: unset;
    }
    
}