:root {
  --primary-color: #ff9800;
  --white-color: #ffffff;
  --dark-color: #2667cf;

  --clear-color: #0088e2;
  --about-bg-color: #f2f2f2;

  --gray-color: #909090;
  --link-color: #404040;
  --p-color: #666262;

  --base-font-family: "Plain", sans-serif;
  --font-weight-bold: bold;
  --font-weight-normal: normal;
  --font-weight-light: 300;
  --font-weight-thin: 100;

  --h1-font-size: 48px;
  --h2-font-size: 36px;
  --h3-font-size: 28px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --base-font-size: 16px;
  --menu-font-size: 14px;
  --border-radius-large: 100%;
  --border-radius-small: 2px;
}

.navbar {
  background-color: var(--dark-color) !important;
  border-bottom: solid 1px #ffffff0a;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #3c76d3 0%, #1a4a9e 100%);
  min-height: 60vh;
  position: relative;
  overflow: hidden;
}

.hero .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Vagas Section */
.vaga-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.vaga-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vaga-icon {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.vaga-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.vaga-content p {
  color: #666;
  margin-bottom: 20px;
}

.vaga-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.vaga-info li {
  display: flex;
  align-items: center;
  color: #777;
  font-size: 0.9rem;
}

.vaga-info i {
  margin-right: 5px;
  color: var(--dark-color);
}

/* Formulário Section */
.form-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.form-card h2 {
  color: var(--dark-color);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
  display: block;
}

.form-control {
  border: 1px solid #ddd;
  padding: 6px 15px;
  border-radius: 5px;
  transition: all 0.3s;
}

/* Fix para select - evitar texto cortado */
select.form-control,
.form-select {
  padding: 6px 15px; /* Padding normal */
  padding-right: 40px !important; /* Espaço para seta */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-size: 16px 12px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: nowrap !important;
}

select.form-control option,
.form-select option {
  padding: 10px 15px;
  white-space: normal;
  word-wrap: break-word;
}

.form-control:focus {
  border-color: var(--dark-color);
  box-shadow: 0 0 0 0.25rem rgba(38, 103, 207, 0.25);
}

.btn-primary {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #1a4a9e;
  border-color: #1a4a9e;
  transform: translateY(-2px);
}

/* Benefícios Section */
.beneficio-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.beneficio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.beneficio-item i {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.beneficio-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.beneficio-item p {
  color: #666;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
  }

  .vaga-card,
  .form-card {
    padding: 20px;
  }
}
