@import url('https://googleapis.com');

.toggle-input {
  display: none;
}

.settings {
  background-color: white;
}

.toggle-input:checked ~ .settings {
  background-color: rgb(31, 31, 31);
  color: white;
  border-color: white;
}

.toggle-input:checked ~.settings a{
  color: white;
}

.toggle-input:checked ~.settings hr{
  border-color: white;
}

.toggle-input:checked ~.infoBox{
  border-color: white;
}

body {
  margin: 0px;
  font-family: 'Stack Sans Text', sans-serif;
}

hr{
    width: 100%;
    border: 0;
    border-top: black solid 3px;
}


.settings{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding-top: 20px;
    width: 100%;
}


.settings img{
    height: 40px;
    width: auto;
}

.settings a{
    font-size: 20px;
    text-decoration: none;
    color: black;
}

.info{
    width: 100%;
}

.experienceDetails ul{
    padding: 20px;
}

.experienceDetails{
    text-align: left;
    margin: 10px auto;
    padding: 10px 20px 0px 20px;
    max-width: 500px;
}

.reviewBox{
    margin: 20px;
    border: solid;
    border-radius: 50px;
    height: auto;
    max-width: 500px;
}

.reviewBox p{
    padding: 20px 50px 0px 50px;
}

#author{
    color: gray;
}

#subtitle{
    color: gray;
    margin-top: -20px;
}

#title{
    color: blue;
}

#titleReview{
    color: blue;
}

#final{
    margin-bottom: -20px;
}

#finalProject{
    margin: 50px;
}

.projects2 a {
  display: flex;
  justify-content: center;
  padding: 10px;
  margin-bottom: 50px;         
}

.projects2 a img {
  max-width: 65%;
  height: auto;
  border: 5px solid black;
}

#articleSpace{
    margin-top: 1000px;
}

#contactSpace{
  min-height: 200px;
}

.contactWays {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  margin-top: 140px;
  width: 100%; /* Garante que a linha ocupe a largura total para o flex funcionar */
  max-width: 1200px; /* Evita que os ícones fiquem longe demais em telas ultra-wide */
  margin-left: auto;
  margin-right: auto;
}

.contactWays a {
  flex: 1; /* Cada link ocupa exatamente 1/3 do espaço horizontal */
  display: flex; 
  justify-content: center; 
  align-items: center;
  padding: 20px;
}

/* Usamos um seletor mais forte para vencer os 40px da regra geral */
.settings .contactWays a img {
  height: 75px; 
  width: auto; 
}


/*desktop version*/

@media (min-width: 1024px) {
    .toggle-input:checked ~ .settings .infoBox {
      border-right-color: white;
    }

    hr{
        margin: 0;
    }

    #desktopRemove{
        border: 0px none;
        display: none;
    }

    #title{
        display: block;
        text-align: left;
        padding: 10px 40px;
    }

   .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;           
    
    width: 95%;
    margin: 0 auto;                
    padding: 40px 20px 0px 20px;
  }

  .headerLogo {
    display: flex;
    flex-direction: row; 
    align-items: center;          
    gap: 15px;                     
  }

  .headerLogo h3 {
    margin: 0;
  }

  .intro{
    padding: 60px;
    font-size: 200%;
  }

  .info{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    margin: 0 auto;
    width: 100%;

  }
  
  .infoBox{
    border-right: solid black 3px;
    flex: 1;
    min-height: 500px;
  }

  #projects a{
    display: block;
    text-align: left;
    padding: 20px 40px;
  }

  #projects hr{
    width:100%;
    padding: 0;
  }

  .experienceDetails{
    display: block;
    text-align: left;
    padding: 20px 40px;
    margin: 0;
  }

  .reviews{
    width: 100%;
  }

  .reviewBox{
    margin: 50px auto;
  }

  #titleReview{
    display: flex;
    text-align: center;
    justify-content: center;
    color: blue;
    padding-bottom: 30px;
  }

  #final{
    padding-top: 60px;
  }
}