/* Landing Page*/
.landing-page {
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-logo {
  height: 50px;
  width: auto;
}

.navbar-links {
  display: flex;
  gap: 50px;
  align-items: center;
}

.navbar-links a {
  text-decoration: none;
  color: #000000;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: #790ce6;
}

.btn-entrar {
  background: rgba(121, 12, 230, 0.05);
  border: none;
  border-radius: 20px;
  padding: 10px 30px;
  color: #000000;
  font-family: "Inter-Regular", sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-entrar:hover {
  background: rgba(121, 12, 230, 0.1);
}

/* Hero Section */
.hero-section {
  display: flex;
  gap: 60px;
  padding: 80px 60px;
  align-items: flex-start;
  flex: 1;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-title {
  font-family: "Inter-Bold", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin: 0;
}

.hero-title .highlight {
  color: #790ce6;
}

.usuarios-container {
  display: flex;
  align-items: center;
  gap: -15px;
  width: fit-content;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: -15px;
  border: 3px solid #ffffff;
  object-fit: cover;
}

.user-avatar:first-child {
  margin-left: 0;
}

.user-avatar-plus {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #790ce6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  margin-left: -15px;
  border: 3px solid #ffffff;
}

.btn-explorar {
  background: #790ce6;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 16px 40px;
  font-family: "Inter-Regular", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.btn-explorar:hover {
  background: #6a0cc0;
}

/* Hero Right */
.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-box {
  background: rgba(121, 12, 230, 0.05);
  border: none;
  border-radius: 25px;
  padding: 16px 24px;
  width: 100%;
  font-family: "Inter-Regular", sans-serif;
  font-size: 16px;
  color: #000000;
}

.search-box::placeholder {
  color: #000000;
  opacity: 0.4;
}

.search-box:focus {
  outline: 2px solid #790ce6;
  outline-offset: -1px;
}

.vagas-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vaga-card {
  background: #faf9f9;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.vaga-card:hover {
  box-shadow: 0px 4px 16px rgba(121, 12, 230, 0.15);
  transform: translateY(-2px);
}

.vaga-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.vaga-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.vaga-titulo {
  font-family: "Inter-Bold", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

.vaga-desc {
  font-family: "Inter-Regular", sans-serif;
  font-size: 12px;
  color: #626262;
  margin: 0;
}

.vaga-local {
  font-family: "Inter-Regular", sans-serif;
  font-size: 12px;
  color: #626262;
  margin: 0;
}