@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0d47a1;
    --dark-bg: #062b63;
    --line: #fafafa;
    --normal-blue: #39bae6;
}

.card{
    background-color: var(--bg);
    border: 0;
}

.img-flg {
    cursor: pointer;
    object-fit: cover;
    background-repeat: no-repeat;
    z-index: 50;
}

.botao-subir {
    cursor: pointer;
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    line-height: 65px;
    background-color: var(--line);
    border-radius: 10px;
    text-align: center;
    z-index: 50;
}
.botao-subir i {
    font-size: 40px;
    color: var(--bg);
    text-align: center;
}
.botao-subir i:hover {
    color: var(--dark-bg);
    transition: 0.3s;
}

.botao-subir:hover {
    background-color: var(--normal-blue);
    transition: 0.5s;
}

.whats-button{
    position: fixed;
    right: 1em;
    bottom: 3em;
    animation: pulse 2s infinite;
    z-index: 99;
}

.whats-button i{
    color: #fff;
    font-size: 35px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: sans-serif;
    background-color: #062b63;
    font-family: "Roboto", sans-serif;
}

body, input, button, textarea {
    font-family: "Lexend", sans-serif;
}

p {
    font-family: "Lexend", sans-serif;
    color: lightgrey;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: lightgrey;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

a{text-decoration: none;}
.games-utils-box{
    margin-top: 1em;
    align-items: center;
}
.link-gamesUtils{color: #fff;}
.link-gamesUtils:hover{color: #e7ba78;}

button {
    cursor: pointer;
}

#header {
    background: var(--bg);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 0.8rem 5rem;
    z-index: 5;
}
#header .logo {
    position: relative;
    font-weight: 600;
    color: var(--line);
    text-decoration: none;
    font-size: 1.45rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.6s;
}
#header .logo:hover {
    filter: brightness(0.7);
}
#header #mobile-menu {
    display: none;
    cursor: pointer;
}
#header #mobile-menu div {
    width: 2rem;
    height: 2px;
    background: whitesmoke;
    margin: 0.5rem;
    transition: 0.3s;
}
#header #menu-desktop {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
#header #menu-desktop li {
    position: relative;
    list-style: none;
}
#header #menu-desktop li a {
    position: relative;
    margin: 0 1rem;
    text-decoration: none;
    color: var(--line);
    letter-spacing: 1.3px;
    font-weight: 500;
    transition: 0.6s;
    transition: filter 0.5s;
}
#header #menu-desktop li a:hover {
    filter: brightness(0.7);
}

#about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5rem;
    padding-top: 13.125rem;
    padding-bottom: 6.875rem;
}
#about .left-section h1 {
    color: var(--line);
    font-weight: 500;
    letter-spacing: 2.5px;
    font-size: 3rem;
}
#about .left-section h2 {
    color: #e7ba78;
    letter-spacing: 1px;
    text-align: left;
}
#about .left-section .contact {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    text-decoration: underline;
    border-bottom: 1px solid var(--line);
}
#about .left-section .contact p {
    font-family: "Lexend", sans-serif;
    letter-spacing: 1px;
    color: lightgrey;
}
#about .left-section .icons {
    display: flex;
    justify-content: flex-start;
    margin-top: 1.5rem;
    gap: 3rem;
}
#about .left-section .icons .social-icon {
    color: white;
    border: 1px solid white;
    padding: 0.65rem 0.75rem;
    border-radius: 0.55rem;
    transition: 0.5s;
}
#about .left-section .icons .social-icon:hover {
    color: var(--bg);
    border: 1px solid var(--bg);
    background-color: white;
}
#about .left-section .icons .social-icon p {
    text-decoration: none;
}

#projects {
    padding: 3rem;
    background-color: var(--bg);
}
#projects h1 {
    text-align: center;
    color: lightgrey;
}
#projects .cards {
    display: flex;
    margin-top: 1.5rem;
    gap: 1.5rem;
}
.card-project {
    background-color: var(--dark-bg);
    border: 1px solid transparent;
    border-radius: 0.5rem;
    text-align: center;
    padding: 1em;
    transition: 0.9s;
}
.card-project:hover {
    background-color: var(--bg);
    box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.8);
}
.card-project h2 {
    margin-top: 1rem;
}
.card-project p {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: justify;
    filter: brightness(0.7);
}
.card-project a {
    text-decoration: none;
    color: var(--dark-bg);
    transition: filter 0.6s;
    padding: 8px;
    border-radius: 4px;
}
.techs-project{
    color: #e7ba78;
    font-size: 17px;
}
.link-project{
    background-color: #cea569;
}
.card-project a:hover {
    filter: brightness(0.8);
}
.card-project img {
    max-width: 100%;
    width: 600;
    height: 280;
    border-bottom: 1px solid gray;
    padding-bottom: 0.75rem;
}
#projects .more-projects {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4rem;
    text-align: center;
}
#projects .more-projects a {
    padding: 0.5rem 2rem;
    border-radius: 2rem;
    border: 1px solid var(--bg);
    text-decoration: none;
    background: var(--dark-bg);
    color: var(--normal-blue);
    transition: 0.8s;
}
#projects .more-projects a:hover {
    background: var(--bg);
    border: 1px solid var(--dark-bg);
}

/* Formation section */
#academicEducation {
    padding: 0 5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: var(--dark-bg);
}
#academicEducation div h1 {
    text-align: center;
}
#academicEducation .icones-academicEducation i {
    color: whitesmoke;
    font-size: 4rem;
    margin-left: 1.5rem;
}
#academicEducation .academicEducation-single h2 {
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.2rem;
}
#academicEducation .academicEducation-single .subtitle,
#academicEducation .academicEducation-single .subtitle-year {
    font-weight: 500;
    color: #e7ba78;
}

/* Skills section */
#skills {
    padding: 1rem 5rem;
    background-color: var(--bg);
}
#skills h1 {
    text-align: center;
}
#skills h2 {
    text-align: center;
    padding-top: 3.4375rem;
}

#skills .skills div {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    height: 10rem;
    width: 10rem;
    padding: 5rem;
    border-radius: 1.33rem;
    transition: 0.9s;
}
#skills .skills div:hover {
    background: var(--bg);
    border: 1px solid var(--dark-bg);
    box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.8);
}
#skills .skills div a {
    text-decoration: none;
}
#skills .skills div i {
    color: #e7ba78;
    padding-bottom: 1rem;
}
#skills .skills div p {
    filter: brightness(0.8);
    transition: filter 0.8;
}
#skills .skills div p:hover {
    filter: brightness(1);
}
#skills .skills div p,
#skills .skills div i {
    font-size: 1.65rem;
    padding-right: 0.5rem;
}
.skills-single{margin-top: .5em;}
/* Experience section */
.experience-course {
    padding: 1rem;
}
.experience-course h1 {
    text-align: center;
}
.experience-course p {
    padding-top: 1rem;
    display: inline-block;
    border-top: 1px solid whitesmoke;
}
.experience-course .info {
    padding-top: 2rem;
}

.experience-course .info span{
    color: #e7ba78;
    font-size: 14px;
}
.experience-course .info-link {
    display: flex;
    justify-content: space-between;
}
.experience-course .info-link a {
    padding-top: 1.6rem;
    text-decoration: none;
    color: #e7ba78;
    transition: filter 0.8s;
}
.experience-course .info-link a:hover {
    text-decoration: underline;
    filter: brightness(0.8);
}
.experience-course .date time {
    color: whitesmoke;
}
.experience-course .date h2 {
    text-align: left;
}
#certificates{
    background-color: var(--bg);
}
footer {
    background: var(--dark-bg);
    padding: 2.66rem 0;
    text-align: center;
}
footer h2 a {
    text-decoration: none;
    color: whitesmoke;
    padding-bottom: 0.5rem;
    transition: 0.7s;
}
footer h2 a:hover {
    border-bottom: 2px solid whitesmoke;
}
footer p {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
}
footer .social-icon {
    color: white;
    border: 1px solid white;
    padding: 0.65rem 0.75rem;
    border-radius: 0.55rem;
    margin: 0 1rem;
    transition: 0.5s;
}
footer .social-icon:hover {
    color: var(--bg);
    border: 1px solid var(--bg);
    background-color: white;
}

@keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }

/* RESPONSIVO */
@media (max-width: 1172px) {
    body { overflow-x: hidden; }
    #menu-desktop{display: none;}
    header nav {
        position: absolute;
        right: 0;
        top: 0;
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
        height: 100vh;
    }
    header ul {
        color: #fff;
        flex-direction: column;
        position: relative;
        top: 50px;
    }
    header ul li {
        margin: 25px;
        /* opacity: 0; */
    }
    header #mobile-menu {
        display: block !important;
        cursor: pointer;
        position: relative;
        z-index: 20;
        right: -15px;
    }
}

@media (max-width: 992px) {
    #about .left-section .name h2 {
        text-align: center;
    }

    #about .left-section {
        text-align: center;
    }
    #about .left-section .icons {
        justify-content: center;
    }
    #about .right-section {
        display: none;
    }

    #skills .skills {
        justify-content: space-around;
        flex-direction: row;
    }

    #skills .skills div {
        margin: 1rem;
        padding: 2.5rem;
    }
    #skills .skills-studying {
        flex-direction: column;
        gap: 1rem;
    }

    /* Experience section */
    .experience-course .info span{
        text-align: center;
    }
    .experience-course .info {
        padding-top: 7rem;
    }
    .experience-course .date {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    .experience-course .date h2{text-align: center;}
    .experience-course .info span{text-align: center;}
    .experience-course .info-link {
        margin-top: 2rem;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    /* Courses section */
    #certificates .cards {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 820px){
    .icones-academicEducation{display: none;}
    .info, .experience-course .info .date h2{text-align: center;}
    .box-games-utils{
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .cards-skills{
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

@media screen and (max-width: 500px){
    #header #mobile-menu{
        right: 35px;
    }
}
/*# sourceMappingURL=portfolio.css.map */
