
/* SOBRE */
#sobre{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding-top: 80px;
    gap: 100px;
}
#sobre .card {
    border: 1px solid #ff6600;
    padding: 20px;
    border-radius: 8px;
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: auto;
    min-height: 390px;
    margin: auto;
}


.conhecimentos{
    background-image: url('../img/fundo-texturizado-abstrato-2.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height:auto;
}

/* TECNOLOGIAS */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}
.tech-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}
.tech-grid i {
  color: #ff6600;
  font-size: 22px;
}

/* TIMELINE */
#conhecimentos {
  text-align: center;
}
#conhecimentos {
  text-align: center;
}
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(to bottom, #ff6600, #ff3300);
}
.timeline-item {
  padding: 20px;
  position: relative;
  width: 45%;
}
.timeline-item.left {
  left: 0;
  text-align: right;
}
.timeline-item.right {
  left: 55%;
  text-align: left;
}
.timeline-item h3 {
  color: #ff6600;
}



/* MOBILE */
 @media (max-width: 1000px) {
            
          #sobre{
            display: block;
            height: auto;
          } 
          #sobre .card{
            margin:10px 0;
          } 



          .tech-grid {
            display: block;
            grid-template-columns: 1fr 1fr;
          }
          .timeline::before {
            position: unset;
            background:none;
          }
          .timeline-item {
            padding: 20px;
            position: unset;
            width: 100%;
          }
          .timeline-item.left {
            left: 0;
            text-align: unset;
          }
          .timeline-item.right {
            left: 0;
            text-align: unset;
          }
        }
 @media (max-width: 780px) {
         
        }