@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

:root {
  --primary-color: #a855f7;
  --primary-color-dark: #9333ea;
  --secondary-color: #ca8a04;
  --tercery-color: #fe8330;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --extra-light: #f5f5f5;
  --max-width: 1200px;
  --background: #bdbdbdc7;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: var(--primary-color-dark);
}

body {
  font-family: "Poppins", sans-serif;
}

nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 99;
}

.nav__content {
  max-width: var(--max-width);
  margin: auto;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
}
nav .logo a:hover {
  color: var(--primary-color-dark);
}

nav .checkbox {
  display: none;
}

nav input {
  display: none;
}
nav .checkbox i {
  font-size: 2rem;
  color: var(--primary-color);
  cursor: pointer;
}

ul#menu, #album-fotos {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  transition: left 0.3s;
}

ul#menu li a {
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 600;
  color: var(--text-dark);
  transition: 0.3s;
}

ul#menu li a:hover {
  border-top-color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
  color: var(--secondary-color);
}


#section1, #section2, #section3, #section4, #section5 {
  background-color: var(--extra-light);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 10px;
}

.section__container {
  min-height: 100vh;
  max-width: var(--max-width);
  margin: auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}



.section__containe {
  min-height: 100vh;
  max-width: var(--max-width);
  margin: auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4rem;
}


.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.subtitle {
  letter-spacing: 2px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}


.title span {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.title {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 3rem;
  color: var(--tercery-color);
  margin-bottom: 1rem;
}

.titlea {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}



.description {
  line-height: 1.5rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.action__btns {
  display: flex;
  gap: 1rem;
}

.action__btns button {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 1rem 2rem;
  outline: none;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.hire__me {
  background-color: var(--primary-color);
  color: #ffffff;
  
}

.hire__me:hover {
  background-color: var(--primary-color-dark);
}


.portfolio {
  color: var(--primary-color);
}

.portfolio:hover {
  background-color: var(--primary-color-dark);
  color: #ffffff;
}

a#inicio {
  text-decoration: none;
  color: var(--secondary-color);
}

a#ini {
  text-decoration: none;
  color: var(--text-dark);
}

.image {
  display: grid;
  place-items: center;
}

.image img {
  width: min(20.5rem, 90%);
  border-radius: 100%;
}

@media (max-width: 750px) {
  nav .checkbox {
    display: block;
  }

  ul {
    position: absolute;
    width: 100%;
    height: calc(100vh - 85px);
    left: -100%;
    top: 85px;
    background-color: var(--extra-light);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
  }

  nav #check:checked ~ ul {
    left: 0;
  }

  ul li a {
    font-size: 1.25rem;
  }

  .section__container {
    padding: 10rem 1rem 5rem 1rem;
    text-align: center;
    grid-template-columns: repeat(1, 1fr);
  }

  .image {
    grid-area: 1/1/2/2;
  }

  .action__btns {
    margin: auto;
  }

  
}

.tec {
  text-align: center; 
}

.tec img {
  width: 100px;  
  height: 100px; 
}

/*Edição das fotos dos projetos*/
.album-foto {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.album-foto .albumf img {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}


a#pho {
  margin-top: 10px; /* Espaçamento entre a imagem e o texto */
  text-align: center; /* Centraliza o texto */
  font-size: 16px;
  text-decoration: none;
  color: var(--primary-color-dark);
 
}


 a#pho:hover {
  color: var(--secondary-color);
}