@import url(var.css);
@import url(responsive.css);

/* body e header */

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background-color: black;
}

::-webkit-scrollbar-thumb {
    background-color: var(--cor-linha);
    border-radius: 10px;
}

body {
    height: 100%;
    max-width: 100%;
    color: var(--cor-texto);
    background-image:linear-gradient(var(--cor-fundo), var(--cor-fundo2));
    transition: 0.7s;
}

p {
    font-family: 'Inconsolata', monospace;
    font-size: 17px;
}

.home {
    max-height: 7%;
    position: fixed;
    z-index: 1;
}

.home__item {
    display: flex;
    padding-top: 30px;
    justify-content: center;
    font-size: 20px;
    gap: 20px;
    text-transform: uppercase;
}

.home__a {
    font-size: 18px;
    color: #e1e1e1;
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    text-transform: uppercase;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
    text-decoration: none;
}

.home__a:focus,
.home__a:hover {
    color: #fff;
}

.home__a:focus:after,
.home__a:hover:after {
    width: 100%;
    left: 0%;
    background-color: var(--cor-linha);
}

.home__a:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--cor-linha);
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
}

.switch {
    display: none;
}

.checkbox-label {
    position: relative;
}

.toggle-image {
    position: absolute;
    cursor: pointer;
    width: 24px;
    height: 24px;
    filter: var(--filtro-imagem);
}

.dark-mode .toggle-image {
    visibility: hidden;
}



.sun {
    position: absolute;
    width: 24px;
    height: 24px;
    filter: var(--filtro-imagem);
    visibility: hidden;
    cursor: pointer;

}

.dark-mode .sun {
    visibility: visible;
}

header {
    width: 100%;
    position: fixed;
    background-color: black;
    padding-bottom: 20px;
    top: 0%;

}

/* section */

.secao1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: unset;
}

.apresentacao {
    text-align: center;
    box-sizing: border-box;

}

.apresentacao__nome {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
}

.apresentacao__title {
    font-size: 36px;
    padding-bottom: 25px;
}

.imagens {
    display: inline-block;
    padding-right: 10px;
    
}

.imagem {
    filter: var(--filtro-imagem);
    box-sizing: border-box;
}

.imagem:hover {
    transition: 0.2s;
    filter: var(--filtro-imagem-hover);
}

.secao__about {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 100px;
}

.Sobre__apresentacao {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    width: 250px;
    background:
    radial-gradient(rgba(0,0,0,0.15) 60%, transparent 0),
    radial-gradient(#000 68%, transparent 0),
    linear-gradient(to top right, var(--cor-gradiente1) 0%, var(--cor-gradiente2) 100%)
    ;
    border-radius: 50%;

}

.Sobre__apresentacao img {
    border-radius: 50%;
    width: 100%;
}

.Sobre__tecnologias {
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
    padding-top: 30px;
    gap: 20px;
    align-items: center;
    font-family: inherit;

}

.Sobre__imagem {
    display: flex;
    gap: 20px;
    size: 20%;
    
}

.Sobre__conteudo {
    width: 70%;
    font-family: 'Roboto', sans-serif;
    padding-top: 2rem;
    
}

.clique__aqui {

color: var(--cor-clique-aqui);
}

.secao__projects {
    text-align: center;
    text-transform: uppercase;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    box-sizing: border-box;
    padding-top: 5rem;
    
}

.secao__projects__titulo {
    color: var(--cor-texto);
    align-items: center;
    font-family: 'Inconsolata', monospace;
}

.project {
    width: 200px;
    height: 200px;
    margin: 10px;
    border: 1px solid var(--cor-texto);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Inconsolata', monospace;
}

.project__compras {
        width: 200px;
        height: 200px;
        margin: 10px;
        border: 1px solid var(--cor-texto);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: bold;
     

}




.coming-soon {
    position: relative;
}

.coming-soon::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: var(--cor-linha);
    top: 0;
    left: -15px;
}


.project__compras {
  width: 200px;
  height: 200px;
  z-index: 0;
}

.title {
  margin: 0;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.project__compras:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  box-shadow: 0 8px 14px 0 rgba(0,0,0,0.2);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid rgb(255, 255, 255);
  background-image: url(Project_compras.jpeg);
}

.flip-card-back {
    background-image: linear-gradient(white, white);
    transform: rotateY(180deg);
    color: black;

}

.flip-card-back img {
    position: absolute;
    padding-left: 80px;
    padding-top: 80px;
    height: 24px;
    width: 24px;
}
