:root {
  --color-primary: #8A4A10;
  --color-primary-light: #B96F1E;
  --color-hero-grad-from: #FFF0D6;
  --color-hero-grad-to: #FFF8EC;
  --color-vagas-bg: #FFFBF4;
  --color-footer-bg: #F2F2F2;
  --color-white: #FFFFFF;
  --color-text-dark: #1A1A1A;
  --color-text-mid: #4D4D4D;
  --color-text-muted: #666666;
  --color-text-placeholder: #A6A6A6;
  --color-border: #D9D9D9;
  --color-divider: #D9D9D9;
  --color-stat-value: #8A4A10;
  --color-img-placeholder: #F2D39A;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--color-text-dark);
  background: var(--color-white);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 80px;
}

.section-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
}

.section-subtitle {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-text-muted);
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
  transition: background-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--color-primary-light);
}

.btn:focus-visible,
.nav-link:focus-visible,
.menu-toggle:focus-visible,
.menu-checkbox:focus-visible+.menu-toggle,
input:focus-visible {
  outline: 3px solid var(--color-primary-light);
  outline-offset: 3px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 92px;
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 76px;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: 100%;
  height: 160%;
  object-fit: contain;
  object-position: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 110px;
  margin-left: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  color: #262626;
  transition: background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: #FFF0D6;
  color: var(--color-primary);
  box-shadow: inset 0 0 0 1px rgba(138, 74, 16, 0.18);
}

.nav-cta {
  min-height: 40px;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px 0;
  border-radius: 2px;
  background: #333333;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1),
.menu-checkbox:checked+.menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2),
.menu-checkbox:checked+.menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3),
.menu-checkbox:checked+.menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 520px;
  background: linear-gradient(90deg, var(--color-hero-grad-from), var(--color-hero-grad-to));
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(360px, 500px);
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: 520px;
}

.hero-content {
  padding-top: 6px;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: 46px;
  line-height: 1.14;
  font-weight: 700;
  color: #5A2D08;
}

.hero p {
  max-width: 520px;
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--color-text-mid);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 160px);
  gap: 20px;
  margin-top: 82px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.stat-value {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--color-stat-value);
}

.stat-label {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 400;
  color: var(--color-text-muted);
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: 420px;
  border-radius: 12px;
  background: #F7E0B5;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(90, 45, 8, 0.16);
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.form-section {
  min-height: 400px;
  padding: 54px 0 58px;
  background: var(--color-white);
}

.candidate-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 680px);
  margin: 34px auto 0;
  gap: 16px;
}

.field {
  width: 100%;
}

.field label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.field input {
  width: 100%;
  height: 52px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  padding: 0 20px;
  color: var(--color-text-dark);
  font-size: 15px;
  font-weight: 400;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.file-field label {
  position: static;
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 10px;
  overflow: visible;
  clip: auto;
  color: var(--color-text-dark);
  font-size: 15px;
  font-weight: 600;
  white-space: normal;
}

.file-field input {
  height: auto;
  min-height: 52px;
  padding: 10px 12px;
  color: var(--color-text-mid);
  cursor: pointer;
}

.file-field input::file-selector-button {
  min-height: 32px;
  margin-right: 14px;
  border: 0;
  border-radius: 6px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 200ms ease;
}

.file-field input::file-selector-button:hover {
  background: var(--color-primary-light);
}

.field input::placeholder {
  color: var(--color-text-placeholder);
  opacity: 1;
}

.field input.is-invalid {
  border-color: #B00020;
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.submit-btn {
  width: 280px;
  height: 52px;
  margin-top: 4px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
}

.jobs-section {
  min-height: 560px;
  padding: 54px 0 64px;
  background: var(--color-vagas-bg);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 290px));
  justify-content: center;
  gap: 30px;
  margin-top: 36px;
}

.job-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 18px 16px 16px;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.job-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.job-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-text-dark);
}

.job-location {
  margin: 7px 0 16px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  color: var(--color-text-muted);
}

.job-company {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-primary);
}

.job-description {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 14px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 12px;
  line-height: 1.35;
  color: var(--color-text-mid);
}

.job-image {
  width: 100%;
  height: 165px;
  border-radius: 8px;
  background: #F7E0B5;
  overflow: hidden;
}

.job-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.job-btn {
  width: 100%;
  height: 44px;
  margin-top: auto;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.jobs-empty {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.whatsapp-section {
  min-height: 220px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, var(--color-hero-grad-from), #F0F9F0);
}

.whatsapp-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 26px;
}

.whatsapp-content p {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--color-text-dark);
}

.whatsapp-btn {
  width: 340px;
  height: 56px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
}

.whatsapp-btn:hover,
.whatsapp-btn:focus-visible {
  transform: scale(1.02);
}

.whatsapp-icon {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-footer {
  min-height: 100px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--color-divider);
  background: var(--color-footer-bg);
}

.footer-content {
  text-align: center;
}

.footer-main {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
  color: #808080;
}

.admin-page {
  min-height: 100vh;
  background: #FAFAFA;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  background: linear-gradient(90deg, var(--color-hero-grad-from), var(--color-hero-grad-to));
}

.admin-login[hidden],
[data-auth-view="admin"][hidden] {
  display: none;
}

.admin-login-panel {
  width: min(100%, 420px);
  border: 1px solid rgba(138, 74, 16, 0.16);
  border-radius: 8px;
  background: var(--color-white);
  padding: 30px;
  box-shadow: 0 18px 40px rgba(90, 45, 8, 0.12);
}

.admin-login-panel h1 {
  margin: 0;
  color: var(--color-text-dark);
  font-size: 28px;
  line-height: 1.2;
}

.admin-login-desc {
  margin: 10px 0 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.admin-login-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.admin-login-status {
  min-height: 20px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 600;
}

.admin-login-status[data-type="error"] {
  color: #B00020;
}

.admin-login-btn {
  min-height: 48px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
}

.admin-login-btn:disabled {
  cursor: wait;
  opacity: 0.75;
}

.admin-container {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 32px;
}

.admin-header {
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-white);
}

.admin-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 110px;
}

.admin-eyebrow {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-header h1,
.admin-panel h2,
.admin-job-item h2 {
  margin: 0;
  color: var(--color-text-dark);
}

.admin-header h1 {
  font-size: 30px;
  line-height: 1.2;
}

.admin-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-white);
  color: var(--color-text-dark);
  font-size: 14px;
  font-weight: 700;
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.admin-logout-btn {
  min-height: 42px;
  border: 1px solid #B00020;
  border-radius: 6px;
  padding: 0 18px;
  background: var(--color-white);
  color: #B00020;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.admin-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  padding-top: 34px;
  padding-bottom: 48px;
}

.admin-panel {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  padding: 24px;
}

.admin-panel h2 {
  font-size: 20px;
  line-height: 1.25;
}

.admin-job-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.admin-field {
  display: grid;
  gap: 8px;
}

.admin-field label,
.admin-check {
  color: var(--color-text-dark);
  font-size: 14px;
  font-weight: 600;
}

.admin-field input {
  width: 100%;
  min-height: 46px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--color-text-dark);
  background: var(--color-white);
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}

.admin-status {
  min-height: 20px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 600;
}

.admin-status[data-type="success"] {
  color: #137333;
}

.admin-status[data-type="error"] {
  color: #B00020;
}

.admin-submit-btn {
  min-height: 48px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
}

.admin-jobs-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.admin-job-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 14px;
  background: #FFFBF4;
}

.admin-job-item h2 {
  font-size: 15px;
  line-height: 1.3;
}

.admin-job-item p {
  margin: 6px 0 0;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.4;
}

.admin-delete-btn {
  min-height: 38px;
  border: 1px solid #B00020;
  border-radius: 6px;
  padding: 0 14px;
  background: var(--color-white);
  color: #B00020;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.admin-empty {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.admin-header-desc {
  margin: 8px 0 0;
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.admin-form-actions {
  display: flex;
  gap: 12px;
}

.admin-cancel-btn {
  min-height: 48px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  background: transparent;
  color: var(--color-text-mid);
  border: 1.5px solid var(--color-border);
  padding: 0 24px;
}

.admin-cancel-btn:hover,
.admin-cancel-btn:focus-visible {
  background: #F2F2F2;
  color: var(--color-text-dark);
}

.admin-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.admin-badge--active {
  background: #E6F4EA;
  color: #137333;
}

.admin-badge--hidden {
  background: #FFF3E0;
  color: #B96F1E;
}

.admin-job-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.admin-toggle-btn,
.admin-edit-btn {
  min-height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0 14px;
  background: var(--color-white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: background-color 200ms ease, border-color 200ms ease;
}

.admin-toggle-btn {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.admin-toggle-btn:hover,
.admin-toggle-btn:focus-visible {
  background: #FFF0D6;
}

.admin-edit-btn {
  color: #1a73e8;
  border-color: #1a73e8;
}

.admin-edit-btn:hover,
.admin-edit-btn:focus-visible {
  background: #e8f0fe;
}

@media (max-width: 1160px) {
  .container {
    padding: 0 48px;
  }

  .nav-menu {
    gap: 64px;
  }

  .logo {
    width: 260px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 40px;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
  }

  .jobs-grid {
    grid-template-columns: repeat(2, minmax(260px, 290px));
  }
}

@media (max-width: 1023px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 46px;
  }

  .hero-image {
    order: -1;
    max-width: none;
    height: 280px;
  }

  .hero h1,
  .hero p {
    max-width: 720px;
  }

  .stats {
    max-width: 520px;
    margin-top: 34px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }

  .site-header,
  .navbar {
    height: 78px;
  }

  .logo {
    width: 190px;
    height: 62px;
  }

  .menu-checkbox {
    display: block;
    position: absolute;
    right: 20px;
    width: 44px;
    height: 44px;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--color-white);
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .menu-checkbox:checked~.nav-menu {
    display: flex;
  }

  .nav-link {
    font-size: 13px;
    justify-content: flex-start;
    padding: 13px 12px;
  }

  .nav-cta {
    width: 100%;
    margin-top: 8px;
    font-size: 12px;
  }

  .hero-grid {
    gap: 28px;
    padding-top: 24px;
    padding-bottom: 38px;
  }

  .hero-image {
    height: 180px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 24px;
    line-height: 1.16;
  }

  .hero p {
    font-size: 13px;
    line-height: 1.55;
  }

  .stats {
    display: none;
  }

  .form-section,
  .jobs-section {
    padding: 44px 0 48px;
  }

  .section-title {
    font-size: 21px;
    line-height: 1.22;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .candidate-form {
    margin-top: 28px;
    gap: 12px;
  }

  .field input {
    height: 48px;
    padding: 0 16px;
    font-size: 13px;
  }

  .file-field label {
    font-size: 13px;
  }

  .file-field input {
    min-height: 48px;
    padding: 9px 10px;
    font-size: 13px;
  }

  .file-field input::file-selector-button {
    min-height: 30px;
    margin-right: 10px;
    font-size: 13px;
  }

  .submit-btn {
    width: 100%;
    height: 48px;
    font-size: 14px;
  }

  .jobs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
  }

  .job-card {
    min-height: 292px;
    padding: 14px 12px 12px;
    border-radius: 10px;
  }

  .job-card h3 {
    font-size: 13px;
    line-height: 1.25;
  }

  .job-location {
    min-height: 32px;
    margin-bottom: 12px;
    font-size: 11px;
  }

  .job-image {
    height: 112px;
  }

  .job-btn {
    height: 42px;
    font-size: 12px;
  }

  .whatsapp-section {
    min-height: 220px;
    padding: 40px 0;
  }

  .whatsapp-content p {
    font-size: 16px;
    line-height: 1.35;
  }

  .whatsapp-btn {
    width: 100%;
    font-size: 13px;
  }

  .site-footer {
    padding: 24px 0;
  }

  .footer-main {
    font-size: 12px;
  }

  .footer-links {
    gap: 22px;
    margin-top: 20px;
    font-size: 11px;
  }

  .admin-container {
    padding: 0 20px;
  }

  .admin-header-content {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 140px;
  }

  .admin-header h1 {
    font-size: 24px;
  }

  .admin-header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .admin-main {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 24px;
  }

  .admin-panel {
    padding: 20px;
  }

  .admin-job-item {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-job-actions {
    flex-wrap: wrap;
  }

  .admin-form-actions {
    flex-direction: column;
  }

  .admin-submit-btn,
  .admin-cancel-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 21px;
  }

  .logo {
    width: 160px;
  }

  .hero p {
    font-size: 12px;
  }

  .section-title {
    font-size: 19px;
  }

  .section-subtitle {
    font-size: 12px;
  }

  .jobs-grid {
    gap: 12px;
  }

  .job-card {
    min-height: 300px;
    padding: 12px 10px 10px;
  }

  .job-card h3 {
    font-size: 12px;
  }

  .job-location {
    font-size: 10px;
  }

  .job-image {
    height: 98px;
  }

  .job-btn {
    height: 40px;
    font-size: 11px;
  }

  .whatsapp-content p {
    font-size: 15px;
  }

  .whatsapp-btn {
    font-size: 12px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
