@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;1,200;1,500&display=swap");

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

html {
  font-size: 10px;
  font-family: "Poppins", "Times New Roman", Times, serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

p {
  font-size: 1.4rem;
  margin-top: 5px;
  line-height: 2.5rem;
  font-weight: 200;
  letter-spacing: 0.05rem;
}

.back-to-top {
  cursor: pointer;

  position: fixed;
  right: .7rem;
  bottom: .7rem;

  line-height: 0;

  visibility: hidden;
  opacity: 0;

  transition: 0.3s;
  transform: translateY(100%);

  z-index: 10;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 16px;

  padding-block: 22px;
  padding-inline: 16px; 
  background-color: #820909; 
  border: 2px solid #FFFFFF;
  border-radius: 50px;
}

.back-to-top.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
 
/**
* Especiais
*
*/

.container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title {
  font-size: 4rem;
  font-weight: 500;
  color: black;
  margin-bottom: 10px;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  text-align: center;
}

/**
* presentation
*
*/

#presentation { 
  background-image: url(./assets/multI-go-ap-goiania.png);
  background-size: cover;
  background-position: center center; 
  position: relative;
  z-index: 1;
  opacity: 0.75;
} 

#presentation h1 {
  display: block;
  width: fit-content;
  font-size: 5rem;
  position: relative;
  color: transparent;
  animation: text_reveal 0.5s ease forwards;
  animation-delay: 1.5s;
}

#presentation h1:nth-child(1) {
  animation-delay: 0.8s;
}

#presentation h1:nth-child(2) {
  animation-delay: 1.8s;
}

#presentation h1:nth-child(3) {
  animation: text_reveal_name 0.5s ease forwards;
  animation-delay: 2.8s;
}

#presentation .cta {
  display: inline-block;
  padding: 10px 30px;
  color: gold;
  background-color: transparent;
  border: 2px solid gold;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-top: 20px;
  transition: 0.5s ease;
  transition-property: background-color, color;
}

#presentation .cta:hover {
  color: white;
  font-weight: 500;
  background-color: gold;
}

#presentation h1 span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  animation: text_reveal_box 1s ease;
  animation-delay: 0.5s;
  background-color: gold;
}

#presentation h1:nth-child(1) span {
  animation-delay: 0.5s;
}

#presentation h1:nth-child(2) span {
  animation-delay: 1.5s;
}

#presentation h1:nth-child(3) span {
  animation-delay: 2.5s;
}

#presentation::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: -1;
}

/**
* description
*
*/

#description {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  max-width: 100%;
  width: 100%;
  padding: 32px;
  margin: 0px auto;
  background-color: #ddd9d8;
  font-family: "Space Mono", monospace;
  border: 1px solid #eee;
  box-shadow: 10px 12px 24px rgba(0, 0, 0, 0.06);
}

#description .description {
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}

#description .description h1 {
  padding: 12px;
}

#description .description h2 {
  padding-bottom: 22px;
  font-size: 18px;
}

#description ol {
  padding-left: 50px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  letter-spacing: -0.25px;
}

#description li {
  color: #4f4f4f;
  padding-left: 16px;
  margin-top: 24px;
  position: relative;
  font-size: 16px;
  line-height: 20px;
}

#description li:hover {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
}

#description li:before {
  content: "";
  display: block;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  border: 2px solid #ddd;
  position: absolute;
  top: -12px;
  left: -46px;
}

#description strong {
  color: #292929;
}

#description ol.alternating-colors li:nth-child(odd):before {
  border-color: #0bad02;
}
#description ol.alternating-colors li:nth-child(even):before {
  border-color: #2378d5;
}

/**
* portfolio
*
*/

#portfolio { 
  padding: 60px 0;
} 

#portfolio .portfolio {
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
} 

#portfolio .portfolio h2{
  text-align: center;
} 

#portfolio .all-projects {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#portfolio .all-projects .portfolio-title {
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 220px 14px 62px 14px;
}
 
#portfolio .project-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
}

#portfolio .project-item .project-info {
  padding: 30px;
  flex-basis: 50%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background-image: linear-gradient(60deg, #a72327 0%, #610609e9 100%);
  color: white;
}


#portfolio .project-item .project-info h1 {
  font-size: 3.2rem;
  font-weight: 500;
}

#portfolio .project-item .project-info h2 {
  font-size: 1.8rem;
  font-weight: 500; 
}

#portfolio .project-img {
  flex-basis: 50%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

#portfolio .project-img:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
  opacity: 0.7;
}

#portfolio .project-item .project-img img {
  transition: 0.5s ease transform;
}

#portfolio .project-item:hover .project-img img {
  transform: scale(1.1);
}

footer {
  text-align: center;
  padding: 120px 12px;
  background-color: rgba(6, 0, 0, 0.151);
  color: #610609e9;
  font-weight: bold;
}

footer p{ 
  color: #610609e9;
}

footer .footer-logo-abc { 
  padding-bottom: 30px;
  width: 110px;
}

footer p .footer-titulo-1{ 
  font-size: 16px;
}

footer p .footer-titulo-2{ 
  font-size: 14px;
}

footer p a { 
  color: #520407e9;  
  text-decoration: none;
  font-weight: bold;
}

footer p .footer-site{ 
  font-size: 14px;
}

footer .footer-futebol-abc { 
  padding-top: 60px;
  width: 140px;
}

@keyframes text_reveal {
  100% {
    color: white;
  }
}

@keyframes text_reveal_name {
  100% {
    color: gold;
    font-weight: 500px;
  }
}

@keyframes text_reveal_box {
  50% {
    width: 100%;
    left: 0;
  }

  100% {
    width: 0;
    left: 100%;
  }
}

@media only screen and (min-width: 768px) {
  #portfolio .all-projects .project-item {
    flex-direction: row;
    height: 400px;
    margin: 0;
    width: 100%;
    border-radius: 0;
  }

  #portfolio .all-projects .project-item .project-info {
    height: 100%;
  }

  #portfolio .all-projects .project-item .project-img {
    height: 100%;
  }

  #portfolio .all-projects .project-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
