body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    color: white;
}

body::-webkit-scrollbar {
    width: 10px;
}
  
body::-webkit-scrollbar-track {
    background-color: rgb(28, 0, 44);
    border-radius: 0px;
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(131, 0, 207);
    border-radius: 5px;
}

p, h1, h2, h3 {
    margin: 0;
}

h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

h1 {
    color: rgb(125, 6, 194);
    background: -webkit-linear-gradient(rgb(206, 180, 221),rgb(131, 0, 207), rgb(125, 6, 194));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 30px;
}

section {
    padding: 80px 0;
    display: flow-root;
}

a {
    text-decoration: none;
    color: white;
}

a:hover {
    transition: 0.4s;
    text-decoration: underline;
    color:rgb(131, 0, 207);
}

/* HELPERS */
.fundo-roxo {
    background: rgb(89,2,139);
    background: linear-gradient(163deg, rgb(72, 0, 113) 0%, rgb(42, 7, 83) 5%, rgb(33, 4, 62) 14%, rgba(36,5,83,1) 45%, rgb(8, 0, 31) 76%, rgb(7, 0, 29) 100%);
}

.fundo-preto {
    background-color: rgb(9, 9, 9);
    background: rgb(9, 9, 9);
    background: linear-gradient(163deg, rgb(7, 7, 7) 0%, rgb(13, 13, 13) 100%);
}

.col-50 {
    width: 50%;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.button {
    padding: 10px;
    border-radius: 30px;
    border: 2px solid rgb(131, 0, 207);
}

.text-center {
    text-align: center;
}

.section-description {
    margin-bottom: 20px;
}

/* HEADER */
.header {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .logo img {
    margin-right: 10px;
}

.header nav ul {
    display: flex;
    list-style: none;
}

.header nav ul li {
    margin: 0 20px;
}

.header nav ul .active a {
    color: rgb(131, 0, 207);
    text-decoration: underline;
}

.header .hire {
    background-color: rgb(131, 0, 207);
    padding: 15px 20px;
    font-weight: bold;
}

.header .hire:hover {
    transition: 0.4s;
    color: white;
    border-color: white;
}

/* INICIO */
.inicio {
    display: flex;
}

.inicio .info {
    padding: 20px 0;
}

.inicio .info p {
    margin-bottom: 50px;
    font-size: 20px;
}

.inicio .info nav {
    margin-top: 20px;
}

.inicio .info nav .button {
    margin-right: 10px;
}

.inicio .info nav a {
    color: rgb(131, 0, 207);
    display: inline-flex;
}

.inicio .info nav a:hover {
    background-color: rgb(131, 0, 207);
    color: white;
    text-decoration: none;
}

.inicio .info nav .important {
    padding: 20px 50px;
}

.inicio .info nav a div {
    padding: 15px;
}

.inicio .imagem {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inicio .imagem img {
    width: 50%;
    border-radius: 30px;
    border: 3px solid rgb(85, 0, 134);
    transform: rotate(5deg);
}

.inicio .imagem img:hover {
    transition: 0.4s;
    transform: rotate(0deg);
    border: 3px solid rgb(131, 0, 207);
}

.dados {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
}

.dados .card {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dados .card .num {
    font-size: 70px;
    font-weight: bold;
    margin-right: 10px;
}
.dados .card .desc {
    font-size: 20px;
}

/* SERVIÇOS */
.services .card, .services .card .card-title {
    display: flex;
    align-items: center;
}

.services .card {
    justify-content: space-between;
    padding: 30px;
}

.services .card:hover {
    transition: 0.4s;
    background-color: rgb(131, 0, 207);
    color: white;
}

.services .card-title h2 {
    margin-left: 20px;
}

.services .card-info {
    width: 70%;
    text-align: start;
}

/* PROJETOS */
.projects .box-holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}
.projects .box-holder .box {
    width: 45%;
    border-radius: 20px;
    background-color:rgba(0, 0, 0, 0.3);
    margin-bottom: 80px;
    position: relative;
}

.projects .box-holder .box .description-box {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 0;
    text-align: start;
}

.projects .box-holder .box:hover .description-box {
    opacity: 1;
    visibility: visible;
    transition: 0.4s;
}

.projects .box-holder .box .description-box div {
    background-color: rgb(131, 0, 207);
    border-radius: 20px;
    margin: 0 20px 30px 20px;
    padding: 20px;
}

/* ESTUDOS */
.education {
    display: flex;
}

.education .section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.education .section .title {
    text-align: center;
}

.education .section .card {
    padding: 20px;
    background-color: rgb(23, 0, 36);
    border-radius: 25px;
    width: 80%;
    margin-bottom: 20px;
}

.education .section .card:hover {
    transition: 0.4s;
    background-color: rgb(131, 0, 207);
}

/* SKILLS */
.skills {
    text-align: center;
}

.skills .box-holder {
    display: flex;
    justify-content: space-around;
    color:rgb(131, 0, 207);
    font-size: 18px;
}

.skills .box-holder .box .content {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color:rgb(23, 0, 36);
    padding: 40px 40px 30px 40px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    filter: grayscale(90%);
    border: 2px solid rgb(23, 0, 36);
}

.skills .box-holder .box .content:hover {
    transition: 0.3s;
    filter: none;
    border: 2px solid rgb(131, 0, 207);
}

.skills .box-holder .box .content:hover .icon {
    transform: scale(1.2);
    transition: 0.4s;
}

.skills .box-holder .box .content .icon {
    background-color: aquamarine;
    width: 70px;
    height: 70px;
}

.skills .box-holder .box .content p {
    font-size: 20px;
    margin-top: 15px;
}

/* CLIENTES */
.clients {
    display: flex;
}

.clients .card-holder {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
}

.clients .card-holder .card {
    width: 250px;
    background-color:rgb(23, 0, 36);
    padding: 30px;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 30px;
    border-radius: 20px;
}

.clients .card-holder .card p, .clients .card-holder .card h3 {
    white-space: wrap;
}

.clients .card-holder .card .card-text {
    margin-bottom: 20px;
}

.clients .card-holder .card .images {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 50px;
}

.clients .card-holder .card .images .portrait {
    border-radius: 5% 5% 5% 100%;
}

.clients .card-holder::-webkit-scrollbar {
    height: 10px;
}
  
.clients .card-holder::-webkit-scrollbar-track {
    background-color: rgb(28, 0, 44);
    border-radius: 0px;
}

.clients .card-holder::-webkit-scrollbar-thumb {
    background-color: rgb(131, 0, 207);
    border-radius: 5px;
}

/* RECENTES */
.recents {
    text-align: center;
}

.recents .box-holder {
    display: flex;
    justify-content: space-between;
}

.recents .box-holder .box {
    width: 30%;
    border-radius: 25px;
    position: relative;
}

.recents .box-holder .box .description-box {
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: start;
}

.recents .box-holder .box .description-box div {
    background-color: rgb(131, 0, 207);
    border-radius: 20px;
    margin: 0 20px 30px 20px;
    padding: 20px;
}

.recents .box-holder .box .description-box div p {
    margin-bottom: 5px;
    opacity: 0.8;
    font-size: 15px;
}

.recents .box-holder .box img {
    width: 100%;
    border-radius: 25px;
}

.recents .box-holder .box .description {

}

/* CONTATO */
.contact {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact form {
    width: 85%;
    padding: 30px;
    background-color:rgb(23, 0, 36);
    border-radius: 30px;
}

.contact form h1 {
    font-size: 45px;
}

.contact form p {
    margin-bottom: 20px;
}

.contact form .row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact form .row .double {
    width: 40%;
    margin-bottom: 20px;
}

.contact form input, .contact form textarea, .contact form select {
    padding: 18px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 2px solid rgb(5, 0, 8);
    background-color: rgb(8, 8, 8);
    color: white;
}

.contact form select {
    width: 100%;
}

.contact textarea {
    resize: none;
    width: 92%;
}


.contact form button {
    background-color: rgb(131, 0, 207);
    padding: 15px 20px;
    font-weight: bold;
    color: white;
}

.contact form button:hover {
    transition: 0.4s;
    border-color: white;
}

.contact .info {
    display: flex;
    margin-bottom: 50px;
}

.contact .info .icon {
    background-color: rgb(131, 0, 207);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.contact .info .icon img {
    border-radius: 50%;
}

.contact .info .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact .info .text p {
    margin-bottom: 10px;
}

/* FOOTER */
.fundo-footer {
    background-color: rgb(9, 9, 9);
    background: rgb(9, 9, 9);
    background: linear-gradient(163deg, rgb(7, 7, 7) 0%, rgb(13, 13, 13) 100%);
}

.footer {

}

.footer .holder {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .holder .logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer .holder nav {
    width: 30%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: bold;
}