@charset 'UTF-8';

@font-face {
    font-family: Montserrat;
    src: url('../assets/fonts/Montserrat/static/Montserrat-Bold.ttf');
}

@font-face {
    font-family: Poppins;
    src: url('../assets/fonts/Poppins/Poppins-Regular.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: Poppins;
}


:root {
    --black-color: #060638;
    --white-color: #ffffff;
    --primary-blue-color: #1f6feb;
    --dark-blue-color: #002ac2;
    --light-blue-color: #00ffff;
    --light-gray-color: #c9d1d9;
}

html {
    scroll-behavior: smooth;
}

body {
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
}


p,
h1,
h2,
h3,
h4,
span,
strong {
    opacity: 0;
    transform: translateY(40px);
    transition: .6s;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.no-scroll {
    overflow: hidden;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 91px;
    color: var(--white-color);
    z-index: 9999;
}

.nav-bar {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--black-color);
    transition: all .5s ease;
}

.nav-bar.rolagem {
    background-color: #0211472d;
    backdrop-filter: blur(5px);
}


.nav-link {
    color: var(--white-color);
    text-decoration: none;
    font-size: 1.1em;
    position: relative;
}

.nav-link::before {
    position: absolute;
    top: 20px;
    left: 0;
    content: '';
    height: 3px;
    width: 100%;
    background-color: var(--white-color);
    transform: scale(0);
    transform-origin: right;
    transition: transform .4s ease-in-out;
}

.nav-link:hover::before {
    transform: scale(1);
    transform-origin: left;
}


.main {
    color: var(--white-color);
    padding-top: 89px;
}

.section {
    width: 100%;
    min-height: 100vh;
}

#about,
#projects,
#contact {
    background-color: var(--dark-blue-color);
    padding: 50px 12px;
}

h1 {
    font-family: Montserrat;
}

#home {
    background-image: linear-gradient(to bottom, var(--black-color), #083cfa, var(--black-color));
    padding: 20px 12px;
}

#home h1 {
    font-family: Montserrat;
    line-height: 1.3em;

}

#home p {
    margin: 30px 0;
    padding: 10px;
    text-align: justify;
}

#home .btn-contacto {
    transition: all .5s ease-in-out;
    -webkit-box-reflect: below 10px linear-gradient(transparent, rgba(0, 0, 0, .5));
    animation: scale 1.5s ease-in-out infinite alternate forwards running;
    padding: 15px;
    background-color: var(--dark-blue-color);
    border: 1px solid var(--primary-blue-color);
    border-radius: 12px;
    box-shadow: 0px 0px 10px #4f93f880;
    font-size: 4vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
  @keyframes scale {
        from {
            transform: scale(1);
        }

        to {
            transform: scale(1.07);
            background-color: #021147;

        }
    }


.btn-contacto a {
    text-decoration: none;
    color: var(--white-color);
}


#about .info-divs {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.info-divs .desc {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
}

.info-divs .mascote img {
    filter: drop-shadow(3px 3px 10px #080f29);
}

.desc-vmv {
    display: flex;
    gap: 5px;
    margin: 2px;
}

.desc-vmv .card-desc {
    border: 1px solid rgba(31, 111, 235, .5);
    border-radius: 10px;
    padding: 5px;
    display: flex;
    flex-direction: column;
}

.desc-vmv .card-desc .icon {
    display: flex;
    align-items: center;
    padding: 3px;
}

.desc-vmv .card-desc p {
    padding: 2px;
    text-align: justify;
}

#services {
    background: url('../assets/images/backgrounds/background-servicos-3.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: gray;
    padding: 50px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#services .service-cards .card-desc {
    border: 1px solid var(--white-color);
    border-radius: 20px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 0 10px rgba(255, 255, 255, .3);
    backdrop-filter: blur(18px);
    width: 98%;
}

.service-cards .card-desc .desc {
    display: flex;
    gap: 10px;
    align-items: center;
}

.service-cards .card-desc button {
    padding: 18px;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 15px;
    color: #ffffff;
    font-size: 1.3em;
}



.service-cards .card-desc .desc-service {
    text-align: justify;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity .5s ease-in-out, height .5s ease;
}

.service-cards .desc-service.show-desc {
    opacity: 1;
}


#projects h1 {
    text-align: center;
    margin: 20px;
}

#projects h3 {
    font-weight: 480;
}

#projects .card-project {
    border: 1px solid;
    margin: 10px 0 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 15px;
}

#web-cards .card-project .img-project {
    height: 200px;
}

#marketing-cards .card-project .img-project {
    height: 100%;
}

.card-project .img-project {
    width: 98%;
    margin-top: 5px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid;
}

.card-project .img-project img {
    height: 100%;
    width: 100%;
    object-fit: fill;
}

.card-project .desc-project {
    text-align: center;
}

.card-project .btn-project {
    padding: 18px;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 15px;
    width: 100%;
    transition: background-color .15s ease;
}

.btn-project:hover {
    background-color: #0226a7;
}

.btn-project a {
    text-decoration: none;
    color: #ffffff;
    transition: all .5s ease-in-out;
}

.btn-project a:hover {
    text-decoration: underline;
}


#contact {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#contact h1 {
    text-align: center;
    margin-bottom: -8px;
    margin-top: 10px;
}

#contact .form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.form .input-box {
    width: 98%;
    height: 55px;
}

.form .input-box input,
.input-box input:-webkit-autofill {
    height: 100%;
    padding: 20px;
    border: 1px solid #ffffff;
    border-radius: 12px;
    background-color: transparent;
    color: #ffffff;
    font-size: 1.2em !important;
    -webkit-box-shadow: 0 0 0 1000px #002ac2 inset !important;
    -webkit-text-fill-color: #ffffff;
}


.form textarea {
    height: 150px;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 15px;
    color: #ffffff;
    padding: 10px;
    font-size: 1.2em;
}

.form input[type='submit'] {
    margin-top: 100px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;

}
.input-box input[type='submit']:hover{
    background-color: #000;
}
  
.form ::placeholder {
    color: #ffffff;
}

.contacto {
    padding: 10px;
    line-height: 1.5em;
}

.contacto span {
    display: flex;
    gap: 5px;
}

.contacto span strong {
    font-weight: 550;
}

.contacto span a {
    color: #ffffff;
}

.contacto .social-media-king-code {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-media-king-code .icon {
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px rgba(255, 255, 255, .5);
}

.social-media-king-code .icon a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer {
    background-image: linear-gradient(to bottom, var(--dark-blue-color), var(--black-color));
    height: 110px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -110px;
    padding-bottom: 40px;
}

.footer p {
    color: var(--white-color);
    opacity: 1;
    margin-bottom: 10px;
}

.footer a {
    text-decoration: none;
    color: var(--white-color);
}




@media screen and (max-width: 990px) {
    .code-simbol {
        display: none;
    }

    .logo {
        z-index: 450;
        height: 60px;
        width: 60px;
        box-shadow: 0 0 5px rgba(0, 0, 0, .5);
        border-radius: 50%;
    }

    .logo img {
        height: 100%;
        width: 100%;
    }

    .logo span {
        display: none;
    }

    .nav-bar {
        justify-content: space-around;
    }

    .nav-bar .nav-list {
        position: fixed;
        top: 90px;
        left: -100%;
        height: 100vh;
        width: 100%;
        background-color: #06063873;
        backdrop-filter: blur(7px);
        line-height: 3.8em;
        transition: all .5s ease-in-out;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-bar .nav-list.rolagem {
        background-color: #021d80b7;
        backdrop-filter: blur(10px);
    }

    .nav-list.show {
        left: -25%;
        box-shadow: 30px 0px 280px #060638;
    }

    .nav-item {
        transition: all .8s ease-in-out;
        opacity: 0;
        transform: translateX(0);
        width: 50%;
        text-align: center;
        font-weight: 600;
    }

    .active .nav-item {
        opacity: 1;
        transform: translateX(20%);
    }

    .active .nav-item:nth-child(1) {
        transition-delay: .1s;
    }

    .active .nav-item:nth-child(2) {
        transition-delay: .2s;
    }

    .active .nav-item:nth-child(3) {
        transition-delay: .3s;
    }

    .active .nav-item:nth-child(4) {
        transition-delay: .4s;
    }

    .active .nav-item:nth-child(5) {
        transition-delay: .5s;
    }

    .btn-menu {
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .btn-menu div {
        width: 35px;
        height: 3.5px;
        margin: 8px;
        background-color: var(--white-color);
        transition: all .3s ease;
        z-index: 450;
        border-radius: 3px;
    }

    .close div:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .close div:nth-child(2) {
        opacity: 0;
    }

    .close div:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .show.main {
        background-color: #000;
    }

    #home {
        padding-top: 50px;
    }

    #home h1 {
        font-size: 7vw;
        width: 90%;
        padding: 10px;
    }

    #home p {
        font-size: 4.8vw;
    }

    #home .btn-contacto {
        margin: auto;
        margin-top: 50px;
        height: 50px;
        width: 55vw;
    }

    #about h1 {
        font-size: 6vw;
    }

    .info-divs {
        margin: 15px 8px;
    }

    .info-divs .mascote img {
        height: 200px;
    }

    .desc p {
        font-size: 4.8vw;
        text-align: justify;
    }

    .card-desc h3 {
        font-size: 4.5vw;
    }

    .desc-vmv .card-desc {
        width: 33%;
        padding: 5px;
        gap: 5px;
    }

    .desc-vmv .card-desc p {
        word-break: break-word;
        font-size: 4vw;
    }

    .contacto {
        margin-top: 120px;
    }


  
    #services {
        flex-direction: column;
        align-items: center;
    }

    #services .service-cards {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .service-cards .card-desc h3 {
        font-size: 5vw;
    }

    .service-cards .card-desc .desc-service {
        font-size: 4.5vw;
    }

    .card-desc .btn.menos::after {
        content: 'Ver menos';
        font-size: 5.4vw;

    }

    .card-desc .btn::after {
        content: 'Ver mais';
        font-size: 5.4vw;

    }

    #projects h3 {
        font-size: 1.4em;
    }

    #web-cards .card-project .img-project {
        height: 220px;
    }

    #marketing-cards .card-project .img-project {
        height: 360px;
    }

    .desc-project h4 {
        padding: 5px 0;
        font-size: 4.7vw;
    }

    .desc-project p {
        line-height: 1.2em;
        font-size: 4.5vw;
    }

    .card-project .btn-project {
        font-size: 5vw;
    }

    .form .input-box input,
    .input-box textarea {
        width: 100%;
    }
 .input-box input[type="submit"] {
        transition: all .2s ease;
    }
     .input-box input[type="submit"]:hover {
        background-color: #021147;
        transform: scale(1.006);
    }
    .contacto span {
        font-size: 4.6vw;
    }
}


@media screen and (min-width:991px) {
    .nav-bar {
        justify-content: space-between;
        padding: 0px 35px;
    }



    .btn-menu {
        display: none;
    }

    .logo {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 63px;
        width: 63px;
        margin-left: 30px;
        gap: 8px;
    }

    .logo img {
        width: 100%;
        height: 100%;
    }

    .logo span {
        font-size: 1.2em;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-list {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }

    #home {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #home .home-desc {
        align-self: center;
        padding-left: 50px;
    }

    #home .code-simbol {
        transition: transform .5s ease;
        animation: animaCode 2s ease-in-out .1s infinite alternate forwards running;
        align-self: flex-start;
        filter: drop-shadow(0 0 8px #4f93f880);
    }

    @keyframes animaCode {
        from {
            transform: translate(0px, 0px);
        }

        to {
            transform: translate(25px, 25px);
        }
    }


    #home h1 {
        font-size: 2.2em;
        width: 70%;
    }

    #home p {
        font-size: 1.4em;
    }

    #home .btn-contacto {
        margin-left: 10px;
        transition: all .5s ease;
        width: 230PX;
        font-size: 16px;
    }

    #home .home-desc .btn-contacto:hover {
        background-color: #021147;
    }

    #about .info-divs{
        width: 1000px;
        margin: 20px auto;
    }
    #about h1 {
        font-size: 1.7em;
    }
    #about .text-mascote{
        display: flex;
        justify-content: space-between;
        gap: 20px;
        width: 1100px;
    }

    .desc {
        width: 70%;
        line-height: 1.3em;
        font-size: 1.2em;
    }
    .info-divs .mascote{
        width: 30%;
    }
    #about .info-divs .mascote img {
        height: 220px;
    }

    .desc-vmv {
        justify-content: space-evenly;
    }

    .desc-vmv .card-desc {
        flex-basis: 235px;
        flex-direction: column;
        font-size: 1.05em;
        padding: 20px;
        line-height: 1.8em;
        box-shadow: 0 0 15px rgba(0, 255, 255, .08);
    }

    .desc-vmv .card-desc h3 {
        font-weight: 600;
    }

    .desc-vmv .card-desc .icon {
        gap: 10px;
    }

    #services h1 {
        font-size: 1.7em;
        margin-bottom: 10px;
    }

    #services .service-cards .card-desc {
        width: 300px;
        min-height: 200px;
        justify-content: space-between;
        transition: transform .4s ease-in-out;
    }

    .service-cards .card-desc:hover {
        transform: scale(1.04);
    }

    #services .service-cards {
        max-width: 1100px;
        display: flex;
        align-items: center;
        margin: auto;
        flex-flow: row wrap;
        gap: 50px;
    }

    #services .service-cards .card-desc {
        width: 330px;
    }

    .card-desc h3 {
        font-weight: 400;
    }

    .card-desc .desc {
        width: 100%;
        justify-content: space-around;
        font-size: 1em;
    }

    .service-cards .card-desc h3 {
        font-size: 1.3em;
    }

    .service-cards .card-desc .desc-service {
        font-size: 1.1em;
    }

    .card-desc .btn.menos::after {
        content: 'Menos informações';
        font-size: 1.1em;
    }

    .card-desc .btn::after {
        content: 'Mais informações';
        font-size: 1.1em;
    }

    #projects h1 {
        font-size: 1.7em;
    }

    #projects h3 {
        font-size: 1.6em;
    }

    .desc-project h4 {
        padding: 5px 0;
        font-size: 1.4em;
    }

    .desc-project p {
        line-height: 1.2em;
        font-size: 1.2em;
    }



    .project-cards {
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 1110px;
        margin: auto;
        margin-bottom: 20px;
    }


    .project-cards .cards {
        display: flex;
        flex-flow: row wrap;
        gap: 30px;
        margin-top: 20px;

    }

    .project-cards .card-project {
        width: 350px;
        justify-content: space-between;
        transition: transform .8s ease-in-out;
    }

    #marketing-cards .card-project .img-project {
        height: 380px;
    }

    .card-project:hover {
        transform: scale(1.12);
    }

    .card-project .btn-project {
        font-size: 1.4em;
    }

    #contact {
        margin-top: -1px;
    }

    #contact h1 {
        margin: 12px 0;
    }

    #contact .contact-box {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-evenly;
    }

    .contact-box .form .input-box input,
    .input-box textarea {
        width: 550px;
    }

    .contact-box .input-box input[type="submit"] {
        width: 200px;
        line-height: 10px;
        transition: all .5s ease-in-out;
        background-color: #021147 !important;
        box-shadow: 0 0 10px rgba(0, 255, 255, .9);

    }

    .contact-box .input-box input[type="submit"]:hover {
        background-color: #021147;
        transform: scale(1.04);
    }

    .contact-box .contacto {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .contacto .icon {
        box-shadow: 0 0 8px rgba(0, 255, 255, .9);
        transition: all .1s ease-in-out;
    }

    .contacto .icon:hover {
        transform: translateY(-5px);
    }

    .contacto span {
        font-size: 1.4em;
    }

    .footer p {
        font-size: 1.5em;
    }

    #projects button,
    #services button {
        transition: all .5s ease-in-out;
    }

    #projects button:hover,
    #services button:hover {
        transform: scale(1.03);
    }
}