/* Container geral */
#oportunidades {
    background-color: #000000;
    color: #fff;
    padding: 120px 0;
  }
  
  #oportunidades .container {
    max-width: 90%;
    margin: 0 auto;
  }
  
  /* Título principal */
  #oportunidades h2 {
    text-align: left;
    font-size: 36px;
    margin-bottom: 40px;
    padding-left: 60px;
  }
  
  /* Container dos cards */
  .cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  /* Card individual */
  .job-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    width: 45%;
    box-sizing: border-box;
    transition: transform 0.3s ease;
  }
  
  .job-card:hover {
    transform: translateY(-5px);
  }
  
  /* Imagem dentro do card */
  .job-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
  }
  
  /* Título do cargo */
  .job-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #fff;
  }
  
  /* Lista de requisitos */
  .requisitos {
    list-style: disc;
    padding-left: 20px; /* espaço à esquerda para os bullets aparecerem */
    margin-bottom: 20px;
  }
  
  .requisitos li {
    margin-bottom: 8px;
    color: #ccc;
    font-size: 15px;
  }
  
  /* Botão com gradiente */
  .cv-button {
    background: linear-gradient(90deg, #CF3A2D, #C75D00); 
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s ease;
  }
  
  .cv-button:hover {
    background: linear-gradient(to right, #ff5e00, #ff8c00);
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .job-card {
      width: 100%;
    }
  
    #oportunidades h2 {
      font-size: 28px;
      text-align: center;
      padding-left: 0;
      padding-right: 0;
    }
  }
  