@charset "UTF-8";

:root {
    --azul: #4D7EBF;
    --verde: #17885d;
}

@font-face {
    font-family: Assistant;
    src: url(../fonts/Assistant/Assistant-VariableFont_wght.ttf);
}

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

body {
    font-family: 'Assistant';
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-size: 20px;
}

.foto {
    border: 2px solid #444;
    border-radius: 100%;
    overflow: hidden;
    width: 250px;
    height: 250px;
}

.carrosel div img {
    width: 250px;
    height: 400px;
}

.navbar {
    display: flex;
    background-color: var(--azul);
    color: white;
    padding: 20px;
    align-items: center;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle-item {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
}

.barra-navegacao {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-right: 20px;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 9px 9px;
    font-size: 20px;
}

.inika {
    font-family: Inika;
}

.conteudo-principal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.circulo {
    margin: 10vh 10vw;
    width: 300px;
    height: 300px;
    clip-path: circle();
    background-color: var(--azul);
    display: flex;
    justify-content: center;
    align-items: center;
}

.circulo div {
    color: white;
}

.titulo {
    margin: 0;
    padding: 0;
    font-size: 54px;
    font-weight: 300;
}

.subtitulo {
    margin: 0;
    padding: 0;
    font-size: 46px;
    font-weight: 300;
}

.projetos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--verde);
    color: white;
}

.carousel-container {
    width: 99vw;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5 ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

.meus-projetos {
    display: grid;
    grid-template-columns: 49vw 49vw;
}

.texto {
    margin-left: 30px;
}

.image {
    margin-right: 30px;
}

.imagem {
    width: 100%;
    height: 100%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
}

.prev-btn {
    left: 10px
}

.next-btn {
    right: 10px;
}

h3 {
    font-weight: 300;
    font-size: 36px;
}

.techs {
    background-color: var(--azul);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.linha {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.tech-container {
    background-color: white;
    color: black;
    display: flex;
    flex-direction: column;
    padding: 10px 10px;
    border-radius: 20px;
    align-items: center;
    margin: 20px;
    width: 100px;
    height: 100px;
    justify-content: center;
}

.tech-container-image {
    height: 60px;
    width: 60px;
}

.tech-container label {
    text-align: center;
}

#java {
    height: 90px;
    width: 90px;
    clip-path: path('M 10 10 L 10 90 L 90 90 L 90 10 Z');
}

#springBoot {
    height: 100px;
    width: 100px;
    clip-path: path('M 10 10 L 10 90 L 90 90 L 90 10 Z');
}

#redis {
    height: 100px;
    width: 100px;
    clip-path: path('M 10 10 L 10 90 L 90 90 L 90 10 Z');
}

.contato {
    background-color: var(--azul);
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.formulario {
    background-color: white;
}

@media screen and (max-width: 1268px) {
    .coluna-2-itens {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .image {
        margin-left: 30px;
    }
}

@media screen and (max-width: 768px) {
    nav {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .navbar-toggle {
        display: flex;
        margin-right: 5vw;
    }

    .barra-navegacao {
        flex-direction: column;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease-out;
    }

    .barra-navegacao.closed {
        max-height: 0;
    }

    .barra-navegacao.open {
        max-height: 300px;
    }
}