/* configurações gerais */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
}

:root{
    --roxo: linear-gradient(135deg, #566EF1, #642BDA);
}

.container{
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
}

h2{
    font-size: 48px;
}
/* header */
header{
    padding: 20px 2%;
    position: fixed;
    width: 100%;
    background-color: white;
    z-index: 999;
}

header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    width: 150px;
}

header nav ul{
    list-style-type: none;
}

header nav ul li{
    display: inline-block;
}

header nav ul li a{
    text-decoration: none;
    display: inline-block;
    margin: 0 15px;
    color: black;
    transition: 0.4s;
}

header nav ul li a:hover{
    color: #642BDA;
}

header nav .btn-contato{
    background: var(--roxo);
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
}


header nav .btn-contato:hover{
    color: white;
    transform: scale(1.1);
}

.menu-mobile{
    display: none;
}


/* section banner */
.banner{
    padding: 130px 2%;
    background: var(--roxo);
  
    text-align: center;
}

.banner .container{
    max-width: 900px;
}

.banner h1{
    color: white;
    font-size: 72px;
    line-height: 72px;
}

.banner p{
    font-size: 24px;
    line-height: 32px;
    margin-top: 20px;
    color: #FFFFFFE6;
}

.banner .wraper-btns{
    margin-top: 40px;
}

.banner .wraper-btns a{
    background-color: rgba(124, 112, 234, 0.631);
    border: 1px solid #dddddd67;
    border-radius: 8px;
    padding: 10px 30px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    transition: 0.4s;
    margin: 0 6px;
}

.banner .wraper-btns a:hover{
    background-color: #9e96dfa1;
}

.banner .wraper-btns i{
    margin-left: 10px;
    font-size: 15px;
}

.banner .wraper-cards{
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 130px;
    gap: 10px;
}

.banner .wraper-cards .card{
    padding: 20px;
    background-color: #7c70eaa1;
    border: 1px solid #dddddd67;
    max-width: 270px;
    width: 100%;  
    border-radius: 10px;
    transition: 0.4s;
}

.banner .wraper-cards .card:hover{
    background-color: #9e96dfa1;
}

.banner .wraper-cards .card i{
    background-color: #8e83ecfb;
    padding: 12px;
    color: white;
    border-radius: 8px;
    font-size: 20px;
    margin-bottom: 15px;
}

.banner .wraper-cards .card h3{
    font-size: 20px;
    color: white;
}

.banner .wraper-cards .card p{
    font-size: 16px;
    color: #FFFFFFCC;
    line-height: 24px;
}

/* serviços */
.servicos{
    padding: 50px 2%;
    background-color: #F3F3F7;
}

.servicos h2{
    text-align: center;
}

.servicos .container > p{
    font-size: 20px;
    line-height: 28px;
    color: #6B7280;
    text-align: center;
    margin-top: 10px;
}

.servicos .wraper-cards{
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.servicos .card{
    background-color: white;
    max-width: 454px;
    width: 100%;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #dddddd67;
    transition: 0.4s;
}

.servicos .card:hover{
    transform: scale(1.04);
}

.servicos .card .fa-globe, 
.servicos .card .fa-palette,
.servicos .card .fa-bolt{
    background: var(--roxo);
    padding: 12px;
    color: white;
    border-radius: 8px;
    font-size: 20px;
    margin-bottom: 20px;
    border: 1px solid #dddddd67;
}


.servicos .card h3{
    font-size: 20px;
    color: #020817;
    margin-bottom: 10px;
}

.servicos .card p{
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 20px;
}

.servicos .card ul{
    list-style-position: inside;
    margin-bottom: 20px;
}

.servicos .card ul li::marker{
    color: var(--roxo);
}

.servicos .card ul li{
    font-size: 14px;
    color: #6B7280;
    margin: 10px 0;
}

.servicos .card a{
    width: 100%;
    display: block;
    border: 1px solid #dddddd9f;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    color: black;
    text-decoration: none;
    font-size: 14px;
    transition: 0.4s;
}

.servicos .card a:hover{
    background: var(--roxo);
    color: white;
}

.chamada{
    margin: 100px 0;
    width: 100%;
    padding: 50px 2%;
    background: var(--roxo);
    color: white;
    border-radius: 10px;
    text-align: center;
}

.chamada h4{
    font-size: 30px;
}

.chamada p{
    font-size: 20px;
    color: #FFFFFFE6;
    margin: 20px 0;
}

.chamada a{
    display: inline-block;
    background-color: #7c70eaa1;
    border: 1px solid #dddddd67;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    padding: 10px 30px;
    margin-top: 20px;
    transition: 0.4s;
}

.chamada a:hover{
    background-color: #9e96dfa1;
}

/* sobre */
.sobre{
    padding: 100px 2%;
}

.sobre article{
    max-width: 900px;
    margin:  0 auto;
    text-align: justify;
    box-shadow: 0px 0px 30px #cccccca4;
    padding: 30px;
    border-radius: 10px;
}

.sobre h2{
    text-align: center;
    margin-bottom: 20px;
}

.sobre h3{
    font-size: 30px;
    margin: 20px 0;
}

.sobre p{
    font-size: 18px;
    color: #6B7280;
    line-height: 29px;
}

.sobre ul{
    list-style: none;
    list-style-position: inside;
    margin-top: 20px;
}

.sobre ul li{
    margin: 20px 0;
}

.sobre ul li::before{
     content: ""; /* código unicode do ícone (ex: check) */
      font-family: "Font Awesome 6 Free"; /* família do Font Awesome */
      font-weight: 900; /* necessário para alguns ícones sólidos */
      position: absolute;
      left: 0;
      top: 0;
      color: green; /* cor do ícone */
}

.sobre ul li i{
    margin-right: 10px;
    color: #6136DD;
}


/* portfolio */
.portfolio{
    padding: 100px 2%;
    background-color: #F3F3F7;
}

.portfolio h2{
    text-align: center;
    margin-bottom: 20px;
}

.portfolio .container > p{
    max-width: 800px;
    text-align: center;
    font-size: 20px;
    color: #6B7280;
    line-height: 28px;
    margin: 0 auto 50px auto;
}

.portfolio .wraper-cards{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 100px;
}

.portfolio .card{
    width: 100%;
    max-width: 432px;
    transition: 0.4s;
}

.portfolio .card:hover{
    transform: scale(1.04);
}

.portfolio .card .capa{
    width: 100%;
    height: 192px;
    background-color: #ccc;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio .card .capa .btn-portfolio{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #dddddd9c;
    border: 1px solid #ddddddcb;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    opacity: 0;
    transition: 0.4s;
    z-index: 2;
}

.portfolio .card .capa:hover .btn-portfolio{
    opacity: 1;
}

.portfolio .card .capa .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: 0.4s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.portfolio .card .capa:hover .overlay{
    opacity: 1;
}
      
.portfolio .card .descricao{
    padding: 20px;
    background-color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.portfolio .card .descricao h4{
    font-size: 20px;
    color: #020817;
    margin-bottom: 20px;
}

.portfolio .card .descricao p{
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}

.portfolio .btn-iniciar-projeto{
    display: block;
    max-width: 250px;
    width: 100%;
    background: var(--roxo);
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    padding: 10px 30px;
    transition: 0.4s;
    margin: -20px auto 0 auto;
    text-align: center;
}

.portfolio .btn-iniciar-projeto:hover{
    transform: scale(1.1);
}

/* contato */
.contato{
    padding: 100px 2%;
}

.contato h2{
    text-align: center;
    margin-bottom: 20px;
}

.contato p{
    text-align: center;
    font-size: 18px;
    color: #6B7280;
    line-height: 28px;
    margin-bottom: 50px;
}

.contato .box-contato{
    max-width: 940px;
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ddddddcb;
}

.contato .wraper1, .contato .wraper2{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contato .wraper-input{
    width: 49%;
    display: flex;
    flex-direction: column;
}

.contato .wraper-input label{
    margin-bottom: 10px;
    font-size: 16px;
    color: #020817;
}

.contato .wraper-input input{
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddddddcb;
    font-size: 16px;
}

.contato form > .wraper-input{
    width: 100%;
}

.contato .wraper-input textarea{
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddddddcb;
    font-size: 16px;
    resize: vertical;
    min-height: 150px;
}

.contato .btn-enviar{
    width: 100%;
    display: block;
    background: var(--roxo);
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    padding: 10px 30px;
    transition: 0.4s;
    margin: 30px auto 0 auto;
    text-align: center;
    border: none;
    cursor: pointer;
}

.contato .btn-enviar i{
    margin-right: 10px;
}

.contato .btn-enviar:hover{
    transform: scale(1.02);
}

.box-contato h3{
    font-size: 24px;
    margin-bottom: 20px;
}

.box-contato h3 i{
    color: #6136DD;
    margin-right: 10px;
}

.contato .box-flex{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.contato .box-info-contato{
    max-width: 422px;
    width: 100%;
}

.contato .info-contato{
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ddddddcb;
    height: fit-content;
}

.contato .info-contato p{
    text-align: left;
    font-size: 14px;
    margin-bottom: 20px;
}

.contato .info-contato .group-info{
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.contato .info-contato .group-info i{
    font-size: 20px;
    color: #6136DD;
    margin-right: 20px;
    background-color: #ECEFFD;
    padding: 10px;
    border-radius: 8px;
}

.contato .info-contato .group-info .info h4{
    font-size: 16px;
    color: #020817;
    margin-bottom: 5px;
}

.contato .info-contato .group-info .info a{
    font-size: 14px;
    color: #6B7280;
    text-decoration: none;
}

.contato .info-contato .group-info .info a:hover{
    text-decoration: underline;
}

.contato .info-contato .group-info .info q{
    font-size: 14px;
    color: #6B7280;
}

.contato .box-whatsapp{
    color: white;
    margin-top: 20px;
    padding: 30px;
    border-radius: 10px;
    background: var(--roxo);
    text-align: center;
    height: fit-content;
}

.contato .box-whatsapp i{
    font-size: 40px;
    margin-bottom: 10px;
}

.contato .box-whatsapp h4{
    font-size: 20px;
    margin-bottom: 5px;
}

.contato .box-whatsapp p{
    color: white;
    font-size: 16px;
    margin-bottom: 5px;
}

.contato .box-whatsapp .btn-whatsapp a{
    display: inline-block;
    background-color: #7c70eaa1;
    border: 1px solid #dddddd67;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    padding: 10px 30px;
    margin-top: 20px;
    transition: 0.4s;
    width: 100%;
}

.contato .box-whatsapp .btn-whatsapp a:hover{
    background-color: #9f96df;
}

/* footer */
footer{
    padding: 50px 2% 0 2%;
    border-top: #d6d6d6 1px solid;
}

footer .wraper-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .box-footer:nth-of-type(1){
    max-width: 448px;
    width: 100%;
}

footer .box-footer p{
    color: #6B7280;
    line-height: 24px;
    margin: 20px 0;
}

footer .box-footer img{
    width: 150px;
}

footer .box-footer .socials-footer{
    margin-bottom: 20px;
}

footer .box-footer .socials-footer a{
    color: rgb(82, 81, 81);
}

footer .box-footer .socials-footer a:hover{
    color: #6136DD;
}

footer .box-footer .socials-footer i{
    font-size: 20px;
    background-color: #ECEFFD;
    padding: 10px;
    border-radius: 10px;
    margin-right: 15px;
    transition: 0.4s;
    cursor: pointer;
}

footer .box-footer h3{
    font-size: 16px;
    margin-bottom: 15px;
}

footer .box-footer ul{
    list-style: none;
}

footer .box-footer .servicos-footer li{
    margin-bottom: 15px;
    color: #6B7280;
}

footer .box-footer ul li a{
    display: inline-block;
    list-style: none;
    margin-bottom: 15px;
    text-decoration: none;
    color: #6B7280;
    transition: 0.4s;
}

footer .box-footer ul li a:hover{
    color: #6136DD;
}

footer .copy{
    border-top: #d6d6d6 1px solid;
    text-align: center;
    color: #6B7280;
    font-size: 14px;
    padding: 40px 2%;
    margin-top: 30px;
}