:root {
    --primaria-1: #e05e0d;
    --primaria-2: #b64b08;
    --primaria-3: #883602;
    --primaria-4: #692800;
    --primaria-5: #4d1d00;
    --primaria-6: #331300;
    --secundaria-1: #f3f3f3;
    --secundaria-2: #eaeaea;
    --secundaria-3: #c5c5c5;
    --secundaria-4: #9b9b9b;
    --secundaria-5: #919191;
    --secundaria-6: #5e5d5d;
    --secundaria-7: #252525;
    --branco: white;
    --preto: black;
    --background: #1d1d1d;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--secundaria-5);
    overflow: hidden;
    overflow-y: auto;
}

.main {
    margin: 0 10rem;

}

.flex {
    display: flex;
}

.wrap {
    flex-wrap: wrap;
    gap: 20px;
}

.column {
    flex-direction: column;
}

.space-around {
    justify-content: space-around;
}

.center {
    align-items: center;
}

.container-1 {
    margin-top: 100px;
    border-radius: 10px;
    position: relative;
}

.ball-1 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    z-index: -100;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 10%, #ff7300 0%, #ff5e00c7 10%, transparent 80%);
    box-shadow: 0 0 120px 40px #ff730055, 0 0 200px 80px #ff5e0033;
    filter: blur(70px) brightness(1.1);
    animation: animationBall 20s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

.ball-2 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 100px;
    height: 100px;
    z-index: -100;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 10%, #00ffea 0%, #00d9ffc7 10%, transparent 80%);
    box-shadow: 0 0 120px 40px #00c3ff55, 0 0 200px 80px #00ffff33;
    filter: blur(70px) brightness(1.1);
    animation: animationBall2 15s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

.ball-3 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 100px;
    height: 100px;
    z-index: -100;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 10%, #1eff00 0%, #00ff37c7 10%, transparent 80%);
    box-shadow: 0 0 120px 40px #00ff3755, 0 0 200px 80px #00ff0033;
    filter: blur(70px) brightness(1.1);
    animation: animationBall3 10s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

.ball-4 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 100px;
    height: 100px;
    z-index: -100;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 10%, #d400ff 0%, #c300ffc7 10%, transparent 80%);
    box-shadow: 0 0 120px 40px #9900ff55, 0 0 200px 80px #8400ff33;
    filter: blur(70px) brightness(1.1);
    animation: animationBall4 5s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes animationBall {
    0% {
        transform: scale(1) translate(0, 0);
    }

    25% {
        transform: scale(1.2) translate(-800px, 800px);
    }

    50% {
        transform: scale(1.5) translate(-700px, -100px);
        opacity: 0.5;
    }

    75% {
        transform: scale(1.2) translate(40px, 30px);
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}

@keyframes animationBall2 {
    0% {
        transform: scale(1.2) translate(-800px, 800px);
    }

    25% {
        transform: scale(1.5) translate(-700px, -100px);
    }

    50% {
        transform: scale(1.2) translate(40px, 30px);
        opacity: 0.5;
    }

    75% {
        transform: scale(1.5) translate(-700px, -100px);
    }

    100% {
        transform: scale(1.2) translate(-800px, 800px);
    }
}

@keyframes animationBall3 {
    0% {
        transform: scale(1.5) translate(-700px, -100px);
    }

    25% {
        transform: scale(1.2) translate(40px, 30px);
    }

    50% {
        transform: scale(1.2) translate(-800px, 800px);
        opacity: 0.5;
    }

    75% {
        transform: scale(1.2) translate(-800px, 800px);
    }

    100% {
        transform: scale(1.5) translate(-700px, -100px);
    }
}

@keyframes animationBall4 {
    0% {
        transform: scale(1.5) translate(-400px, -50px);
    }

    25% {
        transform: scale(1.2) translate(-700px, 400px);
    }

    50% {
        transform: scale(1.2) translate(-800px, 300px);
        opacity: 0.5;
    }

    75% {
        transform: scale(1.2) translate(-700px, 100px);
    }

    100% {
        transform: scale(1.5) translate(-400px, -50px);
    }
}

.box-1 {
    max-width: 100%;
    padding: 20px;
    width: 100%;
    place-self: center;
    position: relative;


    h1 {
        font-size: 5rem;
        font-weight: bold;
        color: transparent;
        background: linear-gradient(45deg, var(--primaria-6), var(--primaria-5), var(--primaria-3), var(--primaria-2), var(--primaria-1), var(--primaria-6));
        background-clip: text;
        background-size: 300% 300%;
        animation: animationText 10s infinite linear;
        margin: 10px 0;
    }

    .sub-title {
        font-size: 4rem;
        place-self: center;
        line-height: 5rem;
    }

    h2 {
        font-size: 2rem;
        color: var(--secundaria-3);
    }

    p {
        font-size: 1.2rem;
        margin: 20px 0;
    }

    img {
        width: 100%;
        height: auto;
    }

    .btn1 {
        padding: 10px 20px;
        background: var(--primaria-2);
        color: var(--secundaria-1);
        border: none;
        border-radius: 5px;
        font-size: 1.1rem;
        cursor: pointer;
        transition: 300ms ease-in-out;
    }

    .btn1:hover {
        background: var(--primaria-3);
    }
}

#logo {
    opacity: 0;
}

.spline {

    #model-3d {
        width: 100%;
        height: 30rem;
    }

}


.card-section {
    gap: 40px;

    .card {
        width: 100%;
        height: 400px;
        text-align: center;
        border: 2px solid #dddddd1a;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 20px;
        color: var(--secundaria-5);
        padding: 20px;
        position: relative;
        transition: 300ms ease-in-out;
        cursor: pointer;
        z-index: 100;
    }



    .card::before {
        content: '';
        position: absolute;
        top: 1%;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        border-radius: 20px;
        transition: 500ms ease-in-out;
    }

    .card:hover::before {
        top: 3%;
    }

    .card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        background: linear-gradient(to bottom,
                var(--secundaria-7)50%,
                #1d1d1dd5);
        z-index: -1;
    }

    .card:nth-child(1)::before {
        background: linear-gradient(to right, #ff3c00, #ffa600);
    }

    .card:nth-child(1) {
        i {
            background: linear-gradient(to right, #ff3c00, #ffa600);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 50px #ff730069;
        }
    }

    .card:nth-child(1):hover h3 {
        color: #ff7300;
    }

    .card:nth-child(2):hover h3 {
        color: #b3ff00;
    }

    .card:nth-child(3):hover h3 {
        color: #00fff2;
    }

    .card:nth-child(4):hover h3 {
        color: #ff00ff;
    }

    .card:nth-child(2) {
        i {
            background: linear-gradient(to right, #009e08, #b3ff00);
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 50px #b3ff005d;
        }
    }

    .card:nth-child(3) {
        i {
            background: linear-gradient(to right, #00fff2, #0099ff);
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 50px #0099ff6c;
        }
    }

    .card:nth-child(4) {
        i {
            background: linear-gradient(to right, #ff00ff, #7700ff);
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 50px #7700ff62;
        }
    }

    .card:nth-child(2)::before {
        background: linear-gradient(to right, #009e08, #b3ff00);
    }

    .card:nth-child(3)::before {
        background: linear-gradient(to right, #00fff2, #0099ff);
    }

    .card:nth-child(4)::before {
        background: linear-gradient(to right, #ff00ff, #7700ff);
    }

    .card h3 {
        transition: 300ms ease-in;
    }

    .card i {
        background-color: rgba(0, 0, 0, 0.2);
        margin-bottom: 10px;
        font-size: 3rem;
        transition: 300ms ease-in;
    }

    .card p {
        font-size: 1rem;
        text-align: start;
        transition: 300ms ease-in;
    }


    .card:hover p {
        color: var(--secundaria-3);
    }
}


.banner-card {
    background: var(--secundaria-7);
    border-radius: 10px;
    padding: 10px;
    margin-top: 60px;

    hr {
        border-color: var(--secundaria-6);
    }

    span {
        text-align: center;
        margin: 0 20px;
        font-size: 1.4rem;
    }
}

.sobre {
    width: 100%;
    gap: 20px;

    section {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px 0;

    }

    .card-sobre {
        background: var(--secundaria-7);
        padding: 10px;
        width: 100%;
        border-radius: 10px;
        border: 1px solid transparent;
        transition: 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .card-sobre::before {
        content: '';
        display: block;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.075), rgba(82, 82, 82, 0.377), var(--secundaria-7), var(--secundaria-7));
        width: 100%;
        height: 100%;
        z-index: -1;
        position: absolute;
        left: -100%;
        transition: 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .card-sobre:hover {
        border: 1px solid #414141;
        transform: scale(1.01);
        box-shadow: -5px 5px 5px rgba(255, 255, 255, 0.05);
    }

    .card-sobre:hover::before {
        left: 0;
    }

    i {
        font-size: 3rem;
        color: var(--primaria-1);
        margin: 0 20px
    }

    .sobre-text {
        gap: 0;
    }

    p {
        font-size: 1.2rem;
        margin: 0;
        color: var(--secundaria-5);
    }

    h3 {
        color: var(--secundaria-3);
    }

}

.smartphone {
    position: relative;

    .card-smartphone {
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.075), rgba(82, 82, 82, 0.377), var(--background));
        padding: 10px;
        width: 35%;
        border-radius: 10px;
        position: absolute;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        border: 1px solid #414141;
    }

    .card-smartphone:nth-child(1) {
        top: 60%;
        left: 1%;
        animation: card-animation 8s infinite linear;
    }

    .card-smartphone:nth-child(2) {
        top: 85%;
        right: 8%;
        animation: card-animation 5s infinite linear;
    }

    .card-smartphone:nth-child(3) {
        top: -5%;
        left: 15%;
        animation: card-animation 10s infinite linear;
    }

    p {
        margin: 0;
        font-size: 0.8rem;
        color: var(--secundaria-3);
    }

    h3 {
        font-size: 1rem;
        color: var(--primaria-2);

    }
}

.slider {
    overflow: hidden;
    width: 100%;
    position: relative;

    .slide-track {
        display: flex;
        flex-direction: row;
        gap: 20px;
        transition: transform 0.3s linear;
        width: 100%;
        height: auto;
    }

    .slide {
        min-width: 25%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

    img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        filter: grayscale(20%);
        cursor: pointer;
    }
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-180%);
    }
}



@keyframes animationText {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: -300% 0;
    }
}

@keyframes card-animation {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
}

.modal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.modal .close:hover {
    color: #555;
}

.instagram-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
}

.instagram-frame .header {
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
}

.instagram-frame .insta {
    width: 100%;
    padding: 10px;
    display: flex;
    margin-top: 5px;
    align-items: center;
    border-top: 1px solid #ddd;
    justify-content: space-between;
    font-size: 24px;
}

.instagram-frame .header .profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    padding: 2px;
}

.instagram-frame img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.margin {
    margin-top: 300px;
}

.margin-2 {
    margin-top: 150px;
}

.margin-3 {
    margin-top: 350px;
}

.mouse {
    width: 30px;
    height: 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;

    hr {
        position: absolute;
        border: 1px solid var(--secundaria-6);
        top: 20%;
        height: 10px;
        animation: mouse-animation 2s infinite linear;
    }
}

.mouse::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--background);
    z-index: -1;
    border-radius: 20px;
}

.mouse::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(to bottom, transparent 0%, var(--secundaria-6) 30%, transparent 100%);
    animation: border-animation 2s linear infinite;
    z-index: -1;

}

@keyframes border-animation {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

@keyframes mouse-animation {

    0% {
        transform: translateY(0px);
        opacity: 0;
    }

    50% {
        transform: translateY(-3px);
        opacity: 1;
    }

    100% {
        transform: translateY(0px);
        opacity: 0;
    }
}


.servicos {
    position: relative;


    h1 {
        color: var(--secundaria-1);
        margin-bottom: 50px;
        font-size: 3rem;
        position: absolute;
        top: -5%;
        z-index: 10;
        transition: 500ms ease-in-out;
    }

    img {
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 97%);
        --webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 97%);
    }

    .opcao-servico {
        z-index: 10;
        position: absolute;
        top: 10%;

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            border-radius: 5px;
            height: 30px;

            li:nth-child(1) {
                color: var(--primaria-1);

                i {
                    color: var(--primaria-1);
                }
            }

            li {
                transition: 300ms ease-in-out;
                font-size: 1.2rem;
                background: var(--secundaria-7);
                padding: 10px 20px;
                border-radius: 8px;
                position: relative;


                i {
                    margin-right: 10px;
                    font-size: 1.2rem;
                    color: var(--secundaria-5);
                    transition: 500ms ease-in-out;
                }
            }

            li::before {
                content: '';
                position: absolute;
                background: rgb(199, 199, 199);
                width: 100%;
                height: 100%;
                top: -5%;
                left: 0;
                border-radius: 8px;
                animation: animation-servicos 2s linear infinite;
                transform: scale(1);
                z-index: -1;
            }

            li:hover {
                cursor: pointer;
                color: var(--primaria-1);

                i {
                    color: var(--primaria-1)
                }
            }



        }
    }


    .box-1 {
        width: 100%;
    }

    h2 {
        font-size: 4.5rem;
        line-height: 5rem;
    }

    p {
        font-size: 1.4rem;
        line-height: 2.4rem;
    }

    .barra {
        width: 150%;
        height: 50%;
        position: absolute;
        z-index: -10;
        border-radius: 50rem;
    }

    .barra1 {
        background: linear-gradient(90deg, var(--primaria-1) 0%, var(--primaria-3) 20%, var(--background) 50%, var(--background));
        transform: rotate(60deg);
        top: 85%;
        left: -20%;
    }

    .barra2 {
        background: linear-gradient(90deg, var(--secundaria-4)00%, var(--secundaria-6) 20%, var(--background) 50%, transparent 60%);
        transform: rotate(-140deg);
        top: -40%;
        left: -35%;
    }

    .barra3 {
        background: linear-gradient(90deg, var(--primaria-4)0%, var(--primaria-5) 20%, var(--background) 50%, transparent 60%);
        transform: rotate(130deg);
        top: 70%;
        left: -70%;
    }

    .barra4 {
        background: linear-gradient(90deg, var(--secundaria-1)0%, var(--secundaria-5) 20%, var(--background) 50%, transparent 60%);
        transform: rotate(60deg);
        top: 85%;
        left: -20%;
    }

    .barra5 {
        background: linear-gradient(90deg, var(--primaria-1)0%, var(--primaria-4) 20%, var(--background) 50%, transparent 60%);
        transform: rotate(-40deg);
        top: -30%;
        left: 20%;
    }

    .barra6 {
        background: linear-gradient(90deg, var(--primaria-4)0%, var(--primaria-5) 20%, var(--background) 50%, transparent 60%);
        transform: rotate(130deg);
        top: 70%;
        left: -70%;
    }

    .barra7 {
        background: linear-gradient(90deg, var(--secundaria-3)0%, var(--secundaria-6) 20%, var(--background) 50%, transparent 60%);
        transform: rotate(-140deg);
        top: -40%;
        left: -35%;
    }

    .barra8 {
        background: linear-gradient(90deg, var(--primaria-4)0%, var(--primaria-5) 20%, var(--background) 50%, transparent 60%);
        transform: rotate(130deg);
        top: 70%;
        left: -70%;
    }

    .hidden {
        display: none;
    }

}

@keyframes animation-servicos {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.05;
    }

    100% {
        transform: scale(1.1);
        height: 110%;
        opacity: 0;
    }
}

@keyframes barra1 {
    0% {
        top: 170%;
        left: 0%;
        opacity: 0;
    }

    100% {
        top: 85%;
        left: -20%;
        opacity: 1;
    }
}

@keyframes barra2 {
    0% {
        top: -100%;
        left: -70%;
        opacity: 0;
    }

    100% {
        top: -40%;
        left: -35%;
        opacity: 1;
    }
}

@keyframes barra3 {
    0% {
        top: 140%;
        left: -100%;
        opacity: 0;
    }

    100% {
        top: 70%;
        left: -70%;
        opacity: 1;
    }
}

@keyframes barra5 {
    0% {
        top: -60%;
        left: 40%;
        opacity: 0;
    }

    100% {
        top: -30%;
        left: 20%;
        opacity: 1;
    }
}

@keyframes opacity-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes opacity-out-animation {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.card-icon {
    padding: 20px 10px;
    background: linear-gradient(45deg, transparent, #dddddd07);
    border: 1px solid #dddddd0e;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: 30%;
    border-radius: 5px;
    cursor: pointer;
    transition: 500ms ease-in-out;

    h3 {
        text-align: center;
        font-size: 1rem;
        line-height: 1.8rem;
        transition: 500ms ease-in-out;
    }

    p {
        margin: 0;
        font-size: 1rem;
        line-height: 1.3rem;
        text-align: center;
    }

    i {
        display: flex;
        place-self: center;
        font-size: 2rem;
        margin: 10px 0;
        transition: 500ms cubic-bezier(0.645, 0.045, 0.355, 1);
    }
}

.card-icon:nth-child(1):hover {
    border: 1px solid #00ccff;

    h3,
    i {
        color: #00ccff;
    }
}

.card-icon:nth-child(2):hover {
    border: 1px solid #00ff2a;

    h3,
    i {
        color: #00ff2a;
    }
}

.card-icon:nth-child(3):hover {
    border: 1px solid #ffffff;

    h3,
    i {
        color: #ffffff;
    }
}

.card-icon:nth-child(4):hover {
    border: 1px solid #ffa600;

    h3,
    i {
        color: #ffa600;
    }
}

.card-icon:nth-child(5):hover {
    border: 1px solid #ff0015;

    h3,
    i {
        color: #ff0015;
    }
}

.card-icon:nth-child(6):hover {
    border: 1px solid #fbff00;

    h3,
    i {
        color: #fbff00;
    }
}

@keyframes animation-modal {
    0% {
        opacity: 0;

    }

    100% {
        opacity: 1;
    }
}

.banner-info {
    width: 70%;
    height: 100%;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--secundaria-6), var(--secundaria-4));
    justify-content: flex-start;
    align-items: center;
    place-self: center;
    position: relative;
    z-index: 100;

    .linha-vertical {
        border: 1px solid rgba(255, 255, 255, 0.11);
        height: 5rem;
    }

    .info {
        text-align: center;
        padding: 20px;

        i {
            font-size: 2rem;
            color: var(--secundaria-5);
            padding: 10px 15px;

        }

        h2 {
            font-size: 2rem;
            color: transparent;
            background: linear-gradient(45deg, #c76138, #ff7850);
            background-clip: text;
        }

        p {
            color: var(--secundaria-2);
        }
    }

    .info-img {
        position: absolute;
        right: 0;
        bottom: -5%;
        text-align: center;

        img {
            width: 70%;
        }
    }

}

.banner-info::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secundaria-6), var(--secundaria-4));
    border-radius: 20px;
    opacity: 0.2;
    animation: animation-banner 1.5s infinite linear;
    z-index: -1;

}

@keyframes animation-banner {
    0% {
        opacity: 1;
        transform: scale(1);

    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: scale(1.05);
        height: 120%;
    }
}

.conteudo {

    .box-1 {
        position: relative;

        img {
            width: 100%;
            height: auto;
            border-radius: 40px;
            box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
        }

        .imgBackground {
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.096);
            transform: rotate(-10deg);
            border-radius: 40px;
            top: 0;
            left: 0;
            z-index: -1;
        }

        img:nth-child(2) {
            border-radius: 20px;
            position: absolute;
            top: -5%;
            right: -10%;
            z-index: 100;
            width: 30%;
        }

        img:nth-child(3) {
            border-radius: 20px;
            position: absolute;
            bottom: -15%;
            left: -10%;
            z-index: 100;
            width: 40%;

        }

        img:nth-child(4) {
            position: absolute;
            bottom: -10%;
            right: -10%;
            z-index: -1;
            width: 30%;

        }

        img:nth-child(4) {
            border-radius: 20px;
            position: absolute;
            bottom: -10%;
            right: -10%;
            z-index: -1;
            width: 30%;

        }

        img:nth-child(5) {
            border-radius: 20px;
            position: absolute;
            bottom: -15%;
            right: 40%;
            z-index: -1;
            width: 20%;


        }

        .content {
            align-items: flex-start;
            margin-bottom: 50px;

            .ant-title {
                font-size: 1rem;
                background: linear-gradient(45deg, #ff008c, #f5c03a);
                background-clip: text;
                -webkit-background-clip: text;
                color: transparent;
                text-transform: uppercase;
                font-weight: 600;
                padding: 5px 10px;
                border-radius: 100rem;
                border: 1px solid #dddddd21;
                margin: 20px 0;

            }

            .title {
                font-size: 2.5rem;
            }

            p {
                margin: 0;
            }
        }
    }

}

.box-1 {
    .text-form {
        font-size: 3rem;
        line-height: 3.5rem;
        color: var(--primaria-2);
    }

    .btn-1 {
        padding: 10px 20px;
        border-radius: 5px;
        border: 1px solid var(--secundaria-6);
        color: var(--secundaria-1);
        font-weight: 500;
        background: none;
        font-size: 16px;
        transition: 0.3s;
        cursor: pointer;
        margin-top: 20px;
        place-self: center;

    }

    form {
        background: linear-gradient(45deg, #0000000e, #dddddd13);
        padding: 20px;
        border-radius: 20px;
        border: 1px solid #68686838;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);

        label {
            margin-top: 20px;
            color: var(--secundaria-1);
        }

        input {
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #99999918;
            outline: none;
            background: linear-gradient(45deg, #8383830c, #86868618);
            color: var(--secundaria-4);
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            font-size: 1.1rem;
        }

        input:-webkit-autofill,
        input:-webkit-autofill:focus,
        input:-webkit-autofill:hover,
        input:-webkit-autofill:active {
            color: var(--secundaria-3) !important;
            -webkit-text-fill-color: var(--secundaria-4) !important;
            transition: background-color 5000s ease-in-out 0s;
        }

        select {
            padding: 10px;
            border-radius: 5px;
            outline: none;
            background: linear-gradient(45deg, #8383830c, #86868618);
            color: var(--secundaria-5);
            border: 1px solid #9999991e;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            font-size: 1.1rem;
        }

        select:focus {
            background: linear-gradient(45deg, #8383830c, #86868618);
            color: var(--secundaria-1);
        }

        select option {
            background: var(--background);
            color: var(--secundaria-4);
        }

        button {
            padding: 10px 20px;
            border-radius: 5px;
            border: 1px solid var(--secundaria-6);
            color: var(--secundaria-1);
            font-weight: 500;
            background: none;
            font-size: 16px;
            transition: 0.3s;
            cursor: pointer;
            margin-top: 20px;
            width: 30%;
            place-self: center;
        }

        button:hover {
            background: var(--secundaria-6);
        }

        textarea {
            padding: 10px;
            border-radius: 5px;
            outline: none;
            resize: none;
            height: 200px;
            background: linear-gradient(45deg, #8383830c, #86868618);
            border: 1px solid #9999991e;
            color: var(--secundaria-4);
            font-size: 1.1rem;
        }

    }
}

footer {
    background: linear-gradient(45deg, #00000067, #dddddd07);
    border: 1px solid #ffffff36;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    text-align: start;

    .box-1 {
        place-self: flex-start;

        span {
            input {
                padding: 5px 10px;
                border-radius: 2px;
                border: none;
                outline: none;
                width: 60%;
            }

            button {
                padding: 5px 10px;
                border-radius: 2px;
                border: none;
                outline: none;
                cursor: pointer;
                transition: 300ms ease-in-out;
            }

            button:hover {
                background: var(--secundaria-3);
            }
        }

        .redes {
            margin-top: 50px;
        }

        .social-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            a::before {
                opacity: 0;
                
            }
            a{
                background: var(--primaria-1);
                padding: 15px;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 10%;
                border-radius: 50%;
            }

            i {
                font-size: 2rem;
                transition: 200ms ease-in-out;
            }

            i:hover {
                color: var(--primaria-2);
            }
        }

        img {
            width: 30%;
            place-self: center;
        }

        h1 {
            width: 50%;
            place-self: center;
            font-size: 3rem;
            text-align: center;
            line-height: 3rem;
            margin: 0;
        }

        h2 {
            text-align: center;
            font-size: 1.6rem;
            color: var(--primaria-2);

        }

        h3 {
            color: var(--secundaria-1);
        }

        .lab {
            color: var(--secundaria-3);
        }

        .fale {
            font-size: 2.5rem;
            text-align: start;
        }

        a {
            text-decoration: none;
            color: var(--secundaria-3);
            font-weight: 300;
            margin-top: 5px;
            position: relative;
        }

        a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--primaria-1);
            transition: width 0.3s ease-in-out;
        }

        a:hover::before {
            width: 50px;
        }
    }
}

.copyright {
    text-align: end;
    color: var(--secundaria-5);
}

.seta {
    position: fixed;
    right: 3%;
    bottom: 7%;

    i {
        color: var(--secundaria-1);
        font-size: 2rem;
        transition: 500ms ease-in-out;
    }

    i:hover {
        color: var(--primaria-2);
    }
}

.box-1 {
    .email {
        align-items: center;
        padding: 5px;
        border-radius: 5px;

        button {
            margin-top: 0;
            margin-left: 10px;
        }
    }
}

#home {
    .sanduiche {
        display: none;
    }
}
@media screen and (max-width: 1920px) {
    footer{
        .box-1{
            .social-icons{
                a{
                    width: 15%;
                }
            }
        }
    }
    
}
@media (max-width: 1440px) {
    .main {
        margin: 0;
        padding: 0 2rem;
        overflow: hidden;
    }

    .conteudo {
        & .box-1 {
            img:nth-child(2) {
                top: -5%;
                right: -1%;
            }

            img:nth-child(4) {
                bottom: -15%;
                right: -1%;
            }
        }
    }

    .banner-info {
        .info-img {
            text-align: end;

            img {
                width: 60%;
            }
        }
    }

    footer {
        & .box-1 {
            h1 {
                width: 100%;
            }
            .social-icons {
                a {
                    width: 20%;
                }}
        }
    }

}

@media (max-width: 1024px) {
    .box-1 {
        .sub-title {
            font-size: 2.5rem;
            line-height: 3rem;
        }

        p {
            font-size: 1rem;
        }
    }

    .banner-info {
        width: 100%;
    }

    .sistema {
        width: 100%;
    }

    .servicos {
        .opcao-servico {
            top: 5%;

            ul {
                flex-wrap: wrap;
                justify-content: left;

                li {
                    padding: 5px 10px;
                    font-size: 1.1rem;
                }
            }
        }

        img {
            width: 40%;
        }

        h2 {
            font-size: 2.5rem;
            line-height: 3rem;
        }

        p {
            font-size: 1rem;
            line-height: 1.5rem;
        }

        .card-icon {
            h3 {
                font-size: 0.9rem;
                line-height: 1.1rem;
            }

            p {
                font-size: 0.9rem;
                line-height: 1.1rem;
            }
        }
    }

    .smartphone {
        h3 {}

        p {
            font-size: 0.8rem;
        }

        .card-smartphone {
            width: 50%;
        }
    }

    .sobre {
        h3 {
            font-size: 0.8rem;

        }

        p {
            font-size: 0.9rem;
            line-height: 1rem;
        }
    }

    .margin {
        margin-top: 200px;
    }

    .card-section {
        gap: 20px;

        .card {
            padding: 10px;
        }

        .card h3 {
            font-size: 1rem;
            line-height: 1.1rem;
        }

        .card p {
            font-size: 0.9rem;
        }
    }

    .box-1 {
        .text-form {
            font-size: 2.6rem;
            line-height: 2rem;
        }
    }
}

@media (max-width: 852px) {
    .main {
        padding: 0;
    }

    .flex {

        flex-direction: column;
    }

    .opcao-servico {
        padding: 0 20px;

        ul {
            flex-direction: column;
            align-items: center;
        }
    }


    #home {
        flex-direction: column;
        margin: 0;
        padding: 10px;

        nav {
            width: 100%;

            ul {
                flex-direction: column;
                width: 100%;

                li {
                    margin: 0;
                    margin-top: 10px;

                    a {
                        font-size: 1.2rem;
                    }
                }
            }
        }
    }

    .servicos {
        .barra {
            width: 100%;
        }
    }

    .main {
        overflow: hidden;
        margin: 0;
    }

    .titulo {
        text-align: center;
        line-height: 4.5rem;
    }

    .sub-titulo {
        margin: 0;
    }

    .container-1 {
        margin-top: 100px;
    }

    .margin {
        margin-top: 150px;
    }

    .slider {
        .slide {
            min-width: 80%;
        }
    }

    .box-1 {
        .sub-title {
            font-size: 2.6rem;
            line-height: 3rem;
        }
    }

    .card-section {
        .card h3 {
            font-size: 1.6rem;
        }
    }

    .banner-card {
        flex-direction: row;
        width: 95%;
        margin-top: 20px;

        h3 {
            font-size: 1.6rem;
        }

        p {
            font-size: 1rem;
            line-height: 1.2rem;
        }

        span {
            margin: 0 5px
        }
    }

    .margin-3 {
        margin-top: 600px;
    }

    .banner-info {
        width: 90%;

        .info-img {
            bottom: 99%;
            z-index: -1;
            right: auto;
            text-align: center;

            img {
                width: 100%;
            }
        }

        .info {
            padding: 0;

            h2 {
                line-height: 3rem;
                font-size: 3rem;
            }

            p {
                font-size: 1.2rem;
            }

            i {
                color: var(--secundaria-4);
            }
        }

        .linha-vertical {
            height: 0;
            width: 50%;
            margin: 30px 0;
        }
    }

    .banner-info::before {
        width: 0;
    }

    .servicos {
        width: 99%;

        img {
            width: 100%;
        }

        & .opcao-servico {
            top: -10%;

            & ul {
                flex-direction: row;
                gap: 10px;
                justify-content: center;
                width: 100%;

                li {
                    overflow: visible;
                    padding: 5px;
                    text-align: center;
                    font-size: 1.6rem;

                    i {
                        font-size: 1.5rem;
                        place-self: center;
                    }
                }
            }
        }

        h1 {
            top: -17%;
            line-height: 2.5rem;
            padding: 0 20px;
        }

        h2 {
            font-size: 2.2rem;
            line-height: 2.5rem;
        }

        .wrap {
            flex-direction: row;
            gap: 10px;
            justify-content: center;
        }

        .barra {
            display: none;
        }

        p {
            line-height: 2rem;
        }
    }

    .margin-2 {
        margin: 0;
    }

    .margin-servicos {
        margin-top: 400px;
    }

    .card-icon {
        width: 47%;
        padding: 10px;

        h3 {
            line-height: 1.2rem;
            font-size: 0.9rem;
        }

        p {
            line-height: 1.2rem;
        }
    }

    .card-servicos {
        justify-content: center;
    }

    #sobre {
        font-size: 3rem;
        line-height: 3rem;
    }

    .card-sobre {
        text-align: center;
    }

    .smartphone {
        margin-top: 100px;

        .card-smartphone {
            width: 50%;
        }

        .card-smartphone:nth-child(3) {
            top: -20%;
            left: 10%;
        }

        .card-smartphone:nth-child(2) {
            top: 90%;
            right: 4%;
        }

        .card-smartphone:nth-child(1) {
            top: 60%;
            left: 4%;
        }
    }


    .conteudo {
        text-align: center;

        & .box-1 {
            img {
                width: 90%;
                height: auto;
            }

            .imgBackground {
                width: 80%;
                height: 100%;
                left: 10%;
            }

            img:nth-child(2) {
                top: -10%;
                right: 2%;
            }

            img:nth-child(3) {
                left: 4%;
                bottom: -20%;
            }

            img:nth-child(4) {
                right: 4%;
                bottom: -15%;
            }

            img:nth-child(5) {
                right: 35%;
                bottom: -3%;
                z-index: 10;
                width: 25%;
            }

            h2 {
                text-align: start;
            }

            p {
                text-align: start;
            }

        }
    }

    footer {
        padding: 10px;
        text-align: center;

        .box-1 {

            .email {
                flex-direction: row;
            }
            .social-icons {
                justify-content: center;
                a {
                    width: 10%;
                }}
        }

        .copyright {
            p {
                text-align: center;
                font-size: 0.9rem;
            }
        }

    }

    .box-1 {
        form {
            padding: 10px;

            input {
                width: 100%;
            }

        }
    }

    #home {
        padding: 20px;
        position: relative;

        section {
            display: flex;
            flex-direction: row;
            width: 100%;
            justify-content: space-between;
        }

        nav {
            display: none;
            transition: 500ms ease-in-out;
            overflow: hidden;
            height: 1px;
            opacity: 0;
        }

        .sanduiche {
            width: 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        hr {
            width: 100%;
            height: 0%;
            margin: 5px 0;
            border: 2px solid var(--secundaria-2);
            border-radius: 50px;
            transition: 500ms ease-in-out;
        }
    }
}

@media screen and (max-width: 480px) {
    .box-1 {
        form {
            justify-content: space-around;
        }

        .text-form {
            line-height: 2.4rem;
        }

        .sub-title {
            font-size: 2.3rem;
            line-height: 2.9rem;
        }
    }

    .servicos {
        h1 {
            top: -23%;
        }

        p {
            line-height: 1.4rem;
        }

        & .opcao-servico {
            top: -13%;

            & ul {
                justify-content: start;
                gap: 15px;

                li {
                    font-size: 1.1rem;
                }
            }
        }
    }

    .card-section {
        .card h3 {
            font-size: 1.8rem;
            line-height: 2.1rem;
        }

        .card p {
            font-size: 1.2rem;
        }
    }

    .smartphone {
        .card-smartphone {
            width: 60%;
        }

        .card-smartphone:nth-child(1) {
            top: 70%;
        }

        .card-smartphone:nth-child(2) {
            top: 105%;
        }
    }
    footer{
        .box-1{
            .social-icons{
                a{
                    width: 18%;
                }
            }
        }
    }
}

@media screen and (max-width: 393px) {
    .box-1 {
        h1 {
            font-size: 4rem;
        }

        & form {
            input {
                padding: 5px;
            }
        }

        & .email {
            button {
                padding: 5px;
            }
        }
    }

    .card-section {
        .card p {
            font-size: 1rem;
        }
    }

    .servicos {
        h1 {
            top: -26%;
        }

        .opcao-servico {
            top: -16%;

            ul {
                li {
                    font-size: 1rem;

                    i {
                        font-size: 1rem;
                        margin-right: 2px;
                    }
                }
            }
        }
    }

    .smartphone {
        .card-smartphone:nth-child(2) {
            top: 108%;
        }
    }
    footer{
        .box-1{
            .social-icons{
                a{
                    width: 20%;
                }
            }
        }
    }
}

@media screen and (max-width: 320px) {
    .logo a h2 {
        font-size: 1.2rem;
    }

    .box-1 {
        h1 {
            line-height: 3.5rem;
        }

        p {
            margin: 10px 0;
        }
    }

    .smartphone {
        .card-smartphone {
            width: 85%;
        }

        .card-smartphone:nth-child(3) {
            top: -30%;
        }

        .card-smartphone:nth-child(2) {
            top: 115%;
        }
    }

    .card-section {
        .card {
            height: 450px;
        }
    }

    footer {
        .box-1 {
            h1 {
                line-height: 2.5rem;
            }
            .fale{
                line-height: 2.4rem;
                margin-bottom: 10px;
            }

                    .social-icons{
                        gap: 5px;
                        a{
                            width: 25%;
                        }

            }
        }
    }
}