/* ACJ - Landing IT Staffing */

.acj-it-staffing{
  --primary:#5b21b6;
  --primary-dark:#3b0764;
  --secondary:#7c3aed;
  --dark:#111827;
  --text:#374151;
  --muted:#6b7280;
  --light:#f7f5ff;
  --border:#e5e7eb;
  --shadow:0 22px 60px rgba(47,20,88,.14);
  font-family:Inter,Arial,sans-serif;
  color:var(--text);
  line-height:1.6;
  overflow:hidden;
}

.acj-it-staffing *{box-sizing:border-box}
.acj-it-staffing a{text-decoration:none}

.acj-container{
  width:min(1240px,92%);
  margin-left:auto;
  margin-right:auto;
}

.acj-section{
  padding:84px 0;
}

.acj-section-head{
  max-width:820px;
  margin-bottom:42px;
}

.acj-section-head p{
  font-size:1.08rem;
  color:var(--muted);
}

/* HERO */
.acj-hero{
  padding:76px 0 72px;
}

.acj-hero-grid{
  display:grid;
  grid-template-columns:56% 44%;
  gap:52px;
  align-items:center;
}

.acj-tag,
.acj-eyebrow{
  color:var(--primary);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.82rem;
}

.acj-tag{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  background:#ede9fe;
  color:var(--primary-dark);
  margin-bottom:22px;
}

.acj-it-staffing h1{
  color:var(--dark);
  font-size:clamp(3rem,4.15vw,4.45rem);
  line-height:.98;
  letter-spacing:-.055em;
  margin:0 0 24px;
  max-width:720px;
}

.acj-it-staffing h2{
  color:var(--dark);
  font-size:clamp(2rem,3vw,3rem);
  line-height:1.1;
  letter-spacing:-.04em;
  margin:0 0 14px;
}

.acj-it-staffing h3{
  color:var(--dark);
  font-size:1.2rem;
  margin:0 0 10px;
}

.acj-lead{
  font-size:1.12rem;
  color:#4b5563;
  max-width:650px;
  margin-bottom:32px;
}

.acj-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:28px;
}

.acj-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  transition:.25s ease;
}

.acj-btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:#fff!important;
  box-shadow:0 16px 34px rgba(91,33,182,.28);
}

.acj-btn-primary:hover{
  transform:translateY(-2px);
  color:#fff!important;
}

.acj-btn-secondary{
  background:#fff;
  color:var(--primary)!important;
  border:1px solid #ddd6fe;
}

.acj-proof{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  color:var(--muted);
  font-size:.9rem;
  font-weight:700;
}

.acj-hero-card{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#ddd6fe;
  min-height:420px;
  margin:0;
}

.acj-hero-card img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
}

.acj-floating-card{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  border-radius:22px;
  padding:22px;
  box-shadow:0 18px 34px rgba(17,24,39,.16);
}

.acj-floating-card strong{
  display:block;
  color:var(--dark);
  margin-bottom:6px;
}

/* BENEFICIOS */
.acj-cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.acj-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  padding:30px;
  min-height:250px;
  box-shadow:0 12px 28px rgba(17,24,39,.05);
  transition:.25s ease;
}

.acj-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.acj-card:before{
  font-family:'Material Symbols Rounded';
  display:grid;
  place-items:center;
  width:58px;
  height:58px;
  border-radius:18px;
  background:#ede9fe;
  color:#5b21b6;
  font-size:34px;
  margin-bottom:22px;
}

.acj-card:nth-child(1):before{content:"bolt";}
.acj-card:nth-child(2):before{content:"tune";}
.acj-card:nth-child(3):before{content:"trending_up";}
.acj-card:nth-child(4):before{content:"shield";}
.acj-card:nth-child(5):before{content:"savings";}
.acj-card:nth-child(6):before{content:"handshake";}

.acj-card p,
.acj-step p,
.acj-bullet p{
  color:var(--muted);
}

/* PROCESO */
.acj-process{
  padding:84px 0;
}

.acj-steps{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
  counter-reset:step;
}

.acj-step{
  background:#fff;
  border:1px solid #ddd6fe;
  border-radius:26px;
  padding:26px;
}

.acj-step:before{
  counter-increment:step;
  content:"0" counter(step);
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:var(--primary);
  color:#fff;
  font-weight:900;
  margin-bottom:18px;
}

/* PERFILES */
.acj-profile-groups{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.acj-profile-group{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:26px;
  padding:28px;
  box-shadow:0 12px 28px rgba(17,24,39,.04);
}

.acj-profile-group p{
  color:#6b7280;
  margin:0 0 18px;
  line-height:1.6;
}

.acj-profile-group div{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.acj-profile-group span{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  background:#ede9fe;
  color:#5b21b6;
  font-weight:800;
  font-size:.88rem;
  padding:8px 12px;
}

.acj-profiles-note{
  margin-top:24px;
  padding:24px 28px;
  border-radius:26px;
  background:linear-gradient(135deg,#3b0764,#5b21b6);
  color:#fff;
}

.acj-profiles-note strong{
  display:block;
  font-size:1.15rem;
  margin-bottom:6px;
}

.acj-profiles-note p{
  margin:0;
  color:#fff;
  opacity:.9;
}

/* CONFIANZA */
.acj-trust-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:42px;
  align-items:center;
}

.acj-trust-box{
  background:linear-gradient(135deg,#111827 0%,#312e81 55%,#6d28d9 100%);
  color:#fff;
  border-radius:32px;
  padding:42px;
}

.acj-trust-box h2,
.acj-trust-box p{
  color:#fff;
}

.acj-bullets{
  display:grid;
  gap:16px;
}

.acj-bullet{
  padding:22px;
  border:1px solid var(--border);
  border-radius:20px;
  background:#fff;
}

/* FAQ */
.acj-faq-head{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.acj-faq-list{
  max-width:900px;
  margin:0 auto;
  display:grid;
  gap:16px;
}

.acj-faq-item{
  background:#fff;
  border:1px solid #ddd6fe;
  border-radius:22px;
  padding:0;
  box-shadow:0 12px 28px rgba(17,24,39,.04);
  overflow:hidden;
}

.acj-faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:24px 58px 24px 28px;
  font-weight:800;
  color:#111827;
  font-size:1.08rem;
  position:relative;
}

.acj-faq-item summary::-webkit-details-marker{
  display:none;
}

.acj-faq-item summary:after{
  content:"+";
  position:absolute;
  right:28px;
  top:50%;
  transform:translateY(-50%);
  font-size:1.5rem;
  color:#5b21b6;
  font-weight:900;
}

.acj-faq-item[open] summary:after{
  content:"–";
}

.acj-faq-item p{
  padding:0 28px 24px;
  margin:0;
  color:#6b7280;
  font-size:1rem;
  line-height:1.7;
}

/* CTA */
.acj-cta{
  padding:76px 0;
}

.acj-cta-box{
  text-align:center;
  max-width:850px;
  margin:auto;
  background:#fff;
  border:1px solid #ddd6fe;
  border-radius:36px;
  padding:52px;
  box-shadow:var(--shadow);
}

.acj-cta-box p{
  color:var(--muted);
  font-size:1.1rem;
  margin:10px auto 28px;
  max-width:650px;
}

.acj-contact-line{
  margin-top:18px!important;
  color:var(--muted);
  font-weight:700;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .acj-hero-grid{
    grid-template-columns:1fr;
    gap:38px;
  }

  .acj-it-staffing h1{
    max-width:850px;
  }

  .acj-hero-card,
  .acj-hero-card img{
    min-height:420px;
    height:420px;
  }
}

@media(max-width:980px){
  .acj-trust-grid{
    grid-template-columns:1fr;
  }

  .acj-cards,
  .acj-steps{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:760px){
  .acj-profile-groups{
    grid-template-columns:1fr;
  }
}

@media(max-width:680px){
  .acj-section{
    padding:60px 0;
  }

  .acj-hero{
    padding:56px 0 60px;
  }

  .acj-cards,
  .acj-steps,
  .acj-profile-groups{
    grid-template-columns:1fr;
  }

  .acj-it-staffing h1{
    font-size:clamp(2.5rem,11vw,3.8rem);
    letter-spacing:-.045em;
  }

  .acj-lead{
    font-size:1.05rem;
  }

  .acj-actions .acj-btn{
    width:100%;
  }

  .acj-card,
  .acj-profile-group,
  .acj-step{
    padding:24px;
  }

  .acj-hero-card,
  .acj-hero-card img{
    min-height:340px;
    height:340px;
  }

  .acj-floating-card{
    left:16px;
    right:16px;
    bottom:16px;
    padding:18px;
  }

  .acj-cta-box{
    padding:34px 24px;
    border-radius:28px;
  }

  .acj-faq-item summary{
    padding:20px 52px 20px 22px;
    font-size:1rem;
  }

  .acj-faq-item summary:after{
    right:22px;
  }

  .acj-faq-item p{
    padding:0 22px 22px;
  }
}

/* ACJ - Advisor perfiles TI */

.acj-profile-advisor{
  margin-top:28px;
  padding:34px;
  border-radius:30px;
  background:linear-gradient(135deg,#3b0764,#5b21b6 58%,#7c3aed);
  color:#fff;
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
  box-shadow:0 24px 60px rgba(91,33,182,.22);
}

.acj-profile-advisor h3{
  color:#fff;
  font-size:1.8rem;
  margin:6px 0 10px;
}

.acj-profile-advisor p{
  color:rgba(255,255,255,.86);
  margin:0;
  max-width:720px;
}

.acj-profile-advisor .acj-eyebrow{
  color:#ddd6fe;
}

.acj-advisor-open{
  border:0;
  border-radius:999px;
  padding:18px 36px;
  background:#fff;
  color:#5b21b6;
  font-weight:900;
  cursor:pointer;
  white-space:nowrap;
  font-size: 18px;
  min-width:260px;
}

.acj-advisor-panel{
  margin-top:18px;
  background:#fff;
  border:1px solid #ddd6fe;
  border-radius:28px;
  padding:28px;
  box-shadow:0 18px 44px rgba(17,24,39,.08);
}

.acj-advisor-step{
  display:none;
}

.acj-advisor-step.is-active{
  display:grid;
  gap:12px;
}

.acj-advisor-step h4,
.acj-advisor-result h4{
  font-size:1.35rem;
  color:#111827;
  margin:0 0 12px;
}

.acj-advisor-step label{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border:1px solid #e5e7eb;
  border-radius:16px;
  color:#374151;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
}

.acj-advisor-step label:hover{
  border-color:#c4b5fd;
  background:#f7f5ff;
}

.acj-advisor-step input[type="radio"]{
  accent-color:#5b21b6;
}

.acj-advisor-email,
.acj-advisor-message{
  width:100%;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:15px 16px;
  font-size:1rem;
  font-family:inherit;
}

.acj-advisor-message{
  min-height:110px;
  resize:vertical;
}

.acj-advisor-actions{
  margin-top:22px;
  display:flex;
  justify-content:space-between;
  gap:12px;
}

.acj-advisor-prev,
.acj-advisor-next{
  border:0;
  border-radius:999px;
  padding:13px 20px;
  font-weight:900;
  cursor:pointer;
}

.acj-advisor-prev{
  background:#f3f4f6;
  color:#374151;
}

.acj-advisor-next{
  background:#5b21b6;
  color:#fff;
}

.acj-advisor-result{
  background:#f7f5ff;
  border:1px solid #ddd6fe;
  border-radius:22px;
  padding:24px;
}

.acj-advisor-summary{
  color:#4b5563;
  margin-bottom:20px;
}

@media(max-width:760px){
  .acj-profile-advisor{
    grid-template-columns:1fr;
    padding:28px 24px;
  }

  .acj-advisor-open{
    width:100%;
  }

  .acj-advisor-panel{
    padding:22px;
  }

  .acj-advisor-actions{
    flex-direction:column;
  }

  .acj-advisor-prev,
  .acj-advisor-next{
    width:100%;
  }
}

/* ACJ Floating Help Widget */

.acj-help-widget{
  position:fixed;
  right:28px;
  bottom:28px;
  z-index:999999;
  font-family:Inter,Arial,sans-serif;
}

.acj-help-toggle{
  width:68px;
  height:68px;
  border:0;
  border-radius:50%;
  background:linear-gradient(135deg,#5b21b6,#7c3aed);
  color:#fff;
  box-shadow:0 18px 40px rgba(91,33,182,.35);
  cursor:pointer;
  display:grid;
  place-items:center;
}

.acj-help-toggle span{
  font-family:'Material Symbols Rounded';
  font-size:34px;
  color:#fff;
}

.acj-help-panel{
  position:absolute;
  right:0;
  bottom:86px;
  width:390px;
  background:#fff;
  border-radius:30px;
  padding:28px;
  box-shadow:0 28px 80px rgba(17,24,39,.22);
  border:1px solid #ede9fe;
}

.acj-help-panel[hidden]{
  display:none;
}

.acj-help-panel h3{
  margin:0 0 20px;
  color:#111827;
  font-size:1.45rem;
  line-height:1.2;
}

.acj-help-option{
  display:flex;
  gap:16px;
  align-items:center;
  padding:16px 0;
  border-bottom:1px solid #e5e7eb;
  color:#111827;
  text-decoration:none;
}

.acj-help-option > span{
  font-family:'Material Symbols Rounded';
  width:50px;
  height:50px;
  border-radius:16px;
  background:#ede9fe;
  color:#5b21b6;
  display:grid;
  place-items:center;
  font-size:28px;
  flex-shrink:0;
}

.acj-help-option strong{
  display:block;
  color:#3b0764;
  font-size:1rem;
  margin-bottom:3px;
}

.acj-help-option p{
  margin:0;
  color:#6b7280;
  font-size:.9rem;
  line-height:1.35;
}

.acj-help-whatsapp{
  margin-top:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  padding:16px 18px;
  border-radius:999px;
  background:#25D366;
  color:#fff;
  font-weight:900;
  text-decoration:none;
}

@media(max-width:768px){
  .acj-help-widget{
    right:18px;
    bottom:18px;
  }

  .acj-help-panel{
    width:calc(100vw - 36px);
    max-width:380px;
    right:0;
    bottom:84px;
  }
}



/* Mobile Floating Fix */

@media (max-width:768px){

  .acj-help-widget{

    position:fixed !important;

    right:18px !important;

    bottom:18px !important;

    z-index:999999 !important;

  }

  .acj-help-panel{

    width:calc(100vw - 36px);

    max-width:380px;

    right:0;

    bottom:84px;

  }

}

.acj-advisor-name,
.acj-advisor-company,
.acj-advisor-email,
.acj-advisor-phone{
    width:100%;
    height:58px;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:0 18px;
    font-size:16px;
    color:#111827;
    background:#fff;
    transition:.25s ease;
    margin-bottom:14px;
}

.acj-advisor-name:focus,
.acj-advisor-company:focus,
.acj-advisor-email:focus,
.acj-advisor-phone:focus{
    outline:none;
    border-color:#7c3aed;
    box-shadow:0 0 0 4px rgba(124,58,237,.12);
}

.acj-advisor-name::placeholder,
.acj-advisor-company::placeholder,
.acj-advisor-email::placeholder,
.acj-advisor-phone::placeholder{
    color:#9ca3af;
}


.acj-video-widget{
  position:fixed!important;
  left:28px!important;
  bottom:28px!important;
  z-index:999999!important;
}

.acj-video-toggle{
  width:68px!important;
  height:68px!important;
  border:0!important;
  border-radius:50%!important;
  background:linear-gradient(135deg,#ec1e8d,#7c3aed)!important;
  color:#fff!important;
  font-size:28px!important;
  cursor:pointer!important;
  box-shadow:0 18px 40px rgba(91,33,182,.35)!important;
}

.acj-video-panel{
  position:absolute!important;
  left:0!important;
  bottom:86px!important;
  width:360px!important;
  height:640px!important;
  background:#111827!important;
  border-radius:28px!important;
  overflow:hidden!important;
  box-shadow:0 28px 80px rgba(17,24,39,.28)!important;
}

.acj-video-panel[hidden]{
  display:none!important;
}

.acj-video-player{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  display:block!important;
}

.acj-video-close{
  position:absolute!important;
  top:14px!important;
  right:14px!important;
  z-index:2!important;
  width:38px!important;
  height:38px!important;
  border:0!important;
  border-radius:50%!important;
  background:rgba(17,24,39,.8)!important;
  color:#fff!important;
  font-size:28px!important;
  cursor:pointer!important;
}

@media(max-width:640px){
  .acj-video-widget{
    left:18px!important;
    bottom:18px!important;
  }

  .acj-video-panel{
    width:calc(100vw - 36px)!important;
    height:70vh!important;
  }
}

/* Cards diferenciadoras */

.acj-card-featured{
  position:relative;
  background:linear-gradient(
  135deg,
  #faf7ff,
  #f3edff
  );
  border:2px solid #7c3aed;
  box-shadow:
  0 20px 40px rgba(124,58,237,.12);
}

.acj-card-featured:hover{
  transform:translateY(-6px);

  box-shadow:
  0 28px 60px rgba(124,58,237,.18);
}

.acj-card-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 12px;
  margin-bottom:14px;
  border-radius:999px;
  background:#5b21b6;
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
}
/* Cambios INPUT en other profile*/
.acj-other-profile-row{
  display:flex;
  align-items:center;
  gap:12px;
  width:100%;
}

.acj-other-profile-input{
  width:280px;
  height:40px;
  margin-left:auto;
  border:1px solid #ddd6fe;
  border-radius:10px;
  padding:0 12px;
  font-size:14px;
  background:#fff;
}

@media(max-width:680px){

  .acj-other-profile-row{
    display:grid;
    grid-template-columns:auto 1fr;
    gap:10px 12px;
  }

  .acj-other-profile-input{
    grid-column:2;
    width:100%;
    max-width:100%;
    margin:0;
  }

}