:root {
    --dark-10: #171717;
    --dark-20: #333333;
    --dark-30: #828282;
    --dark-40: #F9F9F9;

    --blue: #1F7CFF;
    --dark-blue: #0c5fd4;
    --purple: #663dff;
    --gray: #575455;
    --pink: #f91486;
    --red: #F75C4E;
}

h2.title-min {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--pink);
    text-align: center;
}

h1.title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 54px;
    margin-bottom: 50px;
    color: #000000;
    text-align: center;
}

p {
    text-align: justify;
    line-height: 32px;
}

section {
    padding-top: 130px;
}

body {
    color: var(--gray);
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-40);
}

header,
main,
#about-me,
#about-studies,
#projects,
#services,
#skills,
#form {
    margin: 0 15%;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;

    position: fixed;
    top: 0;
    width: 70%;
    z-index: 99;

    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

nav ul {
    display: flex;
    gap: 25px;
    font-size: 16px;
    align-items: center;
}

nav li:hover {
    color: var(--blue);
}

nav button.theme {
    padding: 15px;
    border: 1px solid var(--dark-30);
    border-radius: 5px;
    filter: opacity(0.6);
    background: url('../img/moon-regular.svg') no-repeat center;
    background-size: 15px;
    cursor: pointer;
    background-color: transparent;
}

nav button.theme:hover {
    background-color: #ddd;
}

nav #btn-mobile {
    display: none;
}

main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 150px;
}

main .describe #text {
    font-size: 45px;
    font-weight: 700;
}

main .describe li {
    font-size: 16px;
}

main .describe p {
    font-size: 24px;
}

main .photo {
    width: 330px;
    height: 330px;
    border-radius: 0 80px;
}

main ul {
    display: flex;
    gap: 30px;
    padding: 60px 0 30px 10px;
}

main ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

main .btn-describe {
    display: flex;
    gap: 20px;
}

.custom-btn {
    width: 150px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
}

.btn-download {
    background: var(--pink);
    line-height: 42px;
    padding: 0;
    border: none;
}

.btn-download span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.btn-download:before,
.btn-download:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background: var(--pink);
    transition: all 0.3s ease;
}

.btn-download:before {
    height: 0%;
    width: 2px;
}

.btn-download:after {
    width: 0%;
    height: 2px;
}

.btn-download:hover {
    color: var(--pink);
    background: transparent;
}

.btn-download:hover:before {
    height: 100%;
}

.btn-download:hover:after {
    width: 100%;
}

.btn-download span:before,
.btn-download span:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: var(--pink);
    transition: all 0.3s ease;
}

.btn-download span:before {
    width: 2px;
    height: 0%;
}

.btn-download span:after {
    height: 2px;
    width: 0%;
}

.btn-download span:hover:before {
    height: 100%;
}

.btn-download span:hover:after {
    width: 100%;
}

.custom-btn-ct {
    width: 160px;
    height: 40px;
    border-radius: 5px;
    background-color: var(--dark-40);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
}

.btn-contact {
    background-color: var(--dark-40);
    border: 1px solid #ddd;
    z-index: 10;
}

.btn-contact:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -10;
    background-color: #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    border: transparent;
}

.btn-contact:hover:after {
    left: 0;
    width: 100%;
}

.btn-contact:active {
    top: 2px;
}

#about-me .about-describe p {
    text-align: center;
    margin: 0 10%;
}

#about-me .contacts {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: baseline;
    margin-top: 25px;
}

#about-me .contacts .contacts-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid transparent;
    align-items: center;
    width: 230px;
    margin-top: 25px;
    padding: 45px 15px;

}

#about-me .contacts .contacts-container i {
    font-size: 32px;
    color: var(--dark-40);

    background-color: #212121;
    border-radius: 50px;
    width: 62px;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#about-me .contacts .contacts-container span {
    font-size: 18px;
    font-weight: 700;
    padding-top: 20px;
}

#about-me .contacts .contacts-container p {
    font-size: 14px;
}

#about-me .contacts .contacts-container:hover {
    border: 2px solid var(--dark-30);
    border-radius: 40px;
    cursor: pointer;
}

#about-me .contacts .contacts-container:hover>i {
    background-color: var(--pink);
}

#about-studies .about-pt1,
#about-studies .about-pt2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3em;
}

#about-me p,
#about-studies p {
    line-height: 42px;
}

#about-studies span {
    font-weight: 700;
}

#about-studies .img-pt1 {
    width: 260px;
}

#about-studies .img-pt2 {
    width: 300px;
}

#about-studies .title-ct {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 54px;
    margin-top: 50px;
    color: #000000;
}

#about-studies .title-min-ct {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--pink);
    margin-bottom: 50px;
}

#about-studies .certificates-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-end;
    text-align: center;
}

#about-studies .certificate {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
}

#about-studies .certificate:hover {
    transform: scale(1.1);
    cursor: pointer;
    transition: .5s;
}

#about-studies .certificate span {
    font-size: 14px;
    font-weight: normal;
}

#about-studies .open {
    position: relative;
}

.open {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.open .title {
    /* border: 2px solid #FF725E;
    border-radius: 8px;
    cursor: pointer;
    display: block;
    padding: 24px 8em;
    text-align: center;
    margin-top: 60px; */

    /* segunda opção */
    background-color: var(--blue);
    color: var(--dark-40);
    border-radius: 40px;
    border: 2px solid transparent;
    cursor: pointer;
    display: block;
    padding: 10px 10em;
    margin-top: 60px;
    text-align: center;
}

.open .title:hover {
    background-color: var(--purple);
    border: 2px solid var(--purple);
    transition: all 0.3s ease;
    outline: none;
}

.open i {
    padding-right: 15px;
}

.open ul {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: .2s;
    text-align: justify;
    margin-top: 30px;
}

.open.ativa ul {
    height: fit-content;
    opacity: 1;
    text-align: justify;
}

.open li {
    padding-top: 20px;
    list-style: inside;
}

.open p {
    padding-left: 23px;
}

.open h4 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    color: var(--blue);
    padding-top: 40px;
}

#projects .slider {
    display: flex;
    justify-content: center;
    align-items: center;
}

#projects button.customPrevBtn,
#projects button.customNextBtn {
    padding: 10px;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 40px;
    color: var(--pink);
    cursor: pointer;
}

#projects button.customPrevBtn {
    margin-right: 15px;
}

#projects .projects-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
    height: 680px;
}

#projects .project {
    width: 400px;
    height: 580px;
    border-radius: 10px;
    border: 1px solid #ddd;
    position: relative;
}

#projects .project:hover {
    cursor: pointer;
    box-shadow: 1px 2px 3px 4px rgba(0, 0, 0, 0.2);
}

#projects .project:hover>img {
    filter: none;
}

#projects .project:hover>.btn-project i {
    /* color: var(--pink); */
    transform: scale(1.1);
}

#projects .project img {
    filter: grayscale(1);
    width: 398px;
    height: 205px;
    border-radius: 10px 10px 0 0;
}

#projects .projects-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px;
}

#projects .project .describe-project {
    margin: 25px 15px;
    font-size: 14px;
}

.project .tecno {
    font-weight: 600;
    font-size: 15px;
    margin-left: 15px;
}

#projects .project p {
    margin: 5px 15px;
    font-size: 14px;
}

#projects .project .btn-project {
    font-size: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 15px;
    margin-right: 15px;
    position: absolute;
    bottom: 5%;
    right: 1%;
}

.btn-project i:hover {
    color: var(--pink);
}

#projects .project span {
    font-weight: 600;
    padding: 0 5px;
}

[data-tooltip] {
    position: relative;
    cursor: pointer;
}

[data-tooltip]:hover {
    color: var(--blue);
}

[data-tooltip]:after {
    display: none;
    position: absolute;
    padding: 2px;
    top: calc(100% + 3px);
    right: 0;
    content: attr(data-tooltip);
    width: 120px;
    background-color: transparent;
    border: .5px solid var(--blue);
    border-radius: 15px;
    color: var(--blue);
    font-size: 14px;
    text-align: center;
}

[data-tooltip]:hover:after {
    display: block;
}

#services .services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

#services .services-container .services {
    width: 350px;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    background-color: #cfcfcf;
    border-bottom: 6px solid var(--pink);
}

#services .services-container .services p {
    color: var(--dark-40);
    font-size: 30px;
}

#services .services-container .services i {
    font-size: 30px;
    color: var(--pink);
}

#skills .skills-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 15%;
}

#skills .skills-container i {
    font-size: 60px;
    width: 120px;
    height: 120px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--purple);
    border: 1px solid var(--dark-30);
    border-radius: 20px;
    cursor: pointer;
    margin: 20px 0;
}

.rotate-vert-center:hover {
    -webkit-animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

/* Generated by Animista on 2024-2-27 19:43:31
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista */

/* animation rotate-vert-center */
@-webkit-keyframes rotate-vert-center {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

@keyframes rotate-vert-center {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

#form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
}

form {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

label {
    font-size: 20px;
}

label[for='email'] {
    margin-top: 20px;
}

input {
    padding: 15px 10px;
    outline: none;
}

textarea {
    resize: none;
    margin-top: 20px;
    padding: 10px;
    outline: none;
}

form .message {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btnSubmit {
    width: 200px;
    height: 50px;
    margin: 30px 0;
    color: var(--dark-40);
    border-radius: 5px;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
}

.submit-effect {
    background: var(--blue);
    border: none;
    z-index: 1;
}

.submit-effect:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: var(--purple);
    border-radius: 5px;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    transition: all 0.3s ease;
}

.submit-effect:hover {
    color: #fff;
}

.submit-effect:hover:after {
    left: 0;
    width: 100%;
}

.submit-effect:active {
    top: 2px;
}

form p {
    padding-top: 40px;
    font-size: 18px;
}

form .message div {
    display: flex;
    gap: 40px;
}

form .message i {
    color: var(--dark-40);
    font-size: 32px;
    border-radius: 50px;
    width: 62px;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 80px 0;
    cursor: pointer;
}

form .message i:hover {
    background-color: var(--pink);
}

form .message .linkedin {
    background-color: #0e76a8;
}

form .message .telegram {
    background-color: #229ED9;
}

form .message .wpp {
    background-color: #25D366;
}

footer {
    background-color: var(--purple);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
    padding: 8em 0 20px 0;
    font-family: "Comfortaa", sans-serif;
}

footer div {
    display: flex;
    justify-content: space-between;
    margin: 0 15%;
    color: var(--dark-40);
}

footer .thanks {
    font-size: 24px;
    letter-spacing: 1px;
}

footer .thanks i {
    padding-left: 10px;
}

/* BOTÃO VOLTAR AO TOPO */
#back-to-top {
    position: fixed;
    bottom: 25px;
    right: 35px;
    border-radius: 5px;
    padding: 15px;
    background-color: rgb(216, 216, 216);
    border: none;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    display: none; /*Aparecerá por JS quando descer a página*/
}

#back-to-top:hover {
    background-color: #1F7CFF;
    color: #fff;
    cursor: pointer;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}