:root {
  --primary-color: #0D2A35;
  --secondary-color: #0052a3;
  --accent-color: #ff7b00;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --success-color: #4bb543;
  --danger-color: #ff3333;
  --warning-color: #ffcc00;
  --info-color: #33b5e5;
  --border-color: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

/* Header */
.header {
  background-color: white;
  padding: 1rem 2rem;
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.header .logo img {
  height: 40px;
}

.header .nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header .nav-links a {
  text-decoration: none;
  font-weight: 500;
}

.header .nav-link {
  color: var(--dark-color);
  transition: color 0.3s;
}

.header .nav-link:hover {
  color: var(--primary-color);
}

.header .btn-primary {
  background-color: var(--accent-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.header .btn-primary:hover {
  background-color: #e66f00;
}

/* Hero Section */
.hero {
  background: var(--primary-color);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 80px 1rem 2rem;
}

.hero .hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero .btn-primary {
  background-color: #005249;
  color: white;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  min-width: 200px;
}

.hero .btn-primary:hover {
  background-color: #00705c;
}

/* Filtros */
.filters {
  padding: 2rem 0;
  background-color: white;
  box-shadow: var(--shadow);
  position: relative;
}

.filters::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.filters .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.filter-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.filter-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  background-color: rgba(245, 247, 250, 0.8);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.filter-input, .filter-select {
  flex: 1;
  padding: 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  min-width: 200px;
  background-color: white;
  transition: border-color 0.3s;
}

.filter-input:focus, .filter-select:focus {
  border-color: var(--accent-color);
  outline: none;
}

.btn-filter {
  background-color: var(--accent-color);
  color: white;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 150px;
}

.btn-filter:hover {
  background-color: #e66f00;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Seção de Vagas */
.jobs-section {
  padding: 4rem 0;
  background-color: var(--light-color);
  position: relative;
}

.jobs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.jobs-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jobs-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.jobs-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.job-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border-color);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.job-card .job-header {
  padding: 1.5rem 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.job-card .job-header h3 {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.job-card .job-type {
  background-color: var(--accent-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
}

.job-card .job-details {
  padding: 1rem 1.5rem;
}

.job-card .job-details p {
  margin-bottom: 0.75rem;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-card .job-details i {
  color: var(--accent-color);
}

.job-card .job-footer {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.job-card .btn-apply {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.job-card .btn-apply:hover {
  background-color: var(--secondary-color);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.pagination-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 0.25rem;
}

.page-item {
  margin: 0 0.125rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: var(--primary-color);
  background-color: #fff;
  border: 1px solid #dee2e6;
  text-decoration: none;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-link:hover {
  color: #0a58ca;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

/* Banco de Talentos Section */
.talent-bank {
  padding: 4rem 0;
  background-color: white;
}

.talent-bank .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.talent-bank-content {
  flex: 1;
  text-align: left;
}

.talent-bank-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.talent-bank-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.btn-talent {
  background-color: var(--accent-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  min-width: 200px;
}

.btn-talent:hover {
  background-color: #e66f00;
}

.talent-bank-image {
  flex: 1;
  text-align: center;
}

.talent-bank-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow-y: auto;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.modal-header {
  padding: 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.close-modal {
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--accent-color);
}

.modal-body {
  padding: 2rem;
}

.modal-body h3 {
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Layout em duas colunas para informações básicas */
.modal-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.modal-info p {
  margin: 0;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-section {
  margin: 2rem 0;
}

.modal-section h4 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-section p {
  color: var(--dark-color);
  line-height: 1.6;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  background-color: #f9f9f9;
  border-radius: 0 0 10px 10px;
}

.btn-share, .btn-apply {
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
  margin-left: 1rem;
}

.btn-share {
  background-color: #f0f0f0;
  color: var(--dark-color);
}

.btn-apply {
  background-color: var(--primary-color);
  color: white;
}

.btn-apply:hover {
  background-color: var(--secondary-color);
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 300px;
}

.footer-links {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-contact {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact i {
  margin-right: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--accent-color);
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 1024px) {
  .filter-group {
    flex-direction: column;
  }

  .filter-input, .filter-select, .btn-filter {
    width: 100%;
  }

  .talent-bank .container {
    flex-direction: column;
  }

  .talent-bank-image {
    margin-top: 2rem;
  }

  .jobs-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .modal-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem;
  }

  .header .nav-links {
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero p {
    font-size: 1.25rem;
  }

  .hero .btn-primary {
    width: 100%;
    padding: 1rem;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    width: 95%;
    margin: 2% auto;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }
}


