.experienceContent {
  padding: 0 10%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.company {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  flex-wrap: wrap; /* Responsivo */
}

.company img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.company h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.company a:hover{
    text-decoration: underline;
}

.company .location {
  font-size: 0.9rem;
  color: var(--grayTwo);
  margin: 2px 0 0;
}

.roles {
  display: flex;
  flex-direction: column;
  gap: 25px;
  list-style: none;
  padding: 0;
}

.role {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.roleTitle {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.roleTitle h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.roleTitle p {
  font-size: 0.9rem;
  color: var(--grayTwo);
  margin: 0;
}

.highlights {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.highlights li {
  font-size: 0.95rem;
  line-height: 1.4;
}

.techstack {
  font-size: 0.85rem;
 color: var(--grayTwo);
  margin-top: 5px;
}

.techstackBold {
  font-weight: 600;
  color: var(--gray);
}

@media (max-width: 768px) {
  .experienceContent {
    padding: 0 5%;
  }

  .company img {
    width: 45px;
  }

  .company h4 {
    font-size: 1rem;
  }

  .roleTitle h5 {
    font-size: 0.95rem;
  }

  .highlights li {
    font-size: 0.9rem;
  }
}
