:root {
  --main-color: #111111;
  --second-color: #00ff00;
  --third-color: #151515;
  --text-color: #f8f8f8;
  --secund-text-color: #bebebe;
}

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background-color: var(--main-color);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--second-color);
  border-radius: 13px;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  color: var(--text-color);
  font-family: "Archivo", sans-serif;
}

.layout {
  animation-iteration-count: 1 !important;
}

footer,
.layout,
nav {
  max-width: 1250px;
  margin: auto;
}

.layout {
  padding: 45px 30px;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

section {
  width: 100%;
  padding: 40px 30px;
}

body {
  background-color: var(--main-color);
  overflow-x: hidden;
}


.title {
  text-align: center;
  font-size: 2.3em;
  margin: 30px 0;
}

.title::after {
  content: ".";
  margin-left: 8px;
  color: var(--second-color);
}

/* HEADER */
header {
  position: fixed;
  left: 0;
  right: 0;
  background-color: var(--main-color);
  padding: 15px;
  z-index: 99;
}

header nav,
.nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

.nav-list li a {
  margin: 0 15px;
  font-size: 1.2em;
  color: var(--second-color);
  transition: .2s all ease-in-out;
}

.nav-list li a:hover {
  transition: .2s all ease-in;
  color: var(--secund-text-color);
}

.menuMobile {
  display: none;
}

/*       */

/*   ABOUT ME    */
#about-me {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  min-height: 95vh;
}

#about-me .layout .sides .left--Side h1 span b {
  display: inline;
  animation: 1s slidein infinite;
}


#about-me .sides {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

#about-me .left--Side h1 {
  font-size: 2.7em;
}

#about-me .left--Side span {
  color: var(--second-color);
  letter-spacing: 4px;
}

#about-me .right--Side img {
  width: 100%;
  height: 400px;
}

#about-me .bottom {
  margin-bottom: 30px;
}

#about-me .bottom svg {
  cursor: pointer;
}

#about-me .bottom svg:nth-child(1) {
  margin: 0 10px;
}

.btns {
  margin: 30px 0;
  display: flex;
}

.btns a {
  display: inline-block;
  min-width: 150px;
  background-color: var(--second-color);
  border-radius: 6px;
  padding: 20px 30px;
  font-size: 1.125em;
  color: var(--main-color);
  font-weight: 600;
  text-align: center;
  transition: .3s all ease-in;
}

.btns a:nth-child(2) {
  background-color: var(--secund-text-color);
}

.btns a:hover {
  opacity: .6;
}

/*  PROJECTS   */
#projects,
#contact {
  background-color: var(--third-color);
}

#projects .cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

#projects .cards .card {
  display: flex;
  flex-direction: column;
  background-color: var(--main-color);
  border-radius: 2px;
  max-width: 383px;
  min-height: 226px;
  max-height: 226px;
  padding: 40px 30px;
  word-wrap: break-word;
  border: 1px solid #151515;
  transition: .6s all ease-in-out;
}

#projects .cards .card:hover {
  transition: .6s all ease-in;
  border-color: #00ff00;
}

#projects .cards .card h3 {
  font-size: 1.4em;
}

#projects .cards .card a {
  padding: 10px 0;
  font-weight: 400;
  font-size: .875em;
  color: #111111;
}

#projects .cards .card a:hover {
  opacity: .8;
}

#projects .cards .card p {
  word-wrap: break-word;
  font-size: .875em;
  color: #9ca3af;
  font-weight: 400;
  line-height: 30px;
  margin: 15px 0;
}

#projects .layout #repositorios {
  display: block;
  text-align: center;
  font-size: 1.3em;
  color: var(--second-color);
  margin-top: 40px;
}

#projects .layout a:hover {
  opacity: .8;
}

/*     */
/*  Skills  */

.icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.icons .icons-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 250px;
  margin: 30px 0;
}

.icons .icons-item h3 {
  text-align: center;
  margin-top: 15px;
  text-transform: uppercase;
}

.icons .icons-item img {
  width: auto;
  height: 105px;
}

/*     */
/* CONTACT */
#contact p {
  text-align: center;
  font-size: 1.2em;
}

.plataforms {
  margin: 20px 0;
  display: flex;
  justify-content: space-around;
  max-width: 220px;
  margin: 25px auto 0;
  border-radius: 10px;
}

.plataforms svg {
  margin: 10px;
  cursor: pointer;
}

.plataforms a svg:hover {
  transition: .3s all ease;
  fill: #B5C1B5;
}

#robbu-whatsapp-button {
  background: transparent !important;
  border: none !important;
}

#robbu-whatsapp-button:not(.left)>.rwb-tooltip {
  text-align: center;
  right: 0 !important;
  color: var(--main-color) !important;
  font-weight: 600 !important;
  letter-spacing: 1.8px;
  margin-bottom: 20px;
  background-color: var(--second-color) !important;
}



footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 10px auto;
  padding: 15px;
  font-size: 1.1em;
  height: 100%;
}

footer div {
  display: flex;
  align-items: center;
  font-size: 18px;
}

footer div img {
  margin-left: 5px;
}

footer a {
  color: var(--second-color);
}

@keyframes slidein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*  */
@media screen and (max-width: 1110px) {

  #about-me .right--Side img {
    display: none;
  }

  #about-me .sides {
    justify-content: center;
    text-align: center;
    gap: 0;
  }

  .btns {
    align-items: center;
    justify-content: center;
  }

  #about-me .left--Side span {
    display: block;
    margin: 10px 0;
  }

  #projects .cards .card {
    margin-bottom: 30px;
  }
}

/*       */


@media screen and (max-width: 992px) {
  .nav-list {
    position: absolute;
    right: 1000px;
    top: 0;
    bottom: 0;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--main-color);
    transition: .3s all ease-in;
    width: 100vw;
  }

  .nav-list li {
    padding: 15px;
  }

  .menuMobile,
  #logo {
    z-index: 2;
  }

  .menuMobile {
    display: block;
    cursor: pointer;
  }

  .menuMobile span {
    background-color: var(--second-color);
    display: block;
    width: 35px;
    height: 5px;
    margin: 5px 0;
    border-radius: 3px;
    transition: .5s all ease-in;
  }

  .nav-list.active {
    right: 0;
  }

  .menuMobile.active span:first-child {
    transform: translateY(11px) rotate(135deg);
  }

  .menuMobile.active span:nth-child(2) {
    opacity: 0;
  }

  .menuMobile.active span:last-child {
    transform: translateY(-8px) rotate(45deg);
  }

  #about-me .layout .sides .left--Side h1 span b {
    animation: none;
  }

  #projects .cards {
    gap: 18px;
  }

  #projects .cards .card {
    min-width: 100%;
    margin-bottom: 0px;
  }

  footer {
    flex-direction: column;
    margin: 20px 0 10px;
  }

  footer div:nth-child(2) {
    margin-top: 10px;
  }
}

@media screen and (max-width: 600px) {
  section {
    padding: 5px;
  }

  #about-me .left--Side h1 {
    font-size: 1.8em;
  }

  .title {
    font-size: 1.6em;
  }

  #contact p {
    font-size: 1em;
  }

  .icons-item svg {
    height: 80px;
  }

  .icons-item h3 {
    font-size: 1.4em;
  }

  .card p {
    font-size: 1em;
  }

  .btns {
    justify-content: center;
    gap: 10px;
  }

  footer {
    font-size: .83em;
    text-align: center;
  }
}

@media screen and (max-width: 380px) {
  #projects .cards .card h3 {
    font-size: 1.25em;
  }

  #projects .cards .card p {
    font-size: .85em;
  }
}