.bannerSection {
  background: linear-gradient(135deg, #012c50 0%, #0f64c7 100%);
  color: #fff;
  padding: 80px 20px;
}

.bannerSection .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}

.bannerSection .content {
  padding: 0 20px;
}

.bannerSection .image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}


.bannerSection {
  padding: 80px 20px; /* ya lo tienes */
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.bannerSection > * {
  margin-bottom: 0; /* asegura que nada agregue espacio raro */
}

.bannerSection .image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: block;
}

.bannerSection .content {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px; /* mismo padding lateral */
}

.bannerSection h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  
}
.bannerSection h1 span {
  color: #4fa3ff;
}
.bannerSection .lead {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);

}
.bannerSection .ctas {
  display: flex;
  gap: 16px;
}
.bannerSection .image {
  flex: 1;
}
.bannerSection .image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}


/* Sections */
.section {
  padding: 80px 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.section:nth-child(even) {
  background: #f5f7fa;
}
.section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #012c50;
}
.section p {
  font-size: 16px;
  color: #6b7a8a;
  margin-bottom: 16px;
}

/* Values Grid */
.values-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.values-list li {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 102px 149px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.values-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.1);
}
.values-list strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: #0f64c7;
}

.job-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  display: grid;
  gap: 14px;
}
.job-list li {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.job-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}
.job-list li strong {
  color: #0f64c7;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn.primary {
  background: #0f64c7;
  color: #fff;
  border: none;
}
.btn.primary:hover {
  background: #0a4ea3;
}
.btn.secondary {
    border: 2px solid #0f64c7;
    background: transparent;
    color: #0f64c7;
}
.btn.secondary:hover {
  background: #0f64c7;
  color: #ffffff;
} 

.btn.secondary-send {
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
}
.btn.secondary-send:hover {
  background: #0f64c7;
  color: #ffffff;
} 

.btn.ghost {
  border: 2px solid #0f64c7;
  background: transparent;
  color: #0f64c7;
}
.btn.ghost:hover {
 background: #0f64c7;
  color: #ffffff;
}
.note {
  font-size: 14px;
  color: #6b7a8a;
  margin-top: 12px;
}

.join .ctas {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.email-modal{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;z-index:10000}
.email-modal__backdrop{position:absolute;inset:0;background:rgba(0,0,0,.4)}
.email-modal__panel{position:relative;background:#fff;padding:20px;border-radius:10px;max-width:460px;width:92%;box-shadow:0 18px 50px rgba(2,6,23,.45);color:#001533}
.email-modal__close{position:absolute;right:12px;top:8px;border:0;background:transparent;font-size:22px;cursor:pointer}
.email-modal h3{margin:0 0 8px;font-size:18px}
.email-modal p{margin:6px 0}

.contactSection-career {
   width: 100%;
   background: url("../images/contact_background_ui_medical_marketing.jpg") center / cover;
}
.containContent-career {
    margin: 0 auto;
    width: 60vw;
    padding: 6vw;
}


.contactSection > *:last-child {
  margin-bottom: 0; 
}
#text {

  height: 120px;
  resize: vertical;
  margin: 20px auto;        
  display: block;
  padding: 10px;            
  box-sizing: border-box;  
}


.upload-label {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0f64c7;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.upload-label:hover {
  background-color: #094a93;
}

button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #012c50;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}
input[type="number"],
input[type="text"],
input[type="email"],
textarea {
  border: 1px solid #ccc;
  background: #fff;
  outline: none;            
border-radius: 6px !important;
  padding: 10px;
  font-size: 14px;
  width: 100%;              
  box-sizing: border-box;
}

input[type="number"]:focus{
  border: 1px solid #0077cc; 
  box-shadow: 0 0 5px rgba(0, 119, 204, 0.5);
}
input[type="text"]:focus{
  border: 1px solid #0077cc; 
  box-shadow: 0 0 5px rgba(0, 119, 204, 0.5);
}
input[type="email"]:focus{
  border: 1px solid #0077cc; 
  box-shadow: 0 0 5px rgba(0, 119, 204, 0.5);
}
textarea:focus {
  border: 1px solid #0077cc; 
  box-shadow: 0 0 5px rgba(0, 119, 204, 0.5);
}

.pdf-instruction {
  font-size: 16px;
  color: #012c50;   /* azul corporativo */
  margin-bottom: 8px;
  font-weight: 500;
}
.pdf-instruction {
  font-size: 16px;
  font-weight: 500;
  color: #012c50; /* azul serio */
  margin-bottom: 8px;
}

#pdf {
  display: none; /* ocultamos el input feo */
}

.pdf-label {
  display: inline-block;
  padding: 10px 18px;
  background: #f5f7fa;
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pdf-label:hover {
  background: #e8eef6;
  border-color: #012c50;
  color: #012c50;
}

.pdf-label:active {
  background: #dbe5f2;
}

#pdf {
  padding: 8px;
  font-size: 15px;
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  background: #f5f7fa;
  cursor: pointer;
}

#pdf:hover {
  border-color: #012c50;
}

.pdf-label {
  display: inline-block;
  padding: 10px 18px;
  background: #f5f7fa;
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
      margin-bottom: 1vw;
}

.pdf-label:hover {
  background: #e8eef6;
  border-color: #012c50;
  color: #012c50;
}

.pdf-label:active {
  background: #dbe5f2;
}

@media (max-width: 900px) {
  .bannerSection {
    padding: 60px 16px;
    text-align: center;
  }
  .bannerSection h1 {
    font-size: 28px;
  }
  .bannerSection .lead {
    font-size: 16px;
  }
  .bannerSection .ctas {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .values-list {
    grid-template-columns: 1fr;
  }
  .job-list {
    grid-template-columns: 1fr;
  }
  .formContain .bodyForm .row:first-child, .formContain .bodyForm .row:nth-child(2) {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;}

    .containContent-career {
    margin: 0 auto;
    width: 100vw;
    padding: 6vw;
}

.bannerSection .inner {
  display: grid;
  grid-template-columns: 1fr;

}
.captcha-container {
  width: 100%;
  max-width: 304px; /* ancho máximo del captcha */
  overflow: hidden;
}

.captcha-container .g-recaptcha {
  transform: scale(calc(100% / 1.3));
  transform-origin: 0 0;
}}