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

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, rgba(11, 17, 32, 0.55), rgba(17, 24, 48, 0.55)), url('images/nairo-camiseta.png') top center/cover no-repeat fixed;
  background-attachment: fixed;
  background-blend-mode: overlay;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  filter: brightness(1.03);
}

a {
  text-decoration: none;
}

.header {
  width: 100%;
  padding: 24px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  background: rgba(11, 17, 32, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #22c55e;
}

.btn-header {
  background: #22c55e;
  color: #04130a;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-header:hover {
  transform: translateY(-2px);
  background: #16a34a;
}

.hero {
  min-height: 100vh;
  padding: 140px 8% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0.9;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 6% 60px;
    gap: 40px;
  }
}

.badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 62px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero p {
  font-size: 20px;
  color: #cbd5e1;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.vacancy-status {
  margin-top: 32px;
  padding: 24px;
  background: rgba(11, 17, 32, 0.6);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.vacancy-title {
  display: block;
  font-size: 16px;
  color: #d1fae5;
  margin-bottom: 18px;
}

.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(32px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.vacancy {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: bold;
  color: #ffffff;
}

.vacancy.closed {
  background: rgba(248, 113, 113, 0.18);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.5);
}

.vacancy.open {
  background: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.5);
}

.vacancy-note {
  color: #cbd5e1;
  font-size: 15px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

body.modal-open {
  overflow: hidden;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 24px;
  box-shadow: 0 0 60px rgba(34, 197, 94, 0.2);
  max-width: 500px;
  width: 90%;
  overflow: hidden;
  animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  padding: 28px 24px 20px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.15);
}

.modal-header h2 {
  color: #22c55e;
  font-size: 26px;
  margin: 0;
}

.modal-body {
  padding: 24px;
  color: #e2e8f0;
  font-size: 16px;
  line-height: 1.8;
}

.modal-body p {
  margin-bottom: 16px;
}

.modal-body p:last-child {
  margin-bottom: 0;
}

.modal-body strong {
  color: #22c55e;
}

.modal-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(34, 197, 94, 0.15);
  display: flex;
  justify-content: center;
}

.modal-footer .btn-primary {
  min-width: 200px;
}

.btn-primary {
  background: #22c55e;
  color: #04130a;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #16a34a;
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  padding: 16px 28px;
  border-radius: 12px;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.05);
}

.hero-card {
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(34, 197, 94, 0.15), inset 0 0 30px rgba(34, 197, 94, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-card:hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 70px rgba(34, 197, 94, 0.25), inset 0 0 30px rgba(34, 197, 94, 0.08);
}

.terminal-bar {
  background: #1f2937;
  padding: 14px;
  display: flex;
  gap: 8px;
}

.terminal-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-bar span:nth-child(1) {
  background: #ef4444;
}

.terminal-bar span:nth-child(2) {
  background: #f59e0b;
}

.terminal-bar span:nth-child(3) {
  background: #22c55e;
}

.hero-card pre {
  padding: 36px;
  color: #22c55e;
  font-size: 16px;
  overflow-x: auto;
}

.section {
  padding: 100px 8%;
}

.section-label {
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 18px;
}

.section h2 {
  font-size: 44px;
  margin-bottom: 22px;
}

.section p {
  color: #cbd5e1;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.card {
  background: #111827;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 197, 94, 0.3);
}

.card h3 {
  margin-bottom: 16px;
  color: #ffffff;
}

.dark {
  background: #0f172a;
}

.checklist {
  margin-top: 40px;
  display: grid;
  gap: 18px;
  font-size: 18px;
}

.grid-benefits {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-benefits div {
  background: #111827;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}

.grid-benefits div:hover {
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-4px);
}

.offer {
  text-align: center;
}

.offer h2 {
  margin-top: 20px;
}

.offer p {
  max-width: 700px;
  margin: 24px auto 36px;
}

.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

form {
  background: #111827;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
}

input,
select {
  width: 100%;
  margin-bottom: 18px;
  padding: 18px;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: white;
  font-size: 16px;
}

input:focus,
select:focus {
  outline: none;
  border-color: #22c55e;
}

button {
  width: 100%;
  border: none;
  background: #22c55e;
  color: #04130a;
  padding: 18px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #16a34a;
}

#mensagem {
  margin-top: 18px;
  font-weight: bold;
}

.footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #94a3b8;
}

@media (max-width: 1024px) {
  .hero,
  .form-section,
  .cards,
  .grid-benefits {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .header {
    padding: 20px;
  }

  .hero,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .section h2 {
    font-size: 32px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}