/* Source: page/trabajaconnosotros.php */
:root {
      --primary-green: #00a75d;
      --secondary-green: #28a745;
      --accent-blue: #007bff;
      --dark-blue: #123057;
      --light-bg: #f8f9fc;
      --white-glass: rgba(255,255,255,0.95);
      --shadow-light: rgba(0,0,0,0.1);
      --shadow-hover: rgba(0,167,93,0.25);
    }

    body { 
      font-family: 'Poppins', sans-serif; 
    }

   /* HERO SECTION */
    .hero-section{
      background: linear-gradient(135deg, #00a75d,     #28a745, #007bff);
      color: #fff;
      padding: 90px 0 70px;
      text-align: center;
      }
      .hero-section h1{ font-size: 3rem; font-weight: 500; }    
      .hero-section p{ font-size: 1.25rem; opacity: .95; }

    /* JOBS SECTION */
    .jobs-section { 
      padding: 100px 0 80px; 
      background: linear-gradient(135deg, #f8f9fa 0%, var(--light-bg) 100%);
    }

    /* SECTION TITLE */
    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }
    .section-title h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--dark-blue);
      margin-bottom: 16px;
      position: relative;
    }
    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
      border-radius: 2px;
    }
    .section-title p {
      font-size: 1.15rem;
      color: #6c757d;
      max-width: 600px;
      margin: 0 auto;
    }

    /* JOB CARDS */
    
    .job-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;     
    }

    .job-card {
      background: var(--white-glass);
      backdrop-filter: blur(25px);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 60px var(--shadow-light);
      border: 1px solid rgba(0,167,93,0.15);
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .job-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }
    .job-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 40px 100px var(--shadow-hover);
      border-color: var(--primary-green);
    }
    .job-card:hover::before { 
      transform: scaleX(1); 
    }

    .job-image-wrapper { 
      height: 220px; 
      overflow: hidden; 
      position: relative; 
    }
    .job-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .job-card:hover .job-image { 
      transform: scale(1.1); 
    }

    .job-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
      color: white;
      padding: 8px 20px;
      border-radius: 25px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 4px 15px rgba(0,167,93,0.3);
    }

    .job-content { 
      padding: 30px; 
      flex: 1; 
      display: flex; 
      flex-direction: column;
    }
    .job-location {
      color: var(--accent-blue);
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .job-title {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--dark-blue);
      margin-bottom: 15px;
      line-height: 1.4;
    }
    .job-description {
      color: #6c757d;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 20px;
      flex: 1;
    }

    .job-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 20px;
      border-top: 2px solid rgba(0,167,93,0.1);
    }
    .job-cta {
      background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(0,167,93,0.3);
      text-decoration: none;
    }
    .job-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(0,167,93,0.4);
      color: white !important;
    }
    .job-tags { 
      display: flex; 
      gap: 8px; 
      flex-wrap: wrap; 
    }
    .job-tag {
      background: rgba(0,167,93,0.08);
      color: var(--primary-green);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
    }

    /* CARD PRÓXIMAMENTE */
    .coming-soon-card {
      border: 2px dashed rgba(0,167,93,0.3) !important;
      text-align: center;
      /* Centrado horizontal */
      margin: 50px auto;
      padding: 10px;
      max-width: 650px;
      width: 100%;
    }

    .coming-soon-card .job-image-wrapper {
      height: 140px !important;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .coming-soon-card .job-title {
      color: #6c757d !important;
    }

    /* INSTRUCCIONES CARD */
    .instructions-section {
      padding: 80px 0 100px;
      background: var(--light-bg);
    }
    .instructions-card {
      background: var(--white-glass);
      backdrop-filter: blur(25px);
      border-radius: 24px;
      padding: 40px;
      box-shadow: 0 20px 60px var(--shadow-light);
      border: 1px solid rgba(0,167,93,0.15);
      position: relative;
      overflow: hidden;
    }
    .instructions-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 4px;
      width: 100%;
      background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
    }
    .instructions-step {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 24px;
    }
    .step-number {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .instruction-email {
      background: linear-gradient(135deg, rgba(0,167,93,0.08), rgba(0,123,255,0.08));
      border: 2px solid var(--primary-green);
      padding: 14px 20px;
      border-radius: 16px;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--primary-green);
      display: block;
      margin: 16px 0;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .instruction-email:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0,167,93,0.2);
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
      .job-grid { 
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); 
        gap: 25px; 
      }
      .hero-section h1, .section-title h2 { font-size: 2.5rem; }
    }
    @media (max-width: 768px) {
      .hero-section { padding: 70px 0 60px; }
      .hero-section h1 { font-size: 2.3rem; }
      .hero-section p { font-size: 1.1rem; }
      .section-title h2 { font-size: 2.1rem; }
      .job-grid { grid-template-columns: 1fr; }
      .job-card { height: 460px; }
      .job-image-wrapper { height: 200px; }
      .instructions-card { padding: 30px 20px; }
      .instructions-step { gap: 15px; }
    }

.coming-soon-icon {
  font-size: 4.5rem;
  color: var(--primary-green);
  opacity: 0.4;
}

.job-tag-update {
  background: rgba(0,123,255,0.1);
  color: var(--accent-blue);
}
