/* ===== TRABALHE CONOSCO - COM ACESSIBILIDADE ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --primary: #023882;
  --primary-light: #1a5bb8;
  --primary-dark: #012b63;
  --secondary: #4CAF50;
  --secondary-light: #6fbf73;
  --secondary-dark: #3d8e40;
  --accent: #4A90E2;
  --dark: #333333;
  --gray: #666666;
  --light-gray: #f5f7fa;
  --white: #ffffff;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ===== ACESSIBILIDADE: SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  z-index: 9999;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #ffb74d;
  outline-offset: 2px;
}

/* ===== ACESSIBILIDADE: FOCO VISÍVEL ===== */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 3px solid #ffb74d;
  outline-offset: 2px;
  background-color: rgba(255, 183, 77, 0.1);
}

/* ===== HEADER 100% LARGURA ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: var(--shadow-md);
  width: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 45px;
  width: auto;
  transition: var(--transition);
}

.logo-container img:hover {
  transform: scale(1.05);
}

/* ===== MENU HAMBURGUER ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  padding: 0;
  z-index: 1002;
}

.hamburger .line {
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MENU DE NAVEGAÇÃO ===== */
#menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.menu-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  position: relative;
}

.nav-link i {
  font-size: 1rem;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--secondary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--secondary);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

/* ===== SUBMENU ===== */
.has-submenu {
  position: relative;
}

.submenu-container {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--white);
  min-width: 240px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1001;
  padding: 0.5rem 0;
  border: 1px solid rgba(0,0,0,0.05);
}

.has-submenu:hover .submenu-container,
.has-submenu:focus-within .submenu-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu {
  list-style: none;
}

.submenu li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: var(--dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.submenu li a i {
  color: var(--primary);
  font-size: 0.9rem;
  width: 18px;
}

.submenu li a:hover {
  background: var(--light-gray);
  color: var(--primary);
  border-left-color: var(--secondary);
  padding-left: 2rem;
}

/* ===== HERO SECTION ===== */
.career-hero {
  position: relative;
  background: var(--gradient-primary);
  padding: 4rem 0 6rem;
  color: var(--white);
  overflow: hidden;
  width: 100%;
  margin-top: 5%;
  z-index: 1;
}

.career-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.career-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.career-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.career-hero .highlight {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.career-hero .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(76, 175, 80, 0.3);
  border-radius: 10px;
  z-index: -1;
}

.career-subtitle {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== SEÇÃO DE VALORES ===== */
.values-section {
  padding: 5rem 0;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: 4px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-icon i {
  font-size: 2rem;
  color: var(--white);
}

.value-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.value-card p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== SEÇÃO DE VAGAS ===== */
.jobs-section {
  padding: 5rem 0;
  background: var(--light-gray);
  position: relative;
  z-index: 2;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.job-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.job-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.job-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
  padding-right: 80px;
}

.job-info {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.job-info i {
  margin-right: 0.3rem;
  color: var(--secondary);
}

.job-description {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.job-btn {
  width: 100%;
  padding: 0.8rem;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.job-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.02);
}

/* ===== FORMULÁRIO ===== */
.form-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  position: relative;
  z-index: 2;
}

.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.form-header p {
  color: var(--gray);
  font-size: 1rem;
}

.elegant-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group label i {
  color: var(--secondary);
}

.form-help {
  display: block;
  font-size: 0.7rem;
  color: var(--gray);
  margin-top: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(2, 56, 130, 0.1);
}

.form-group input[readonly] {
  background: var(--light-gray);
  border-color: #d0d0d0;
  color: var(--gray);
}

/* Upload de arquivo */
.upload-group {
  position: relative;
}

.file-upload {
  position: relative;
  width: 100%;
}

.file-upload input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--light-gray);
  border: 2px dashed var(--primary);
  border-radius: var(--border-radius-sm);
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}

.file-label i {
  font-size: 1.5rem;
}

.file-upload:hover .file-label {
  background: rgba(2, 56, 130, 0.05);
  border-color: var(--secondary);
}

.upload-group small {
  color: var(--gray);
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: block;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.5rem 0;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--secondary);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.95rem;
  color: var(--dark);
  cursor: pointer;
}

.checkbox-group a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.checkbox-group a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* Botão submit */
.submit-btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.submit-btn i {
  transition: var(--transition);
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary); /* AZUL ESCURO */
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

/* Marca */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Colunas */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #00a859; /* VERDE */
    border-radius: 2px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.footer-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== LINKS SEM SUBLINHADO ===== */
.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none !important; /* REMOVE SUBLINHADO */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #00a859; /* VERDE AO PASSAR MOUSE */
    transform: translateX(4px);
    text-decoration: none !important; /* MANTÉM SEM SUBLINHADO NO HOVER */
}

.footer-address {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== REDES SOCIAIS ===== */
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none !important; /* SEM SUBLINHADO */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon i {
    color: #ffffff !important;
}

.social-icon:hover {
    background: #00a859;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none !important;
}

.social-icon:hover i {
    color: #ffffff !important;
}

/* ===== RODAPÉ INFERIOR ===== */
.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.copyright span {
    color: #00a859;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-list li {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .career-hero h1 {
    font-size: 3rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .menu-nav {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Header Mobile */
  .header-container {
    padding: 0.75rem 1rem;
    width: 100%;
  }
  
  .hamburger {
    margin-right: 20px;
    display: flex;
  }
  
  #menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    transition: left 0.3s ease;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  
  #menu.active {
    left: 0;
  }
  
  .menu-nav {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
  
  .nav-link {
    color: var(--primary);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    width: 100%;
  }
  
  .nav-link i {
    color: var(--primary);
  }
  
  .nav-link::after {
    display: none;
  }
  
  /* Submenu Mobile */
  .has-submenu .submenu-container {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--light-gray);
    margin: 0.5rem 0 0.5rem 1rem;
    display: none;
    width: calc(100% - 1rem);
    border-radius: var(--border-radius-sm);
  }
  
  .has-submenu.active .submenu-container {
    display: block;
  }
  
  .has-submenu .nav-link i:last-child {
    margin-left: auto;
    transition: transform 0.3s;
  }
  
  .has-submenu.active .nav-link i:last-child {
    transform: rotate(180deg);
  }
  
  .submenu li a {
    color: var(--dark);
    padding: 0.6rem 1rem;
  }
  
  .submenu li a i {
    color: var(--primary);
  }
  
  /* Hero Mobile */
  .career-hero {
    padding: 3rem 0 4rem;
  }
  
  .career-hero h1 {
    font-size: 2.2rem;
  }
  
  .career-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  /* Seções Mobile */
  .values-section,
  .jobs-section,
  .form-section {
    padding: 3rem 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .values-grid,
  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-wrapper {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .job-info {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  /* Footer Mobile */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-list {
    align-items: center;
  }
  
  .footer-link {
    justify-content: center;
  }
  
  .footer-address {
    justify-content: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0.5rem 0.75rem;
  }
  
  .logo-container img {
    height: 40px;
  }
  
  .career-hero h1 {
    font-size: 1.8rem;
  }
  
  .career-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .value-card {
    padding: 2rem 1.5rem;
  }
  
  .form-wrapper {
    padding: 1.5rem;
  }
  
  .file-label {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .checkbox-group {
    flex-wrap: wrap;
  }
  
  .checkbox-group label {
    font-size: 0.85rem;
  }
  
  .submit-btn {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .footer-logo img {
    height: 50px;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
}