
/* =========================================================
   JobsZone v2.2 - Diseño premium estilo Indeed / marketplace
   ========================================================= */

:root{
  --jz-blue:#2557a7;
  --jz-blue-700:#164081;
  --jz-blue-soft:#eef4ff;
  --jz-navy:#0f172a;
  --jz-text:#1f2937;
  --jz-muted:#64748b;
  --jz-line:#dbe3ef;
  --jz-line-2:#e8eef7;
  --jz-bg:#f5f7fb;
  --jz-card:#ffffff;
  --jz-green:#0f8f5f;
  --jz-orange:#b45309;
  --jz-red:#b91c1c;
  --jz-gold:#f59e0b;
  --jz-radius:18px;
  --jz-radius-lg:26px;
  --jz-shadow:0 18px 45px rgba(15,23,42,.08);
  --jz-shadow-soft:0 8px 22px rgba(15,23,42,.06);
  --jz-font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body.premium-ui,body{
  margin:0;
  font-family:var(--jz-font);
  color:var(--jz-text);
  background:
    radial-gradient(circle at 20% -10%, rgba(37,87,167,.12), transparent 35%),
    radial-gradient(circle at 90% 0%, rgba(15,143,95,.10), transparent 30%),
    var(--jz-bg);
  min-height:100vh;
}

a{color:var(--jz-blue);text-decoration:none}
a:hover{text-decoration:underline}
hr{border:0;border-top:1px solid var(--jz-line);margin:22px 0}

.header,.navbar,header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--jz-line-2);
  box-shadow:0 6px 20px rgba(15,23,42,.04);
}

.nav,.nav-inner{
  max-width:1180px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 20px;
}

.logo,.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  color:var(--jz-navy);
  letter-spacing:-.03em;
  font-size:24px;
}

.logo::before,.brand::before{
  content:"JZ";
  display:inline-grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--jz-blue),#4f8cff);
  color:#fff;
  font-size:14px;
  letter-spacing:.02em;
  box-shadow:0 10px 22px rgba(37,87,167,.25);
}

.menu,#menu{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
}

.menu a,#menu a,nav a{
  padding:10px 12px;
  color:#334155;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
}

.menu a:hover,#menu a:hover,nav a:hover{
  background:var(--jz-blue-soft);
  color:var(--jz-blue);
  text-decoration:none;
}

.container{
  max-width:1180px;
  margin:0 auto;
  padding:28px 20px 50px;
}

.hero{
  position:relative;
  overflow:hidden;
  border-radius:var(--jz-radius-lg);
  background:
    linear-gradient(135deg,#ffffff 0%,#f7fbff 52%,#eef5ff 100%);
  border:1px solid var(--jz-line-2);
  box-shadow:var(--jz-shadow);
  padding:38px;
  margin-bottom:26px;
}

.hero::after{
  content:"";
  position:absolute;
  right:-110px;
  top:-110px;
  width:260px;
  height:260px;
  border-radius:50%;
  background:rgba(37,87,167,.12);
}

.hero h1{
  margin:0;
  max-width:760px;
  font-size:clamp(34px,5vw,58px);
  line-height:1.02;
  letter-spacing:-.055em;
  color:var(--jz-navy);
}

.hero p{
  max-width:760px;
  color:var(--jz-muted);
  font-size:18px;
  line-height:1.65;
}

.hero-pro{
  display:grid;
  grid-template-columns:1fr 290px;
  gap:26px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#eaf2ff;
  color:var(--jz-blue);
  border:1px solid #cfe0ff;
  font-weight:900;
  border-radius:999px;
  padding:8px 13px;
  margin-bottom:14px;
  font-size:13px;
}

.hero-card{
  position:relative;
  z-index:2;
  background:#fff;
  border:1px solid var(--jz-line);
  border-radius:22px;
  padding:20px;
  box-shadow:var(--jz-shadow-soft);
}

.hero-card b{
  display:block;
  color:var(--jz-navy);
  font-size:18px;
  margin-bottom:10px;
}

.hero-card a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:11px 0;
  border-bottom:1px solid var(--jz-line-2);
  font-weight:800;
}
.hero-card a::after{content:"→"}
.hero-card a:last-child{border-bottom:0}

.searchbox{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr auto;
  gap:12px;
  align-items:center;
  margin-top:22px;
  background:#fff;
  border:1px solid var(--jz-line);
  border-radius:20px;
  padding:12px;
  box-shadow:var(--jz-shadow-soft);
}
.searchbox.full{grid-column:1/-1}

input,select,textarea{
  width:100%;
  border:1px solid var(--jz-line);
  border-radius:14px;
  padding:13px 14px;
  background:#fff;
  color:var(--jz-text);
  font-size:15px;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

select{
  appearance:none;
  background-image:
    linear-gradient(45deg,transparent 50%,#64748b 50%),
    linear-gradient(135deg,#64748b 50%,transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size:5px 5px,5px 5px;
  background-repeat:no-repeat;
  padding-right:38px;
}

textarea{
  min-height:128px;
  resize:vertical;
  line-height:1.55;
}

input:focus,select:focus,textarea:focus{
  border-color:var(--jz-blue);
  box-shadow:0 0 0 4px rgba(37,87,167,.13);
  background:#fff;
}

input::placeholder,textarea::placeholder{color:#94a3b8}

label{
  display:block;
  font-weight:900;
  color:#334155;
  margin:12px 0 6px;
  font-size:13px;
}

.btn,button,.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:0;
  border-radius:999px;
  background:var(--jz-blue);
  color:#fff;
  min-height:44px;
  padding:11px 18px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(37,87,167,.18);
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease;
  text-decoration:none;
  white-space:nowrap;
}

.btn:hover,button:hover,.button:hover{
  transform:translateY(-1px);
  background:var(--jz-blue-700);
  box-shadow:0 14px 26px rgba(37,87,167,.24);
  text-decoration:none;
}

.btn.secondary,.btn.light{
  background:#eef4ff;
  color:var(--jz-blue);
  box-shadow:none;
  border:1px solid #cfe0ff;
}

.btn.secondary:hover,.btn.light:hover{
  background:#dfeaff;
  color:var(--jz-blue-700);
}

.btn.warning{
  background:#fff7ed;
  color:var(--jz-orange);
  border:1px solid #fed7aa;
  box-shadow:none;
}

.btn.danger{
  background:#fee2e2;
  color:var(--jz-red);
  border:1px solid #fecaca;
  box-shadow:none;
}

.btn.ghost{
  background:#fff;
  color:#334155;
  border:1px solid var(--jz-line);
  box-shadow:none;
}

.btn.gold-btn{
  background:#fff7d6;
  color:#92400e;
  border:1px solid #f7d37b;
  box-shadow:none;
}

.card,.panel,.filters,.job-card,.table-card,.detail-card{
  background:var(--jz-card);
  border:1px solid var(--jz-line-2);
  border-radius:var(--jz-radius);
  box-shadow:var(--jz-shadow-soft);
}

.card{
  padding:24px;
  margin-bottom:20px;
}

.card h1,.card h2,.panel h3,.filters h3{
  margin-top:0;
  color:var(--jz-navy);
  letter-spacing:-.03em;
}

.card p,.panel p,.filters p{color:var(--jz-muted);line-height:1.6}

.form-grid,.form-grid-premium{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:15px;
  margin:16px 0;
}

.form-grid-premium input,
.form-grid-premium select{
  min-height:50px;
}

.form-note,.notice{
  border:1px solid #cfe0ff;
  background:linear-gradient(135deg,#eef4ff,#fff);
  color:#31537f;
  border-radius:16px;
  padding:14px 16px;
  line-height:1.55;
  margin:14px 0;
}

.notice b{color:var(--jz-navy)}

.grid{
  display:grid;
  grid-template-columns:310px 1fr;
  gap:24px;
  align-items:start;
}

.filters{
  position:sticky;
  top:86px;
  padding:20px;
}

.filters select,.filters input{
  min-height:46px;
}

.section-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin:10px 0 18px;
}

.section-title h1,.section-title h2{
  margin:0;
}

#count{
  color:var(--jz-muted);
  font-weight:800;
}

.job-card{
  padding:22px;
  margin-bottom:16px;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.job-card:hover{
  transform:translateY(-2px);
  border-color:#cfe0ff;
  box-shadow:var(--jz-shadow);
}

.job-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
}

.job-card h2{
  margin:0 0 7px;
  color:var(--jz-blue);
  font-size:22px;
  letter-spacing:-.025em;
}

.job-card b{
  color:#334155;
}

.meta{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin:14px 0;
}

.meta span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#475569;
  background:#f8fafc;
  border:1px solid var(--jz-line-2);
  border-radius:999px;
  padding:7px 10px;
  font-size:13px;
  font-weight:700;
}

.badges,.actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:12px 0;
}

.badge{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:7px 10px;
  background:#f1f5f9;
  color:#475569;
  font-weight:900;
  font-size:12px;
}

.badge.green{background:#dcfce7;color:#166534}
.badge.orange{background:#ffedd5;color:#9a3412}
.badge.red{background:#fee2e2;color:#991b1b}
.badge.gold{background:#fef3c7;color:#92400e}

.stats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.stat{
  background:linear-gradient(180deg,#fff,#f8fbff);
  border:1px solid var(--jz-line-2);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--jz-shadow-soft);
}

.stat span{
  color:var(--jz-muted);
  font-weight:900;
  font-size:13px;
}

.stat strong{
  display:block;
  color:var(--jz-navy);
  font-size:32px;
  letter-spacing:-.04em;
  margin:6px 0;
}

.stat small{
  color:#64748b;
  font-weight:700;
}

.category-row{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

.category{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:70px;
  background:#fff;
  border:1px solid var(--jz-line-2);
  border-radius:18px;
  padding:16px;
  cursor:pointer;
  font-weight:900;
  color:var(--jz-navy);
  box-shadow:var(--jz-shadow-soft);
  transition:transform .16s ease,border-color .16s ease,background .16s ease;
}

.category:hover{
  transform:translateY(-2px);
  border-color:#cfe0ff;
  background:#f8fbff;
}

.category span{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:12px;
  background:var(--jz-blue-soft);
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:14px;
  max-height:240px;
  overflow:auto;
  padding:4px;
}

.chip{
  border:1px solid #cfe0ff;
  background:#f8fbff;
  color:var(--jz-blue);
  border-radius:999px;
  padding:9px 12px;
  font-weight:900;
  cursor:pointer;
}

.chip:hover{
  background:#eaf2ff;
}

.detail-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:24px;
  align-items:start;
}

.detail-card h1{
  margin:0 0 8px;
  font-size:34px;
  letter-spacing:-.04em;
  color:var(--jz-navy);
}

.tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.tab{
  background:#f8fafc;
  color:#475569;
  border:1px solid var(--jz-line);
  box-shadow:none;
  min-height:38px;
}

.panel{
  position:sticky;
  top:86px;
  padding:22px;
}

.ad{
  border:1px dashed #cbd5e1;
  background:#fff;
  color:#64748b;
  border-radius:18px;
  padding:18px;
  margin:18px 0;
  text-align:center;
  font-weight:900;
}

.ad small{
  display:block;
  font-weight:700;
  margin-top:6px;
}

.row{
  display:grid;
  grid-template-columns:70px 1.3fr 1.1fr 1.1fr 110px 280px;
  gap:12px;
  align-items:center;
  padding:13px 0;
  border-bottom:1px solid var(--jz-line-2);
}

.row.header{
  color:#475569;
  font-weight:900;
  background:#f8fafc;
  border-radius:12px;
  padding:12px;
  border:0;
  margin-bottom:5px;
}

.table-card{
  overflow:auto;
}

.edit-panel{
  background:#f8fbff;
  border:1px dashed #cfe0ff;
  border-radius:22px;
  padding:22px;
  margin:20px 0;
  box-shadow:var(--jz-shadow-soft);
  display:none;
}

.alert-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  background:linear-gradient(135deg,#ffffff,#eef4ff);
}

.company-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.company-card{
  display:block;
  background:#fff;
  border:1px solid var(--jz-line-2);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--jz-shadow-soft);
}

.company-card b{
  display:block;
  color:var(--jz-navy);
  font-size:18px;
  margin-bottom:8px;
}

.company-card span{
  color:var(--jz-muted);
  font-weight:700;
}

.seo-item{
  display:flex;
  justify-content:space-between;
  border-bottom:1px solid var(--jz-line-2);
  padding:12px 0;
  color:var(--jz-blue);
  font-weight:900;
}

.two-cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.mini-row{
  display:grid;
  grid-template-columns:1.2fr 1fr auto;
  gap:10px;
  border-bottom:1px solid var(--jz-line-2);
  padding:10px 0;
  align-items:center;
}

.footer,footer{
  background:#0f172a;
  color:#cbd5e1;
  padding:26px 20px;
  margin-top:40px;
}

.footer a,footer a{
  color:#bfdbfe;
  font-weight:800;
}

.mini{
  font-size:13px;
  color:var(--jz-muted);
}

input[type=file]{
  background:#f8fafc;
  border-style:dashed;
}

@media(max-width:980px){
  .hero-pro,.grid,.detail-layout{
    grid-template-columns:1fr;
  }
  .filters,.panel{
    position:static;
  }
  .stats{
    grid-template-columns:repeat(2,1fr);
  }
  .category-row,.company-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .searchbox{
    grid-template-columns:1fr;
  }
}

@media(max-width:720px){
  .container{
    padding:18px 14px 38px;
  }
  .hero{
    padding:24px;
    border-radius:22px;
  }
  .form-grid,.form-grid-premium,.two-cols{
    grid-template-columns:1fr;
  }
  .stats,.category-row,.company-grid{
    grid-template-columns:1fr;
  }
  .job-head,.section-title,.alert-cta{
    display:block;
  }
  .row,.row.app,.user-row,.report-row,.msg-row,.alert-row,.verify-row{
    display:block;
    padding:14px;
    margin-bottom:10px;
    border:1px solid var(--jz-line-2);
    border-radius:14px;
  }
  .row span{
    display:block;
    margin:4px 0;
  }
  .actions{
    margin-top:12px;
  }
  .btn,button{
    width:100%;
    margin-bottom:6px;
  }
  .menu,#menu{
    gap:4px;
  }
  .menu a,#menu a,nav a{
    font-size:13px;
    padding:8px 9px;
  }
}

/* =========================================================
   JobsZone v2.3 - Corrección visual tipo Indeed
   ========================================================= */

body{
  background:#f3f6fb !important;
}

.container.home-container{
  max-width:1240px;
}

.header,.navbar,header{
  height:auto;
  background:#fff !important;
  border-bottom:1px solid #e5e7eb !important;
}

.nav,.nav-inner,header > div{
  max-width:100% !important;
  padding:16px 28px !important;
}

.logo,.brand{
  font-size:26px !important;
}

.menu a,#menu a,nav a{
  color:#0f172a !important;
  font-size:15px !important;
  font-weight:800 !important;
}

.hero-indeed{
  max-width:1020px;
  margin:34px auto 24px;
  padding:34px 34px 30px !important;
  display:grid;
  grid-template-columns:minmax(0,1fr) 270px;
  gap:24px;
  align-items:center;
  background:linear-gradient(135deg,#ffffff 0%,#f6f9ff 55%,#eef5ff 100%) !important;
  border:1px solid #e3eaf5 !important;
  box-shadow:0 18px 45px rgba(15,23,42,.08) !important;
}

.hero-indeed .hero-copy{
  position:relative;
  z-index:2;
}

.hero-indeed h1{
  font-size:clamp(32px,4.2vw,46px) !important;
  line-height:1.08 !important;
  margin-bottom:14px !important;
}

.hero-indeed p{
  font-size:17px !important;
  line-height:1.55 !important;
  margin-bottom:0 !important;
}

.quick-card{
  width:100%;
  align-self:center;
}

.searchbar-indeed{
  grid-column:1 / -1;
  position:relative;
  z-index:5;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(0,.9fr) 165px;
  gap:0;
  background:#fff;
  border:2px solid #1f2937;
  border-radius:12px;
  box-shadow:0 10px 24px rgba(15,23,42,.08);
  overflow:hidden;
  min-height:62px;
}

.search-field{
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  gap:6px;
  align-items:center;
  padding:8px 16px;
  border-right:1px solid #e5e7eb;
  background:#fff;
}

.search-field label{
  display:block;
  margin:0 0 2px !important;
  color:#334155;
  font-size:12px;
  font-weight:900;
}

.search-field input{
  border:0 !important;
  box-shadow:none !important;
  padding:3px 0 !important;
  min-height:26px;
  font-size:15px;
  border-radius:0 !important;
  background:#fff !important;
}

.search-field input:focus{
  border:0 !important;
  box-shadow:none !important;
}

.field-icon{
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:10px;
  background:#eef4ff;
  color:#2557a7;
  font-size:16px;
}

.search-main-btn{
  border-radius:0 !important;
  min-height:62px !important;
  height:100%;
  width:100%;
  box-shadow:none !important;
  font-size:15px;
}

.home-stats{
  max-width:1020px;
  margin:0 auto 22px !important;
  grid-template-columns:repeat(4,1fr);
}

.categories-card,
.alert-cta,
.jobs-layout{
  max-width:1020px;
  margin-left:auto;
  margin-right:auto;
}

.categories-card{
  padding:28px !important;
}

.categories-card .section-title p,
.results-title p{
  margin:.35rem 0 0;
  color:#64748b;
}

.category-row{
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
}

.category{
  min-height:84px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:8px;
}

.category span{
  width:42px !important;
  height:42px !important;
  font-size:20px;
}

.jobs-layout{
  grid-template-columns:285px minmax(0,1fr) !important;
  gap:22px !important;
}

.premium-filter{
  padding:22px !important;
}

.premium-filter h3{
  margin-bottom:6px !important;
}

.premium-filter p{
  margin-top:0;
  font-size:14px;
}

.premium-filter label{
  margin-top:15px !important;
}

.premium-filter select,
.premium-filter input{
  min-height:46px !important;
  border-radius:12px !important;
  background-color:#fff !important;
}

.filter-btn{
  width:100%;
  margin-top:18px;
}

.job-card{
  border-radius:16px !important;
  padding:24px !important;
  border:1px solid #e2e8f0 !important;
}

.job-card h2{
  font-size:21px !important;
}

.form-section-title{
  margin:20px 0 10px;
  padding-bottom:8px;
  border-bottom:1px solid #e5e7eb;
  color:#0f172a;
  font-weight:900;
  font-size:16px;
}

.form-grid-premium{
  background:#fff;
  border:1px solid #e6edf7;
  border-radius:18px;
  padding:18px;
  box-shadow:0 10px 24px rgba(15,23,42,.04);
}

.form-grid-premium input,
.form-grid-premium select{
  border-radius:12px !important;
  min-height:48px !important;
}

textarea{
  border-radius:14px !important;
}

.card form,
.card .form-grid{
  margin-top:16px;
}

.card input,
.card select,
.card textarea{
  font-size:15px !important;
}

.card input:focus,
.card select:focus,
.card textarea:focus{
  outline:none !important;
  border-color:#2557a7 !important;
  box-shadow:0 0 0 4px rgba(37,87,167,.13) !important;
}

.ad{
  max-width:1020px;
  margin-left:auto !important;
  margin-right:auto !important;
}

@media(max-width:980px){
  .hero-indeed{
    grid-template-columns:1fr;
  }

  .searchbar-indeed{
    grid-template-columns:1fr;
    border-radius:16px;
  }

  .search-field{
    border-right:0;
    border-bottom:1px solid #e5e7eb;
  }

  .search-main-btn{
    border-radius:0 0 14px 14px !important;
  }

  .home-stats{
    grid-template-columns:repeat(2,1fr);
  }

  .jobs-layout{
    grid-template-columns:1fr !important;
  }
}

@media(max-width:720px){
  .nav,.nav-inner,header > div{
    padding:12px 14px !important;
  }

  .hero-indeed{
    margin-top:18px;
    padding:24px 18px !important;
  }

  .home-stats{
    grid-template-columns:1fr;
  }

  .category-row{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }

  .searchbar-indeed{
    border-width:1px;
  }

  .search-field{
    grid-template-columns:34px 1fr;
    padding:10px 12px;
  }
}


/* =========================================================
   JobsZone v2.4 - Indeed exact search style
   ========================================================= */

.hero-indeed-exact{
  gap:28px;
}

.search-shell{
  grid-column:1 / -1;
  position:relative;
}

.ghost-autofill{
  position:absolute !important;
  opacity:0 !important;
  pointer-events:none !important;
  width:1px !important;
  height:1px !important;
  left:-9999px !important;
  top:-9999px !important;
}

.search-shell-indeed{
  margin-top:2px;
}

.exact-searchbar{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) 1px minmax(0,1fr) 160px;
  align-items:center;
  min-height:58px;
  background:#fff;
  border:1px solid #8d9196 !important;
  border-radius:16px !important;
  box-shadow:0 2px 8px rgba(0,0,0,.10);
  overflow:hidden;
  padding:4px;
}

.exact-searchbar .search-segment{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  padding:0 18px;
  height:100%;
  background:#fff;
}

.exact-searchbar .search-segment input{
  width:100%;
  min-width:0;
  border:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  padding:0 !important;
  height:46px;
  line-height:46px;
  font-size:16px;
  color:#1f2937;
}

.exact-searchbar .search-segment input::placeholder{
  color:#6b7280;
}

.exact-searchbar .search-segment input:focus{
  outline:none !important;
  border:0 !important;
  box-shadow:none !important;
}

.exact-icon{
  width:auto !important;
  min-width:20px;
  height:auto !important;
  background:transparent !important;
  border-radius:0 !important;
  font-size:19px;
  color:#52525b;
}

.search-divider{
  align-self:center;
  width:1px;
  height:26px;
  background:#d4d4d8;
}

.exact-search-btn{
  width:100%;
  min-height:48px !important;
  height:48px !important;
  border-radius:12px !important;
  margin:0;
  font-size:16px !important;
  font-weight:800 !important;
  padding:0 20px !important;
  background:#2557a7 !important;
  box-shadow:none !important;
}

.exact-search-btn:hover{
  background:#1d4f9d !important;
}

/* neutraliza estilos anteriores dentro del buscador exacto */
.exact-searchbar.searchbar-indeed{
  border-width:1px !important;
}
.exact-searchbar .search-field,
.exact-searchbar label{
  display:none !important;
}

.hero-card.quick-card{
  justify-self:end;
}

@media (max-width:980px){
  .exact-searchbar{
    grid-template-columns:1fr;
    gap:0;
    padding:0;
  }
  .search-divider{
    width:100%;
    height:1px;
  }
  .exact-searchbar .search-segment{
    padding:0 14px;
    min-height:56px;
  }
  .exact-search-btn{
    border-radius:0 0 16px 16px !important;
    min-height:56px !important;
    height:56px !important;
  }
}


/* =========================================================
   JobsZone v2.5 - Header premium + formularios marketplace
   ========================================================= */

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:#fff;
  border-bottom:1px solid #e5e7eb;
  box-shadow:0 2px 14px rgba(15,23,42,.04);
}

.topbar{
  max-width:100%;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
  padding:14px 28px;
}

.brand{
  display:inline-flex;
  align-items:center;
  color:#111827 !important;
  font-weight:950;
  letter-spacing:-.04em;
  font-size:27px;
  text-decoration:none !important;
  white-space:nowrap;
}

.brand::before{display:none !important}
.brand span{color:#2557a7}

.main-menu{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:2px;
}

.main-menu a{
  color:#111827 !important;
  font-weight:800;
  font-size:14px;
  padding:10px 11px;
  border-radius:999px;
}

.main-menu a:hover{
  background:#eef4ff;
  color:#2557a7 !important;
  text-decoration:none;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
  border-left:1px solid #e5e7eb;
  padding-left:18px;
}

.post-link{
  color:#2557a7 !important;
  font-weight:900;
  padding:10px 12px;
  border-radius:999px;
}

.post-link:hover{
  background:#eef4ff;
  text-decoration:none;
}

.login-link{
  color:#fff !important;
  background:#2557a7;
  border-radius:999px;
  padding:10px 16px;
  font-weight:900;
  text-decoration:none !important;
  box-shadow:0 8px 18px rgba(37,87,167,.18);
}

.login-link:hover{
  background:#164081;
}

.auth-page{
  max-width:1120px;
}

.auth-hero-card{
  display:grid;
  grid-template-columns:1fr 430px;
  gap:28px;
  align-items:center;
  background:linear-gradient(135deg,#ffffff,#f7fbff 55%,#eef4ff);
  border:1px solid #e3eaf5;
  border-radius:28px;
  padding:34px;
  margin-top:28px;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
}

.auth-copy h1{
  font-size:clamp(34px,4vw,52px);
  line-height:1.05;
  letter-spacing:-.055em;
  color:#0f172a;
  margin:12px 0;
}

.auth-copy p{
  font-size:17px;
  line-height:1.65;
  color:#64748b;
  max-width:610px;
}

.auth-benefits{
  margin-top:24px;
  display:grid;
  gap:12px;
}

.auth-benefits div{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:850;
  color:#334155;
}

.auth-benefits b{
  display:grid;
  place-items:center;
  width:28px;
  height:28px;
  border-radius:999px;
  background:#dcfce7;
  color:#166534;
}

.auth-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:24px;
  padding:22px;
  box-shadow:0 18px 40px rgba(15,23,42,.10);
}

.auth-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  background:#f1f5f9;
  padding:5px;
  border-radius:999px;
  margin-bottom:20px;
}

.auth-tab{
  background:transparent;
  color:#475569;
  box-shadow:none;
  min-height:42px;
  border-radius:999px;
  font-weight:900;
  padding:8px 12px;
}

.auth-tab.active{
  background:#fff;
  color:#2557a7;
  box-shadow:0 4px 12px rgba(15,23,42,.08);
}

.auth-panel{display:none}
.auth-panel.active{display:block}

.auth-panel h2{
  margin:0 0 6px;
  color:#0f172a;
  letter-spacing:-.03em;
}

.auth-panel p{
  margin:0 0 16px;
  color:#64748b;
}

.auth-main-btn{
  width:100%;
  margin-top:18px;
  min-height:50px;
  border-radius:12px !important;
}

.role-switch{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.role-switch label{
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid #dbe3ef;
  background:#fff;
  border-radius:14px;
  padding:13px;
  cursor:pointer;
  margin:0;
}

.role-switch input{
  width:auto;
}

.role-switch label:has(input:checked){
  border-color:#2557a7;
  background:#eef4ff;
  color:#2557a7;
}

.hidden-role{display:none}

.auth-session{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.form-header{
  margin-bottom:18px;
}

.form-header span{
  display:inline-flex;
  padding:7px 11px;
  border-radius:999px;
  background:#eef4ff;
  color:#2557a7;
  font-weight:900;
  font-size:12px;
  margin-bottom:9px;
}

.form-header h1{
  margin:0;
}

.form-header p{
  margin:7px 0 0;
}

.card{
  border-radius:22px !important;
}

.card > h1:first-child,
.card > h2:first-child{
  letter-spacing:-.04em;
}

.card input,
.card select,
.card textarea{
  border-color:#d7e0ee;
  background:#fff;
}

.form-grid{
  gap:16px !important;
}

.form-note{
  border-left:4px solid #2557a7;
}

@media(max-width:1050px){
  .topbar{
    grid-template-columns:1fr;
    gap:10px;
  }
  .main-menu{
    justify-content:flex-start;
    overflow:auto;
    padding-bottom:2px;
  }
  .header-actions{
    border-left:0;
    padding-left:0;
  }
  .auth-hero-card{
    grid-template-columns:1fr;
  }
}

@media(max-width:720px){
  .topbar{
    padding:12px 14px;
  }
  .main-menu{
    gap:0;
  }
  .main-menu a{
    font-size:13px;
    padding:8px 9px;
  }
  .header-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
  }
  .post-link,.login-link{
    text-align:center;
  }
  .auth-hero-card{
    padding:22px;
    border-radius:22px;
  }
  .role-switch{
    grid-template-columns:1fr;
  }
  .auth-session{
    display:block;
  }
}


/* =========================================================
   JobsZone v2.6 - Navegación dinámica + pipeline
   ========================================================= */

.user-pill{
  display:inline-flex;
  align-items:center;
  height:38px;
  border-radius:999px;
  padding:0 12px;
  background:#eef4ff;
  color:#2557a7;
  font-weight:900;
  text-transform:capitalize;
}

.logout-link{
  border:0;
  min-height:38px;
  cursor:pointer;
}

.pipeline-board{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:12px;
}

.pipeline-col{
  border:1px solid #e2e8f0;
  background:linear-gradient(180deg,#fff,#f8fbff);
  border-radius:18px;
  padding:18px;
  text-align:center;
}

.pipeline-col span{
  display:block;
  color:#64748b;
  font-weight:900;
  font-size:13px;
}

.pipeline-col strong{
  display:block;
  font-size:34px;
  color:#0f172a;
  margin-top:6px;
}

.rating-mini,
.interview-mini{
  display:block;
  margin-top:5px;
  color:#b45309;
  font-weight:900;
  font-size:12px;
}

.interview-mini{
  color:#2557a7;
}

@media(max-width:980px){
  .pipeline-board{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:620px){
  .pipeline-board{
    grid-template-columns:1fr;
  }
}


/* =========================================================
   JobsZone v2.7 - Public SEO pages
   ========================================================= */

.public-seo-page{
  background:#f5f7fb;
}

.public-container{
  max-width:1020px;
}

.public-hero{
  grid-template-columns:1fr !important;
}

.public-job-detail h1{
  font-size:clamp(32px,4vw,48px);
}

.public-job-detail h2{
  color:#334155;
  margin-top:8px;
}

.public-seo-page .footer{
  margin-top:40px;
}


/* =========================================================
   JobsZone v2.8 - PWA + Mobile + Share
   ========================================================= */

.install-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:9px 13px;
  border-radius:999px;
  border:1px solid #cfe0ff;
  background:#eef4ff;
  color:#2557a7;
  font-weight:900;
  cursor:pointer;
}

.install-link:hover{
  background:#dfeaff;
}

.job-card-tools{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.mobile-bottom-nav{
  display:none;
}

@media(max-width:760px){
  body{
    padding-bottom:74px;
  }

  .mobile-bottom-nav{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:120;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:#fff;
    border-top:1px solid #e5e7eb;
    box-shadow:0 -10px 28px rgba(15,23,42,.08);
    padding:6px 8px calc(6px + env(safe-area-inset-bottom));
  }

  .mobile-bottom-nav a{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
    min-height:54px;
    color:#334155;
    font-weight:900;
    font-size:11px;
    border-radius:14px;
    text-decoration:none;
  }

  .mobile-bottom-nav a span{
    font-size:19px;
  }

  .mobile-bottom-nav a:hover{
    background:#eef4ff;
    color:#2557a7;
  }

  .site-header{
    position:sticky;
  }

  .header-actions{
    grid-template-columns:1fr 1fr 1fr;
  }

  .install-link{
    width:100%;
  }

  .job-card-tools{
    justify-content:flex-start;
  }
}


/* =========================================================
   JobsZone v2.9 - Notificaciones + matching
   ========================================================= */

.notification-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:999px;
  background:#eef4ff;
  color:#2557a7 !important;
  font-weight:900;
  text-decoration:none !important;
}

.notification-link:hover{
  background:#dfeaff;
}

.notification-item{
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:16px;
  margin-bottom:12px;
  background:#fff;
}

.notification-item.unread{
  border-color:#bfdbfe;
  background:linear-gradient(135deg,#eef4ff,#fff);
}

.notification-item b{
  display:block;
  color:#0f172a;
  margin-bottom:6px;
}

.notification-item p{
  margin:0 0 8px;
  color:#475569;
}

.notification-item small{
  display:block;
  color:#64748b;
  margin-bottom:10px;
}

@media(max-width:760px){
  .notification-link{
    width:100%;
  }
}


/* =========================================================
   JobsZone v3.0 - Perfil usuario + seguridad avanzada
   ========================================================= */

.account-card,
.security-card{
  position:relative;
  overflow:hidden;
}

.account-card::after,
.security-card::after{
  content:"";
  position:absolute;
  right:-70px;
  top:-70px;
  width:160px;
  height:160px;
  border-radius:999px;
  background:rgba(37,87,167,.08);
  pointer-events:none;
}

.account-grid{
  align-items:end;
}

.field-block label{
  margin-top:0 !important;
}

.full-field{
  grid-column:1/-1;
}

.account-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:8px;
}

.password-input-wrap{
  display:flex;
  align-items:center;
  border:1px solid #d7e0ee;
  border-radius:14px;
  background:#fff;
  overflow:hidden;
  transition:border-color .18s ease, box-shadow .18s ease;
}

.password-input-wrap:focus-within{
  border-color:#2557a7;
  box-shadow:0 0 0 4px rgba(37,87,167,.13);
}

.password-input-wrap input{
  border:0 !important;
  box-shadow:none !important;
  border-radius:0 !important;
  background:transparent !important;
}

.password-toggle{
  min-height:38px !important;
  height:38px;
  margin-right:7px;
  padding:0 12px !important;
  border-radius:999px !important;
  background:#eef4ff !important;
  color:#2557a7 !important;
  box-shadow:none !important;
  font-size:13px;
}

.password-strength-card{
  border:1px solid #e2e8f0;
  background:linear-gradient(135deg,#ffffff,#f8fbff);
  border-radius:18px;
  padding:18px;
  margin:16px 0;
}

.strength-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  color:#0f172a;
}

.strength-top span{
  color:#b45309;
  font-weight:900;
  font-size:13px;
}

.strength-top span.ok{
  color:#166534;
}

.strength-bars{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:6px;
  margin:14px 0;
}

.strength-bars span{
  height:8px;
  border-radius:999px;
  background:#e2e8f0;
}

.strength-bars span.active{
  background:#2557a7;
}

.password-rules{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 16px;
  margin:0;
  padding:0;
  list-style:none;
}

.password-rules li{
  color:#64748b;
  font-weight:800;
  font-size:13px;
}

.password-rules li::before{
  content:"○";
  margin-right:7px;
  color:#94a3b8;
}

.password-rules li.ok{
  color:#166534;
}

.password-rules li.ok::before{
  content:"✓";
  color:#16a34a;
}

.security-submit{
  min-width:230px;
}

.auth-name-grid{
  gap:12px !important;
  margin:0 0 4px !important;
}

@media(max-width:720px){
  .password-rules{
    grid-template-columns:1fr;
  }
  .security-submit{
    width:100%;
  }
}


/* =========================================================
   JobsZone v3.1 - Verificación de correo
   ========================================================= */

.verify-link{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  border-radius:999px;
  padding:8px 12px;
  background:#fff7ed;
  color:#b45309 !important;
  border:1px solid #fed7aa;
  font-weight:900;
  text-decoration:none !important;
}

.verified-pill,
.unverified-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:12px;
  border-radius:999px;
  padding:8px 12px;
  font-weight:900;
  font-size:13px;
}

.verified-pill{
  background:#dcfce7;
  color:#166534;
}

.verified-pill::before{
  content:"✓";
}

.unverified-pill{
  background:#fff7ed;
  color:#b45309;
  border:1px solid #fed7aa;
}

.unverified-pill::before{
  content:"!";
}

.unverified-pill a{
  color:#92400e;
  text-decoration:underline;
}

.email-verify-card{
  align-items:center;
}

.verify-panel h2{
  margin-top:0;
}

.code-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:9px;
  margin:20px 0;
}

.code-input{
  text-align:center;
  font-size:28px !important;
  font-weight:900;
  min-height:58px !important;
  border-radius:14px !important;
  padding:0 !important;
}

.verify-help{
  text-align:center;
  margin-bottom:0;
}

@media(max-width:720px){
  .code-grid{
    gap:6px;
  }
  .code-input{
    font-size:22px !important;
    min-height:52px !important;
  }
}


/* =========================================================
   JobsZone v3.2 - Campanita interactiva de notificaciones
   ========================================================= */

.notification-wrap{
  position:relative;
  display:inline-flex;
}

.notification-bell{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  min-height:40px !important;
  border-radius:999px !important;
  border:1px solid #cfe0ff !important;
  background:#eef4ff !important;
  color:#2557a7 !important;
  box-shadow:none !important;
  padding:0 !important;
  cursor:pointer;
}

.notification-bell:hover{
  background:#dfeaff !important;
  transform:translateY(-1px);
}

.bell-icon{
  font-size:18px;
}

.notification-badge{
  position:absolute;
  top:-5px;
  right:-5px;
  min-width:19px;
  height:19px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#ef4444;
  color:#fff;
  font-size:10px;
  font-weight:950;
  border:2px solid #fff;
}

.notification-dropdown{
  position:absolute;
  top:48px;
  right:0;
  width:365px;
  max-width:calc(100vw - 24px);
  background:#fff;
  border:1px solid #dbe3ef;
  border-radius:20px;
  box-shadow:0 24px 60px rgba(15,23,42,.16);
  overflow:hidden;
  z-index:250;
  display:none;
}

.notification-dropdown.open{
  display:block;
  animation:bellDrop .16s ease-out;
}

@keyframes bellDrop{
  from{opacity:0; transform:translateY(-6px) scale(.98)}
  to{opacity:1; transform:translateY(0) scale(1)}
}

.notification-dropdown-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  padding:16px;
  border-bottom:1px solid #e5e7eb;
  background:linear-gradient(135deg,#ffffff,#f8fbff);
}

.notification-dropdown-head b{
  display:block;
  color:#0f172a;
}

.notification-dropdown-head small{
  display:block;
  color:#64748b;
  font-weight:800;
  margin-top:2px;
}

.notification-dropdown-head button{
  min-height:34px !important;
  border-radius:999px !important;
  background:#eef4ff !important;
  color:#2557a7 !important;
  box-shadow:none !important;
  padding:7px 11px !important;
  font-size:12px;
}

.notification-dropdown-list{
  max-height:390px;
  overflow:auto;
  padding:8px;
}

.bell-item{
  display:grid;
  grid-template-columns:10px 1fr;
  gap:10px;
  padding:12px;
  border-radius:15px;
  cursor:pointer;
  border:1px solid transparent;
}

.bell-item:hover{
  background:#f8fbff;
  border-color:#e2e8f0;
}

.bell-item.unread{
  background:#eef4ff;
  border-color:#bfdbfe;
}

.bell-item-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#cbd5e1;
  margin-top:6px;
}

.bell-item.unread .bell-item-dot{
  background:#2557a7;
}

.bell-item b{
  display:block;
  color:#0f172a;
  font-size:13px;
  margin-bottom:4px;
}

.bell-item p{
  margin:0;
  color:#475569;
  line-height:1.35;
  font-size:13px;
}

.bell-item small{
  display:block;
  color:#64748b;
  font-size:11px;
  margin-top:6px;
  font-weight:800;
}

.notification-dropdown-footer{
  display:block;
  padding:13px 16px;
  text-align:center;
  color:#2557a7 !important;
  font-weight:900;
  border-top:1px solid #e5e7eb;
  background:#fff;
  text-decoration:none !important;
}

.empty-bell{
  text-align:center;
  padding:22px 8px;
}

.notification-toast{
  position:fixed;
  right:22px;
  bottom:92px;
  z-index:500;
  max-width:360px;
  background:#0f172a;
  color:#fff;
  border-radius:18px;
  padding:16px 18px;
  box-shadow:0 24px 60px rgba(15,23,42,.28);
  opacity:0;
  transform:translateY(14px);
  transition:opacity .2s ease, transform .2s ease;
}

.notification-toast.show{
  opacity:1;
  transform:translateY(0);
}

.notification-toast b{
  display:block;
  margin-bottom:5px;
}

.notification-toast p{
  margin:0;
  color:#dbeafe;
  line-height:1.4;
}

@media(max-width:760px){
  .notification-wrap{
    width:100%;
  }

  .notification-bell{
    width:100%;
  }

  .notification-dropdown{
    position:fixed;
    left:12px;
    right:12px;
    top:auto;
    bottom:82px;
    width:auto;
    max-width:none;
  }

  .notification-toast{
    left:14px;
    right:14px;
    bottom:84px;
    max-width:none;
  }
}


/* =========================================================
   JobsZone v3.3 - Anti cache + perfil visible
   ========================================================= */

.frontend-version-pill{
  display:inline-flex;
  align-items:center;
  margin-bottom:12px;
  padding:7px 11px;
  border-radius:999px;
  background:#ecfdf5;
  color:#166534;
  border:1px solid #bbf7d0;
  font-size:12px;
  font-weight:950;
}


/* =========================================================
   JobsZone v3.4 - Diagnóstico SMTP
   ========================================================= */

.smtp-ok{
  border-left:4px solid #16a34a !important;
  background:#ecfdf5 !important;
  color:#166534 !important;
}

.smtp-bad{
  border-left:4px solid #f97316 !important;
  background:#fff7ed !important;
  color:#9a3412 !important;
}


/* =========================================================
   JobsZone v3.5 - Reenvío de código + contador automático
   ========================================================= */

.verification-timer-card{
  display:grid;
  place-items:center;
  gap:5px;
  margin:16px 0 18px;
  padding:16px;
  border-radius:18px;
  background:linear-gradient(135deg,#eef4ff,#ffffff);
  border:1px solid #bfdbfe;
}

.verification-timer-card span{
  display:block;
  font-size:42px;
  line-height:1;
  font-weight:950;
  letter-spacing:-.04em;
  color:#2557a7;
  font-variant-numeric:tabular-nums;
}

.verification-timer-card span.expired{
  color:#dc2626;
}

.verification-timer-card small{
  color:#475569;
  font-weight:850;
}

.verify-message{
  margin:12px 0;
  padding:12px 14px;
  border-radius:14px;
  font-weight:850;
  line-height:1.45;
}

.verify-message.info{
  background:#eef4ff;
  color:#2557a7;
  border:1px solid #bfdbfe;
}

.verify-message.success{
  background:#ecfdf5;
  color:#166534;
  border:1px solid #bbf7d0;
}

.verify-message.error{
  background:#fff7ed;
  color:#9a3412;
  border:1px solid #fed7aa;
}

#resendCodeBtn:disabled{
  opacity:.62;
  cursor:not-allowed;
  filter:grayscale(.15);
}

#resendCountdown{
  color:#475569;
  font-weight:900;
}


/* =========================================================
   JobsZone v3.6 - Perfil Premium USA + Preloader
   ========================================================= */

.global-preloader{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(15,23,42,.42);
  backdrop-filter:blur(5px);
}

.global-preloader.show{
  display:flex;
}

.loader-card{
  min-width:280px;
  max-width:360px;
  border-radius:24px;
  padding:28px;
  background:#fff;
  box-shadow:0 30px 90px rgba(15,23,42,.28);
  text-align:center;
  border:1px solid #e2e8f0;
}

.loader-spinner{
  width:52px;
  height:52px;
  margin:0 auto 16px;
  border-radius:999px;
  border:5px solid #dbeafe;
  border-top-color:#2557a7;
  animation:jzSpin .75s linear infinite;
}

@keyframes jzSpin{to{transform:rotate(360deg)}}

.loader-card b{
  display:block;
  color:#0f172a;
  font-size:18px;
}

.loader-card small{
  display:block;
  color:#64748b;
  margin-top:8px;
}

.profile-premium-container{
  max-width:1120px;
}

.profile-premium-hero{
  display:grid;
  grid-template-columns:160px 1fr 260px;
  gap:24px;
  align-items:center;
  margin:28px 0 22px;
  padding:28px;
  border-radius:30px;
  background:linear-gradient(135deg,#ffffff,#f7fbff 55%,#eef4ff);
  border:1px solid #dbeafe;
  box-shadow:0 22px 60px rgba(15,23,42,.10);
}

.profile-avatar-block{
  display:grid;
  place-items:center;
  gap:12px;
}

.profile-avatar{
  width:132px;
  height:132px;
  border-radius:36px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:linear-gradient(135deg,#2557a7,#4f8cff);
  color:#fff;
  box-shadow:0 20px 38px rgba(37,87,167,.22);
  border:5px solid #fff;
}

.profile-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.profile-avatar span{
  font-size:42px;
  font-weight:950;
}

.avatar-form input{
  display:none;
}

.avatar-upload-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#eef4ff;
  color:#2557a7;
  font-weight:950;
  padding:10px 14px;
  cursor:pointer;
  margin:0 !important;
  border:1px solid #cfe0ff;
}

.profile-hero-copy h1{
  font-size:clamp(34px,4.5vw,54px);
  line-height:1.02;
  letter-spacing:-.06em;
  margin:10px 0;
  color:#0f172a;
}

.profile-hero-copy p{
  color:#64748b;
  font-size:16px;
  line-height:1.6;
  max-width:660px;
}

.profile-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.premium-badge{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:8px 11px;
  font-size:12px;
  font-weight:950;
  background:#f8fafc;
  color:#334155;
  border:1px solid #e2e8f0;
}

.profile-score-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:24px;
  padding:20px;
  box-shadow:0 14px 32px rgba(15,23,42,.07);
}

.profile-score-card span{
  color:#64748b;
  font-weight:900;
  font-size:13px;
}

.profile-score-card strong{
  display:block;
  font-size:44px;
  color:#0f172a;
  margin:6px 0 8px;
}

.profile-score-card small{
  display:block;
  color:#64748b;
  line-height:1.4;
  margin-top:8px;
}

.profile-progress{
  height:10px;
  border-radius:999px;
  background:#e2e8f0;
  overflow:hidden;
}

.profile-progress i{
  display:block;
  height:100%;
  border-radius:999px;
  background:#2557a7;
}

.premium-section{
  margin-top:20px;
}

.candidate-premium-card{
  border:1px solid #dbeafe !important;
  box-shadow:0 18px 44px rgba(37,87,167,.07) !important;
}

.premium-profile-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.field-block textarea{
  width:100%;
  min-height:132px;
}

.cv-upload-panel{
  display:grid;
  grid-template-columns:1fr auto;
  gap:16px;
  align-items:center;
  margin:16px 0;
  padding:18px;
  border-radius:18px;
  border:1px solid #e2e8f0;
  background:#f8fbff;
}

.cv-upload-panel p{
  margin:5px 0 0;
  color:#64748b;
}

.premium-save-btn{
  min-width:240px;
  min-height:50px;
  border-radius:14px !important;
}

.user-pill{
  text-transform:none !important;
}

@media(max-width:980px){
  .profile-premium-hero{
    grid-template-columns:1fr;
    text-align:center;
  }

  .profile-badges{
    justify-content:center;
  }

  .profile-score-card{
    max-width:360px;
    margin:0 auto;
  }

  .premium-profile-grid,
  .cv-upload-panel{
    grid-template-columns:1fr;
  }
}

@media(max-width:720px){
  .profile-premium-hero{
    padding:22px;
    border-radius:24px;
  }

  .profile-avatar{
    width:116px;
    height:116px;
    border-radius:28px;
  }

  .cv-upload-panel form{
    display:grid;
    gap:10px;
  }
}


/* =========================================================
   JobsZone v3.7 - AdSense ads.txt fix
   ========================================================= */

.adsense-config-card{
  border:1px solid #dbeafe !important;
  box-shadow:0 18px 44px rgba(37,87,167,.07) !important;
}

.ads-preview-box{
  margin:16px 0;
  padding:16px;
  border-radius:16px;
  background:#0f172a;
  color:#e2e8f0;
  display:grid;
  gap:8px;
}

.ads-preview-box b{
  color:#fff;
}

.ads-preview-box code{
  display:block;
  white-space:normal;
  word-break:break-all;
  font-size:14px;
  color:#bfdbfe;
}

.ads-ok{
  border-left:4px solid #16a34a !important;
  background:#ecfdf5 !important;
  color:#166534 !important;
}

.ads-bad{
  border-left:4px solid #f97316 !important;
  background:#fff7ed !important;
  color:#9a3412 !important;
}


/* =========================================================
   JobsZone v3.8 - Mobile-first UX premium
   ========================================================= */

.mobile-menu-btn,
.mobile-profile-chip,
.mobile-login-chip,
.mobile-drawer,
.mobile-drawer-backdrop{
  display:none;
}

.quick-action-grid,
.free-candidate-card{
  display:none;
}

.geo-btn{
  display:none;
}

.see-all-link{
  color:#2557a7 !important;
  font-weight:950;
  text-decoration:none !important;
}

@media(max-width:760px){

  html, body{
    background:#f7fbff !important;
  }

  body{
    overflow-x:hidden;
  }

  .site-header{
    position:sticky;
    top:0;
    z-index:220;
    background:#fff !important;
    border-bottom:1px solid #e6edf7 !important;
    box-shadow:0 8px 28px rgba(15,23,42,.05);
  }

  .topbar{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:10px !important;
    padding:14px 16px !important;
    min-height:72px;
  }

  .brand{
    font-size:28px !important;
    letter-spacing:-.055em !important;
  }

  .main-menu{
    display:none !important;
  }

  .header-actions{
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
    border-left:0 !important;
    padding-left:0 !important;
  }

  .header-actions .install-link,
  .header-actions .post-link,
  .header-actions .logout-link,
  .header-actions .desktop-login-link,
  .header-actions .desktop-user-pill,
  .header-actions .verify-link{
    display:none !important;
  }

  .notification-wrap{
    width:auto !important;
  }

  .notification-bell{
    width:40px !important;
    height:40px !important;
    border-radius:14px !important;
    background:#fff !important;
    border:1px solid #dbe3ef !important;
  }

  .mobile-profile-chip{
    display:inline-flex;
    width:42px;
    height:42px;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:#eef4ff;
    color:#2557a7 !important;
    text-decoration:none !important;
    overflow:hidden;
    border:1px solid #d7e6ff;
    font-weight:950;
  }

  .mobile-profile-chip img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .mobile-profile-chip span{
    font-size:13px;
  }

  .mobile-login-chip{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:8px 12px;
    border-radius:999px;
    background:#eef4ff;
    color:#2557a7 !important;
    text-decoration:none !important;
    font-weight:950;
    white-space:nowrap;
  }

  .mobile-menu-btn{
    display:inline-flex;
    width:42px;
    height:42px;
    align-items:center;
    justify-content:center;
    border:0;
    border-radius:14px;
    background:#fff !important;
    color:#0f172a !important;
    box-shadow:none !important;
    font-size:25px;
    cursor:pointer;
  }

  .mobile-drawer-backdrop{
    position:fixed;
    inset:0;
    z-index:450;
    background:rgba(15,23,42,.38);
    backdrop-filter:blur(4px);
  }

  .mobile-drawer{
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    z-index:460;
    display:block;
    width:min(88vw,360px);
    background:#fff;
    box-shadow:-24px 0 60px rgba(15,23,42,.22);
    transform:translateX(105%);
    transition:transform .22s ease;
    padding:18px;
    overflow:auto;
  }

  .mobile-menu-open .mobile-drawer,
  .mobile-menu-open .mobile-drawer-backdrop{
    display:block;
  }

  .mobile-menu-open .mobile-drawer{
    transform:translateX(0);
  }

  .mobile-drawer-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:18px;
  }

  .drawer-brand{
    font-size:26px !important;
  }

  .mobile-drawer-close{
    width:40px;
    height:40px;
    border-radius:999px;
    background:#eef4ff !important;
    color:#2557a7 !important;
    box-shadow:none !important;
    padding:0 !important;
    font-size:24px;
  }

  .mobile-drawer-user{
    display:flex;
    gap:12px;
    align-items:center;
    background:linear-gradient(135deg,#eef4ff,#fff);
    border:1px solid #dbeafe;
    border-radius:20px;
    padding:14px;
    margin-bottom:16px;
  }

  .mobile-user-avatar{
    width:48px;
    height:48px;
    border-radius:16px;
    display:grid;
    place-items:center;
    background:#2557a7;
    color:#fff;
    font-weight:950;
  }

  .mobile-drawer-user b{
    display:block;
    color:#0f172a;
    line-height:1.2;
  }

  .mobile-drawer-user span{
    display:block;
    color:#64748b;
    font-weight:800;
    font-size:13px;
    margin-top:3px;
  }

  .mobile-drawer-nav{
    display:grid;
    gap:8px;
  }

  .mobile-drawer-link{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:48px;
    padding:12px 14px;
    border-radius:16px;
    background:#f8fbff;
    color:#0f172a !important;
    text-decoration:none !important;
    font-weight:900;
    border:1px solid #eef2f7;
  }

  .mobile-drawer-link::after{
    content:"›";
    color:#2557a7;
    font-size:22px;
    line-height:1;
  }

  .mobile-drawer-link.highlight,
  .mobile-drawer-link.primary{
    background:#2557a7;
    color:#fff !important;
  }

  .mobile-drawer-link.highlight::after,
  .mobile-drawer-link.primary::after{
    color:#fff;
  }

  .mobile-drawer-link.danger{
    border:0;
    width:100%;
    justify-content:center;
    background:#fee2e2 !important;
    color:#991b1b !important;
    box-shadow:none !important;
  }

  .mobile-drawer-link.danger::after{
    content:"";
  }

  .container.home-container.mobile-first-home{
    width:100%;
    max-width:100%;
    padding:0 16px 88px !important;
  }

  .mobile-app-hero{
    display:grid !important;
    grid-template-columns:1fr !important;
    max-width:100% !important;
    margin:0 -16px 16px !important;
    padding:30px 16px 18px !important;
    border:0 !important;
    border-radius:0 0 30px 30px !important;
    box-shadow:none !important;
    background:
      radial-gradient(circle at -8% 8%, rgba(37,87,167,.12) 0 120px, transparent 122px),
      linear-gradient(180deg,#ffffff 0%,#f7fbff 100%) !important;
  }

  .mobile-hero-copy{
    text-align:center;
    max-width:370px;
    margin:0 auto;
  }

  .mobile-eyebrow{
    display:none !important;
  }

  .mobile-hero-copy h1{
    font-size:32px !important;
    line-height:1.08 !important;
    letter-spacing:-.055em;
    margin:8px 0 10px !important;
  }

  .mobile-hero-copy h1 span{
    color:#0057d9;
  }

  .mobile-hero-copy p{
    font-size:16px !important;
    line-height:1.5 !important;
    color:#64748b !important;
    margin:0 auto 18px !important;
  }

  .mobile-search-card{
    width:100%;
    max-width:430px;
    margin:0 auto;
  }

  .exact-searchbar{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:10px !important;
    padding:16px !important;
    min-height:0 !important;
    border:0 !important;
    border-radius:24px !important;
    background:#fff !important;
    box-shadow:0 18px 42px rgba(15,23,42,.12) !important;
    overflow:visible !important;
  }

  .search-divider{
    display:none !important;
  }

  .exact-searchbar .search-segment{
    min-height:54px !important;
    padding:0 12px !important;
    border:1px solid #dbe3ef;
    border-radius:16px;
    background:#fff;
  }

  .exact-icon{
    width:36px !important;
    height:36px !important;
    min-width:36px !important;
    display:grid !important;
    place-items:center !important;
    background:#eef4ff !important;
    border-radius:12px !important;
    color:#2557a7 !important;
  }

  .exact-searchbar .search-segment input{
    height:52px !important;
    font-size:15px !important;
  }

  .location-segment{
    position:relative;
    padding-right:58px !important;
  }

  .geo-btn{
    position:absolute;
    right:10px;
    top:8px;
    display:inline-flex;
    width:40px;
    height:40px;
    align-items:center;
    justify-content:center;
    border:0;
    border-radius:13px;
    background:#eef4ff !important;
    color:#0057d9 !important;
    box-shadow:none !important;
    font-size:20px;
    padding:0 !important;
  }

  .exact-search-btn{
    height:56px !important;
    min-height:56px !important;
    border-radius:16px !important;
    font-size:16px !important;
    background:#0057d9 !important;
  }

  .exact-search-btn span{
    font-size:22px;
    margin-left:8px;
  }

  .quick-action-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:6px;
    max-width:430px;
    margin:18px auto 0;
    padding:14px 10px;
    background:#fff;
    border:1px solid #e6edf7;
    border-radius:22px;
    box-shadow:0 14px 32px rgba(15,23,42,.08);
  }

  .quick-action-grid a{
    display:grid;
    justify-items:center;
    gap:4px;
    text-align:center;
    color:#0f172a !important;
    text-decoration:none !important;
    min-width:0;
  }

  .quick-action-grid i{
    display:grid;
    place-items:center;
    width:46px;
    height:46px;
    border-radius:999px;
    background:#eef4ff;
    font-style:normal;
    font-size:22px;
  }

  .quick-action-grid b{
    font-size:12px;
    line-height:1.1;
  }

  .quick-action-grid span{
    color:#64748b;
    font-size:11px;
    line-height:1.1;
  }

  .home-stats{
    display:none !important;
  }

  .mobile-categories{
    margin-top:16px !important;
    padding:18px 14px !important;
    border-radius:24px !important;
    box-shadow:0 14px 32px rgba(15,23,42,.07) !important;
  }

  .mobile-categories .section-title,
  .mobile-results-title{
    align-items:center;
  }

  .mobile-categories .section-title h2,
  .mobile-results-title h2{
    font-size:20px !important;
    letter-spacing:-.03em;
  }

  .mobile-categories .section-title p,
  .mobile-results-title p{
    display:none;
  }

  .category-row{
    display:grid !important;
    grid-template-columns:repeat(4,minmax(118px,1fr)) !important;
    overflow-x:auto;
    gap:10px !important;
    padding-bottom:6px;
    scroll-snap-type:x mandatory;
  }

  .category{
    min-height:108px !important;
    scroll-snap-align:start;
    border-radius:18px !important;
    padding:12px 8px !important;
  }

  .category span{
    width:44px !important;
    height:44px !important;
  }

  .chips{
    display:none !important;
  }

  .mobile-company-cta{
    display:grid !important;
    grid-template-columns:58px 1fr;
    gap:12px;
    align-items:center;
    margin-top:14px !important;
    border-radius:22px !important;
    background:linear-gradient(135deg,#eef4ff,#fff) !important;
    padding:16px !important;
  }

  .mobile-company-cta .company-icon{
    width:56px;
    height:56px;
    border-radius:18px;
    display:grid;
    place-items:center;
    background:#dbeafe;
    font-size:28px;
  }

  .mobile-company-cta h2{
    font-size:18px !important;
    margin:0 0 2px !important;
  }

  .mobile-company-cta p{
    margin:0 0 6px !important;
    font-size:13px;
  }

  .mobile-company-cta a{
    color:#0057d9 !important;
    font-weight:950;
    text-decoration:none;
  }

  .ad{
    display:none !important;
  }

  .mobile-jobs-layout{
    display:block !important;
    max-width:100% !important;
    margin-top:18px !important;
  }

  .premium-filter{
    display:none !important;
  }

  .mobile-results-title{
    margin-bottom:10px !important;
  }

  .mobile-results-list .job-card,
  .job-card{
    border-radius:18px !important;
    padding:16px !important;
    margin-bottom:12px !important;
    box-shadow:0 12px 28px rgba(15,23,42,.07) !important;
  }

  .job-head{
    display:grid !important;
    grid-template-columns:1fr auto !important;
    gap:8px !important;
    align-items:start;
  }

  .job-head h2{
    font-size:17px !important;
    line-height:1.25 !important;
    margin-bottom:4px !important;
  }

  .job-head b{
    color:#0057d9;
    font-size:14px;
  }

  .job-card-tools{
    justify-content:flex-end !important;
  }

  .job-card-tools .btn{
    min-height:38px !important;
    padding:8px 10px !important;
    font-size:0 !important;
    border-radius:12px !important;
  }

  .job-card-tools .btn:first-child::before{
    content:"♡";
    font-size:18px;
  }

  .job-card-tools .btn:last-child{
    display:none !important;
  }

  .meta{
    display:flex !important;
    flex-wrap:wrap;
    gap:8px 12px !important;
    margin-top:10px !important;
  }

  .meta span{
    font-size:13px !important;
  }

  .badges{
    margin-top:10px !important;
  }

  .job-card p{
    display:none;
  }

  .job-card .actions{
    display:grid !important;
    grid-template-columns:1fr 1fr;
    gap:8px !important;
    margin-top:12px !important;
  }

  .job-card .actions .btn{
    min-height:42px !important;
    border-radius:13px !important;
    padding:10px !important;
    font-size:13px !important;
  }

  .job-card .actions .btn.secondary[target="_blank"]{
    display:none !important;
  }

  .free-candidate-card{
    display:grid;
    grid-template-columns:44px 1fr auto;
    gap:12px;
    align-items:center;
    margin:16px 0 6px;
    padding:14px;
    border-radius:20px;
    border:1px solid #bfdbfe;
    background:#eef4ff;
  }

  .free-candidate-card div{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:#fff;
    font-size:23px;
  }

  .free-candidate-card b{
    display:block;
    color:#0057d9;
  }

  .free-candidate-card span{
    display:block;
    grid-column:2/3;
    color:#64748b;
    font-size:12px;
  }

  .free-candidate-card a{
    grid-column:3/4;
    grid-row:1/3;
    color:#0057d9 !important;
    font-size:0;
    text-decoration:none;
  }

  .free-candidate-card a::after{
    content:"›";
    font-size:26px;
    color:#334155;
  }

  .mobile-bottom-nav{
    display:none !important;
  }
}

@media(max-width:390px){
  .mobile-hero-copy h1{
    font-size:29px !important;
  }

  .quick-action-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .quick-action-grid a{
    padding:6px 0;
  }
}


/* v3.9 iconografía vectorial */

.icon-svg{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:1.15rem;
  height:1.15rem;
  vertical-align:middle;
  flex:0 0 auto;
}
.icon-svg svg{
  width:100%;
  height:100%;
  display:block;
}
.icon-svg.sm{ width:1.25rem; height:1.25rem; }
.icon-svg.xs{ width:1rem; height:1rem; }
.icon-btn{
  display:inline-flex !important;
  align-items:center;
  gap:8px;
}
.field-icon .icon-svg,
.exact-search-btn .icon-svg,
.geo-btn .icon-svg,
.company-icon .icon-svg,
.quick-action-grid i .icon-svg,
.free-candidate-card div .icon-svg,
.mobile-menu-btn .icon-svg,
.mobile-drawer-close .icon-svg,
.notification-bell .icon-svg,
.category span .icon-svg,
.bottom-nav-icon .icon-svg{
  width:100%;
  height:100%;
}
.bell-icon{ display:none !important; }
.notification-bell{ color:#2557a7; }
.meta span{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.category span{
  color:#2557a7;
}
.quick-action-grid i,
.company-icon,
.free-candidate-card div,
.field-icon.exact-icon,
.geo-btn,
.mobile-drawer-close,
.mobile-menu-btn,
.notification-bell,
.bottom-nav-icon{
  color:inherit;
}
.quick-action-grid i{
  display:flex;
  align-items:center;
  justify-content:center;
}
.company-icon,
.free-candidate-card div{
  display:flex;
  align-items:center;
  justify-content:center;
}
.bottom-nav-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  margin:0 auto 4px;
}
@media(max-width:760px){
  .job-card-tools .btn:first-child::before{ content:none !important; }
  .job-card-tools .btn{ font-size:13px !important; }
  .job-card-tools .btn span{ display:none; }
  .job-card-tools .icon-svg{ width:18px; height:18px; }
  .exact-search-btn span{ display:inline-flex; align-items:center; justify-content:center; width:22px; height:22px; margin-left:8px; }
  .quick-action-grid i{ width:46px; height:46px; }
  .company-icon .icon-svg{ width:28px; height:28px; }
  .free-candidate-card div .icon-svg{ width:22px; height:22px; }
  .mobile-menu-btn .icon-svg,
  .mobile-drawer-close .icon-svg,
  .notification-bell .icon-svg{ width:22px; height:22px; }
}


/* =========================================================
   JobsZone v4.0 - Premium UX Pro
   ========================================================= */

:root{
  --jz-blue:#2557a7;
  --jz-blue-strong:#0057d9;
  --jz-ink:#0f172a;
  --jz-muted:#64748b;
  --jz-line:#dbe3ef;
  --jz-soft:#eef4ff;
  --jz-card:#ffffff;
  --jz-radius:18px;
  --jz-shadow:0 16px 42px rgba(15,23,42,.08);
}

.btn,
button,
.post-link,
.login-link,
.mobile-login-chip,
.install-link,
.mobile-drawer-link,
.job-card,
.category,
.card{
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover,
button:hover,
.post-link:hover,
.login-link:hover,
.mobile-login-chip:hover,
.install-link:hover{
  transform:translateY(-1px);
}

.btn:active,
button:active{
  transform:translateY(0) scale(.985);
}

.card:hover,
.job-card:hover{
  border-color:#cfe0ff;
  box-shadow:0 20px 52px rgba(15,23,42,.10);
}

.check-icon{
  display:inline-flex;
  width:22px;
  height:22px;
  border-radius:999px;
  background:#dcfce7;
  color:#166534;
  align-items:center;
  justify-content:center;
}

.auth-benefits div{
  align-items:center;
}

.drawer-link-icon{
  width:20px !important;
  height:20px !important;
  margin-right:10px;
  color:#2557a7;
}

.mobile-drawer-link{
  justify-content:flex-start !important;
}

.mobile-drawer-link span{
  flex:1;
}

.mobile-drawer-link.highlight .drawer-link-icon,
.mobile-drawer-link.primary .drawer-link-icon{
  color:#fff;
}

.mobile-drawer-link.danger .drawer-link-icon{
  color:#991b1b;
}

.home-trust-strip{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  max-width:430px;
  margin:12px auto 0;
}

.home-trust-strip span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 10px;
  border-radius:999px;
  background:#fff;
  border:1px solid #e2e8f0;
  color:#334155;
  font-size:12px;
  font-weight:900;
  box-shadow:0 8px 20px rgba(15,23,42,.05);
}

.home-trust-strip .icon-svg{
  color:#16a34a;
}

.skeleton-card{
  pointer-events:none;
  overflow:hidden;
}

.skeleton-line,
.skeleton-meta span,
.skeleton-actions span{
  position:relative;
  overflow:hidden;
  display:block;
  background:#eaf0f8;
  border-radius:999px;
}

.skeleton-line{
  height:18px;
  margin-bottom:12px;
}

.skeleton-line.w-70{ width:70%; }
.skeleton-line.w-45{ width:45%; }

.skeleton-meta{
  display:flex;
  gap:8px;
  margin:16px 0;
}

.skeleton-meta span{
  width:30%;
  height:14px;
}

.skeleton-actions{
  display:flex;
  gap:10px;
}

.skeleton-actions span{
  width:120px;
  height:40px;
  border-radius:12px;
}

.skeleton-line::after,
.skeleton-meta span::after,
.skeleton-actions span::after{
  content:"";
  position:absolute;
  inset:0;
  transform:translateX(-100%);
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  animation:jzShimmer 1.25s infinite;
}

@keyframes jzShimmer{
  100%{ transform:translateX(100%); }
}

.empty-results-card{
  display:flex;
  align-items:center;
  gap:10px;
  color:#475569;
  font-weight:900;
}

.rating-mini{
  display:inline-flex;
  gap:2px;
  color:#f59e0b;
  margin-left:6px;
}

.rating-mini .icon-svg{
  width:13px;
  height:13px;
}

.category:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(37,87,167,.10);
}

.category span{
  background:linear-gradient(135deg,#eef4ff,#ffffff);
  border:1px solid #dbeafe;
}

.quick-action-grid a:hover i,
.category:hover span{
  background:#2557a7;
  color:#fff;
  border-color:#2557a7;
}

@media(max-width:760px){
  .home-trust-strip{
    padding:0 2px;
  }

  .mobile-drawer-link::after{
    margin-left:auto;
  }

  .mobile-drawer-link.danger::after{
    content:"" !important;
  }

  .skeleton-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  .skeleton-actions span{
    width:auto;
  }

  .job-card .actions .btn{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
  }
}


/* =========================================================
   JobsZone v4.1 - Fixes UX responsive y perfil
   ========================================================= */

.mobile-logout-btn{
  display:none;
}

.mobile-drawer-actions{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid #e6edf7;
}

.mobile-drawer-cta{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  min-height:48px;
  width:100%;
  padding:12px 14px;
  border-radius:16px;
  text-decoration:none !important;
  font-weight:900;
  border:1px solid #e6edf7;
  background:#fff;
  color:#0f172a !important;
}

.mobile-drawer-cta.primary{
  background:#2557a7;
  color:#fff !important;
  border-color:#2557a7;
}

.mobile-drawer-cta.primary .drawer-link-icon{
  color:#fff;
}

.mobile-drawer-cta.soft{
  background:#f8fbff;
}

.mobile-drawer-cta.danger{
  background:#fee2e2;
  color:#991b1b !important;
  border-color:#fecaca;
}

.mobile-drawer-cta.danger .drawer-link-icon{
  color:#991b1b;
}

.field-icon.exact-icon .icon-svg{
  width:18px !important;
  height:18px !important;
}

.geo-btn .icon-svg,
.exact-search-btn .icon-svg{
  width:18px !important;
  height:18px !important;
}

.field-icon.exact-icon{
  width:30px !important;
  min-width:30px !important;
  height:30px !important;
}

.exact-searchbar .search-segment{
  align-items:center;
}

.exact-searchbar .search-segment input{
  padding-top:0 !important;
  padding-bottom:0 !important;
}

@media (max-width:980px){
  .field-icon.exact-icon{
    width:28px !important;
    min-width:28px !important;
    height:28px !important;
    border-radius:10px !important;
  }

  .field-icon.exact-icon .icon-svg,
  .geo-btn .icon-svg,
  .exact-search-btn .icon-svg{
    width:16px !important;
    height:16px !important;
  }
}

@media (max-width:760px){
  .header-actions .notification-wrap{
    display:inline-flex !important;
  }

  .mobile-logout-btn{
    display:inline-flex !important;
    width:42px;
    height:42px;
    align-items:center;
    justify-content:center;
    border:1px solid #f1c8c8;
    border-radius:14px;
    background:#fff5f5 !important;
    color:#b42318 !important;
    padding:0 !important;
  }

  .mobile-logout-btn .icon-svg{
    width:18px !important;
    height:18px !important;
  }

  .mobile-drawer-link,
  .mobile-drawer-cta{
    min-height:50px;
  }
}


/* =========================================================
   JobsZone v4.2 - Login visible, reset password y búsqueda obligatoria
   ========================================================= */

.login-priority-btn{
  margin:8px 0 14px !important;
  min-height:54px !important;
  font-size:17px !important;
  border-radius:16px !important;
  box-shadow:0 14px 30px rgba(37,87,167,.20) !important;
}

.login-divider{
  display:flex;
  align-items:center;
  gap:10px;
  color:#64748b;
  font-weight:850;
  font-size:13px;
  margin:10px 0 6px;
}

.login-divider::before,
.login-divider::after{
  content:"";
  flex:1;
  height:1px;
  background:#e2e8f0;
}

.auth-password-wrap{
  margin-bottom:10px;
}

.auth-password-wrap input{
  min-height:48px !important;
  flex:1;
}

.auth-row-actions{
  display:grid;
  gap:10px;
  margin-top:8px;
}

.forgot-link{
  border:0 !important;
  background:transparent !important;
  color:#2557a7 !important;
  box-shadow:none !important;
  font-weight:950;
  min-height:36px !important;
  padding:0 !important;
  text-align:center;
  cursor:pointer;
}

.back-login-link{
  width:100%;
  margin-top:10px;
}

.reset-panel .auth-main-btn{
  margin-top:10px;
}

.reset-code-area{
  display:none;
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid #e2e8f0;
}

.reset-code-area.active{
  display:block;
}

#resetCode{
  text-align:center;
  letter-spacing:8px;
  font-size:22px;
  font-weight:950;
}

.search-validation{
  max-width:720px;
  margin:10px auto 0;
  padding:11px 14px;
  border-radius:14px;
  background:#fff7ed;
  color:#9a3412;
  border:1px solid #fed7aa;
  font-weight:850;
  text-align:left;
}

.input-error{
  outline:0 !important;
  border-color:#f97316 !important;
  box-shadow:0 0 0 4px rgba(249,115,22,.16) !important;
}

@media(max-width:760px){
  .auth-page{
    padding-top:10px !important;
  }

  .auth-hero-card{
    align-items:start !important;
  }

  .auth-card{
    margin-top:0 !important;
  }

  .login-priority-btn{
    position:sticky;
    top:82px;
    z-index:8;
  }

  .auth-row-actions{
    grid-template-columns:1fr;
  }

  .search-validation{
    margin:10px 4px 0;
    font-size:13px;
    line-height:1.35;
  }
}


/* =========================================================
   JobsZone v4.2.1 - Login móvil visible
   ========================================================= */
@media(max-width:760px){
  .auth-page{
    max-width:100% !important;
    padding:8px 12px 40px !important;
  }

  .auth-hero-card{
    display:flex !important;
    flex-direction:column !important;
    gap:14px !important;
    padding:14px !important;
    margin-top:14px !important;
    border-radius:22px !important;
  }

  .auth-card{
    order:-1 !important;
    width:100% !important;
    padding:16px !important;
    border-radius:20px !important;
    box-shadow:0 18px 34px rgba(15,23,42,.12) !important;
    position:relative;
    z-index:2;
  }

  .auth-copy{
    order:2 !important;
    text-align:left !important;
    padding:2px 2px 6px !important;
  }

  .auth-copy .eyebrow{
    display:inline-flex;
    margin-bottom:6px;
  }

  .auth-copy h1{
    font-size:24px !important;
    line-height:1.12 !important;
    margin:6px 0 8px !important;
  }

  .auth-copy p{
    font-size:14px !important;
    line-height:1.45 !important;
    margin:0 !important;
  }

  .auth-benefits{
    margin-top:12px !important;
    gap:8px !important;
  }

  .auth-benefits div{
    font-size:13px !important;
    line-height:1.3 !important;
    align-items:flex-start !important;
  }

  .auth-tabs{
    position:sticky;
    top:78px;
    z-index:6;
    margin:-4px 0 16px !important;
    background:#eef4ff !important;
    box-shadow:0 10px 22px rgba(15,23,42,.08);
  }

  .auth-tab{
    min-height:44px !important;
    font-size:14px !important;
  }

  .login-priority-btn{
    position:static !important;
    top:auto !important;
    margin:4px 0 12px !important;
    min-height:52px !important;
    font-size:16px !important;
  }

  #authLogin h2,
  #authRegister h2,
  #authReset h2{
    font-size:21px !important;
    line-height:1.2 !important;
    margin-bottom:6px !important;
  }

  #authLogin p,
  #authRegister p,
  #authReset p{
    font-size:13px !important;
    line-height:1.4 !important;
    margin-bottom:12px !important;
  }

  #authLogin label,
  #authRegister label,
  #authReset label{
    font-size:13px !important;
    font-weight:900 !important;
  }

  #authLogin input,
  #authRegister input,
  #authRegister select,
  #authReset input,
  #authReset select{
    min-height:48px !important;
    font-size:15px !important;
  }

  .password-toggle{
    min-width:64px !important;
    font-size:13px !important;
  }

  .forgot-link{
    min-height:40px !important;
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .auth-row-actions{
    margin-top:10px !important;
  }

  .auth-session{
    margin-bottom:10px !important;
  }
}


/* =========================================================
   JobsZone v4.3 - Auth Premium
   ========================================================= */
.auth-hero-premium{
  background:linear-gradient(135deg,#ffffff 0%,#f8fbff 58%,#eef4ff 100%);
}
.auth-card-premium{border-radius:26px;border:1px solid #dbe5f3;}
.auth-card-top{padding:4px 2px 14px;border-bottom:1px solid #edf2f8;margin-bottom:18px;}
.auth-card-kicker{display:inline-flex;padding:6px 10px;border-radius:999px;background:#eef4ff;color:#2557a7;font-size:12px;font-weight:900;margin-bottom:10px;}
.auth-card-title{margin:0;font-size:24px;line-height:1.12;color:#0f172a;letter-spacing:-.03em;}
.auth-card-subtitle{margin:8px 0 0;font-size:14px;line-height:1.5;color:#64748b;}
.auth-panel-head{margin-bottom:14px;}
.auth-badge{display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;background:#eff6ff;color:#2557a7;border:1px solid #dbeafe;font-size:12px;font-weight:900;margin-bottom:10px;}
.auth-badge::before{content:"";width:8px;height:8px;border-radius:999px;background:#2557a7;}
.premium-password-field{min-height:52px;}
.eye-toggle{min-width:42px !important;width:42px;padding:0 !important;justify-content:center;display:inline-flex !important;align-items:center;background:#f8fbff !important;border:1px solid #dbeafe !important;color:#2557a7 !important;}
.eye-toggle.active{background:#2557a7 !important;color:#fff !important;border-color:#2557a7 !important;}
.eye-toggle .icon-svg{width:18px;height:18px;}
.password-field-help{display:block;margin-top:7px;margin-bottom:4px;font-size:12px;line-height:1.45;color:#64748b;}
.single-cta .auth-main-btn{margin-top:14px;}
.premium-role-switch label{align-items:flex-start;padding:14px 14px 13px;}
.premium-role-switch label span{display:grid;gap:4px;}
.premium-role-switch label span b{font-size:14px;color:#0f172a;}
.premium-role-switch label span small{color:#64748b;line-height:1.35;font-size:12px;}
.reset-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-bottom:14px;}
.reset-steps span{display:flex;align-items:center;justify-content:center;text-align:center;min-height:40px;padding:8px 10px;border-radius:12px;border:1px solid #dbeafe;background:#f8fbff;color:#2557a7;font-size:12px;font-weight:900;}
@media(max-width:760px){
  .auth-card-top{margin-bottom:14px;padding-bottom:12px;}
  .auth-card-title{font-size:20px;}
  .auth-card-subtitle{font-size:13px;}
  .auth-panel-head{margin-bottom:12px;}
  .auth-copy{display:none !important;}
  .auth-hero-premium{padding:10px !important;background:transparent !important;border:0 !important;box-shadow:none !important;}
  .auth-card-premium{border-radius:22px !important;padding:16px !important;}
  .auth-tabs{top:74px;margin:0 0 14px !important;}
  .auth-name-grid{grid-template-columns:1fr !important;}
  .premium-role-switch{grid-template-columns:1fr !important;}
  .premium-role-switch label{padding:13px;}
  .reset-steps{grid-template-columns:1fr;}
  .reset-steps span{justify-content:flex-start;text-align:left;}
  .password-field-help{font-size:11.5px;margin-bottom:2px;}
}


/* =========================================================
   JobsZone v4.4 - Errores visibles + preloader centrado
   ========================================================= */

.auth-message{
  margin:0 0 14px;
  padding:12px 14px;
  border-radius:14px;
  font-size:14px;
  line-height:1.45;
  font-weight:850;
  border:1px solid transparent;
}

.auth-message.error{
  background:#fff7ed;
  color:#9a3412;
  border-color:#fed7aa;
}

.auth-message.success{
  background:#ecfdf5;
  color:#166534;
  border-color:#bbf7d0;
}

.auth-message.info{
  background:#eff6ff;
  color:#1d4ed8;
  border-color:#bfdbfe;
}

.global-preloader{
  position:fixed !important;
  top:0 !important;
  right:0 !important;
  bottom:0 !important;
  left:0 !important;
  width:100vw !important;
  height:100vh !important;
  height:100dvh !important;
  z-index:99999 !important;
  display:none !important;
  align-items:center !important;
  justify-content:center !important;
  place-items:center !important;
  padding:20px !important;
  box-sizing:border-box !important;
  margin:0 !important;
  background:rgba(15,23,42,.42) !important;
  backdrop-filter:blur(5px) !important;
}

.global-preloader.show{
  display:grid !important;
}

.global-preloader .loader-card{
  width:min(92vw,360px) !important;
  min-width:0 !important;
  max-width:360px !important;
  margin:0 auto !important;
  position:relative !important;
  top:auto !important;
  left:auto !important;
  right:auto !important;
  bottom:auto !important;
  transform:none !important;
}

.global-preloader .loader-spinner{
  display:block !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

@media(max-width:760px){
  .auth-message{
    font-size:13px;
    padding:11px 12px;
    margin-bottom:12px;
  }

  .global-preloader{
    padding:16px !important;
  }

  .global-preloader .loader-card{
    width:min(94vw,340px) !important;
    padding:22px !important;
    border-radius:22px !important;
  }
}


/* =========================================================
   JobsZone v4.5 - Dashboards Premium Candidato + Empresa
   ========================================================= */

.candidate-command-center,
.company-command-center{
  display:grid;
  gap:16px;
  margin:18px 0;
}

.candidate-kpi-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.candidate-kpi-card{
  background:#fff;
  border:1px solid #dbe5f3;
  border-radius:22px;
  padding:18px;
  box-shadow:0 14px 34px rgba(15,23,42,.06);
}

.candidate-kpi-card span{
  display:flex;
  align-items:center;
  gap:8px;
  color:#64748b;
  font-weight:900;
  font-size:13px;
}

.candidate-kpi-card strong{
  display:block;
  margin:10px 0 3px;
  font-size:28px;
  color:#0f172a;
  letter-spacing:-.05em;
}

.candidate-kpi-card small{
  color:#64748b;
  font-weight:800;
}

.candidate-next-actions{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  padding:18px;
  border-radius:22px;
  background:linear-gradient(135deg,#2557a7,#0b63ce);
  color:#fff;
  box-shadow:0 20px 45px rgba(37,87,167,.20);
}

.candidate-next-actions b{
  display:block;
  font-size:18px;
}

.candidate-next-actions span{
  opacity:.9;
  font-size:14px;
}

.candidate-action-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.candidate-action-buttons .btn{
  background:#fff !important;
  color:#2557a7 !important;
}

.candidate-action-buttons .btn.secondary,
.candidate-action-buttons .btn.light{
  background:rgba(255,255,255,.16) !important;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.35);
}

.candidate-content-grid{
  display:grid;
  grid-template-columns:1.35fr .75fr;
  gap:18px;
}

.candidate-application-cards,
.saved-mini-list,
.company-card-list,
.company-candidate-list{
  display:grid;
  gap:12px;
}

.candidate-app-card,
.company-job-card,
.company-candidate-card{
  display:grid;
  grid-template-columns:1fr auto;
  gap:16px;
  align-items:center;
  padding:16px;
  border:1px solid #e2e8f0;
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 28px rgba(15,23,42,.045);
}

.candidate-app-card h3,
.company-job-card h3,
.company-candidate-card h3{
  margin:4px 0;
  color:#0f172a;
  letter-spacing:-.025em;
}

.candidate-app-card p,
.company-job-card p,
.company-candidate-card p{
  margin:0;
  color:#64748b;
}

.mini-label{
  color:#2557a7;
  font-weight:950;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.candidate-app-status,
.candidate-card-status{
  display:grid;
  justify-items:end;
  gap:8px;
}

.empty-state-card{
  display:grid;
  place-items:center;
  text-align:center;
  gap:8px;
  padding:24px;
  border:1px dashed #cbd5e1;
  border-radius:18px;
  background:#f8fbff;
  color:#475569;
}

.empty-state-card b{
  color:#0f172a;
  font-size:16px;
}

.premium-mini-row{
  padding:12px;
  border:1px solid #e2e8f0;
  border-radius:14px;
  background:#f8fbff;
}

/* Empresa Pro */
.company-pro-container{
  max-width:1180px;
}

.company-pro-hero{
  display:grid;
  grid-template-columns:96px 1fr auto;
  gap:22px;
  align-items:center;
  margin:24px 0 18px;
  padding:26px;
  border-radius:30px;
  background:linear-gradient(135deg,#ffffff,#f8fbff 55%,#eef4ff);
  border:1px solid #dbeafe;
  box-shadow:0 22px 60px rgba(15,23,42,.09);
}

.company-logo-pro{
  width:92px;
  height:92px;
  border-radius:26px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#2557a7,#4f8cff);
  color:#fff;
  font-size:30px;
  font-weight:950;
  box-shadow:0 18px 40px rgba(37,87,167,.22);
}

.company-pro-hero h1{
  margin:6px 0;
  font-size:clamp(28px,4vw,46px);
  line-height:1.05;
  letter-spacing:-.055em;
  color:#0f172a;
}

.company-pro-hero p{
  margin:0;
  color:#64748b;
  line-height:1.55;
  max-width:720px;
}

.company-hero-actions{
  display:grid;
  gap:10px;
  min-width:180px;
}

.company-command-center{
  grid-template-columns:1fr 1fr;
}

.company-workspace-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin:18px 0;
}

.company-publish-panel,
.company-section,
.company-profile-card,
.company-verification-card{
  border-radius:24px !important;
}

.publish-main-btn{
  min-height:54px !important;
  margin-top:12px;
  width:100%;
}

.company-job-card{
  grid-template-columns:1fr 420px;
}

.company-card-meta{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}

.company-card-meta span{
  display:inline-flex;
  align-items:center;
  gap:5px;
}

.company-card-actions,
.candidate-card-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:8px;
}

.company-candidate-card{
  grid-template-columns:56px 1fr;
  align-items:start;
}

.candidate-card-avatar{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:#eef4ff;
  color:#2557a7;
  font-weight:950;
  font-size:20px;
}

.candidate-card-head{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  align-items:start;
}

.favorite-card{
  border-color:#fde68a;
  background:#fffdf3;
}

.company-edit-panel{
  border:1px solid #dbeafe;
  border-radius:24px;
  background:#fff;
  padding:20px;
  margin:18px 0;
}

@media(max-width:980px){
  .candidate-kpi-grid,
  .company-command-center,
  .company-workspace-grid,
  .candidate-content-grid{
    grid-template-columns:1fr 1fr;
  }

  .company-pro-hero{
    grid-template-columns:80px 1fr;
  }

  .company-hero-actions{
    grid-column:1/-1;
    grid-template-columns:1fr 1fr;
  }

  .company-job-card{
    grid-template-columns:1fr;
  }

  .company-card-actions{
    justify-content:flex-start;
  }
}

@media(max-width:760px){
  .candidate-kpi-grid,
  .company-command-center,
  .company-workspace-grid,
  .candidate-content-grid{
    grid-template-columns:1fr;
  }

  .candidate-next-actions{
    display:grid;
  }

  .candidate-action-buttons{
    display:grid;
    grid-template-columns:1fr;
  }

  .candidate-app-card,
  .company-job-card,
  .company-candidate-card{
    grid-template-columns:1fr;
    padding:14px;
  }

  .candidate-app-status,
  .candidate-card-status{
    justify-items:start;
  }

  .company-pro-hero{
    grid-template-columns:1fr;
    text-align:left;
    padding:20px;
    border-radius:24px;
    margin-top:14px;
  }

  .company-logo-pro{
    width:72px;
    height:72px;
    border-radius:22px;
    font-size:24px;
  }

  .company-pro-hero h1{
    font-size:28px;
  }

  .company-hero-actions{
    grid-template-columns:1fr;
  }

  .candidate-card-head{
    grid-template-columns:1fr;
  }

  .candidate-card-actions,
  .company-card-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  .candidate-card-actions .btn,
  .company-card-actions .btn{
    min-height:40px !important;
    padding:8px !important;
    font-size:12px !important;
  }
}


/* =========================================================
   JobsZone v4.6 - Centro de extracción Excel Pro
   ========================================================= */

.excel-export-card{
  border-radius:24px !important;
  background:linear-gradient(135deg,#ffffff,#f8fbff 60%,#eef4ff) !important;
  border:1px solid #dbeafe !important;
}

.excel-export-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}

.excel-export-btn{
  display:grid !important;
  grid-template-columns:42px 1fr;
  grid-template-rows:auto auto;
  gap:4px 12px;
  align-items:center;
  min-height:94px;
  padding:16px !important;
  border-radius:18px !important;
  background:#fff !important;
  color:#0f172a !important;
  border:1px solid #dbe5f3 !important;
  box-shadow:0 12px 28px rgba(15,23,42,.06) !important;
  text-align:left;
}

.excel-export-btn .icon-svg{
  grid-row:1/3;
  width:32px !important;
  height:32px !important;
  color:#16a34a;
}

.excel-export-btn b{
  font-size:16px;
  letter-spacing:-.02em;
}

.excel-export-btn span{
  color:#64748b;
  font-size:13px;
  line-height:1.35;
}

.excel-export-note{
  display:block;
  margin-top:12px;
  color:#64748b;
  font-weight:800;
}

.company-hero-actions{
  min-width:220px;
}

.company-hero-actions .btn.light{
  background:#fff !important;
  color:#2557a7 !important;
  border:1px solid #dbeafe !important;
}

@media(max-width:980px){
  .excel-export-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:760px){
  .excel-export-btn{
    min-height:82px;
    padding:14px !important;
  }

  .company-hero-actions{
    grid-template-columns:1fr !important;
  }
}


/* =========================================================
   JobsZone v4.7 - Plantilla Excel para cargar empleos
   ========================================================= */
.import-template-card{
  border-radius:24px !important;
  background:linear-gradient(135deg,#ffffff,#f8fbff 60%,#eef4ff) !important;
  border:1px solid #dbeafe !important;
}

.template-download-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px;
  border:1px solid #bfdbfe;
  border-radius:20px;
  background:#fff;
  box-shadow:0 12px 28px rgba(15,23,42,.06);
  margin:14px 0;
}

.template-download-box b{
  display:block;
  color:#0f172a;
  font-size:17px;
}

.template-download-box span{
  display:block;
  color:#64748b;
  font-weight:800;
  margin-top:4px;
}

.excel-import-form{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  align-items:end;
  padding:16px;
  border-radius:20px;
  background:#f8fbff;
  border:1px solid #e2e8f0;
  margin-bottom:14px;
}

.excel-import-form label{
  grid-column:1/-1;
  color:#334155;
  font-weight:950;
}

.csv-fallback{
  padding:14px 16px;
  border-radius:18px;
  background:#fff;
  border:1px solid #e2e8f0;
}

.csv-fallback summary{
  cursor:pointer;
  font-weight:950;
  color:#2557a7;
}

@media(max-width:760px){
  .template-download-box,
  .excel-import-form{
    display:grid;
    grid-template-columns:1fr;
  }
}


/* =========================================================
   JobsZone v4.9 - Header móvil limpio + menú informativo
   ========================================================= */

.mobile-logout-btn{
  display:none !important;
  visibility:hidden !important;
}

.menu-btn-label{
  display:none;
}

.mobile-drawer.pro-drawer{
  width:min(92vw,390px) !important;
  padding-bottom:22px !important;
  overflow-y:auto !important;
}

.mobile-drawer-user.pro{
  align-items:flex-start !important;
  background:linear-gradient(135deg,#eef4ff,#ffffff) !important;
  border:1px solid #dbeafe !important;
  box-shadow:0 12px 28px rgba(15,23,42,.06);
}

.mobile-drawer-user.pro small{
  display:block;
  color:#2557a7;
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:3px;
}

.mobile-user-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:inherit;
}

.mobile-drawer-section{
  margin-top:16px;
}

.mobile-drawer-section-title{
  display:block;
  color:#64748b;
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin:0 0 8px 4px;
}

.mobile-drawer-nav.pro-nav{
  gap:9px !important;
}

.mobile-drawer-link{
  gap:12px !important;
  justify-content:flex-start !important;
}

.mobile-drawer-link .drawer-link-icon{
  flex:0 0 auto;
}

.mobile-drawer-link span{
  display:grid;
  gap:2px;
  flex:1;
  line-height:1.15;
}

.mobile-drawer-link span small{
  color:#64748b;
  font-size:11px;
  font-weight:800;
  line-height:1.25;
}

.mobile-drawer-link.important{
  background:#2557a7 !important;
  color:#fff !important;
  border-color:#2557a7 !important;
}

.mobile-drawer-link.important span small{
  color:#dbeafe !important;
}

.mobile-drawer-link.important::after{
  color:#fff !important;
}

.mobile-drawer-link.button-link{
  width:100%;
  border:1px solid #eef2f7;
  cursor:pointer;
  font-family:inherit;
  text-align:left;
  box-shadow:none !important;
}

.mobile-drawer-cta.warning-cta{
  background:#fff7ed !important;
  color:#9a3412 !important;
  border-color:#fed7aa !important;
}

.mobile-drawer-cta.warning-cta .drawer-link-icon{
  color:#9a3412 !important;
}

@media(max-width:760px){
  .mobile-menu-btn{
    width:auto !important;
    min-width:42px !important;
    padding:0 10px !important;
    gap:6px !important;
    border:1px solid #dbe3ef !important;
  }

  .menu-btn-label{
    display:inline !important;
    font-size:12px;
    font-weight:950;
    color:#0f172a;
  }

  .mobile-drawer-link::after{
    margin-left:auto;
  }

  .mobile-drawer-actions{
    position:static;
    padding-bottom:12px;
  }
}

@media(max-width:390px){
  .menu-btn-label{
    display:none !important;
  }

  .mobile-menu-btn{
    width:42px !important;
    padding:0 !important;
  }
}


/* =========================================================
   JobsZone v5.0 - Fix menú visible + foto de perfil
   ========================================================= */

.profile-avatar{ position:relative; overflow:hidden; }
.profile-avatar img,
.profile-avatar .avatar-live-preview{
  width:100% !important; height:100% !important; object-fit:cover !important; border-radius:inherit !important; display:block;
}
.profile-avatar .avatar-initials,
.profile-avatar .avatar-fallback{
  width:100%; height:100%; display:grid; place-items:center; color:#fff; font-weight:950; font-size:34px;
}
.mobile-user-avatar{ overflow:hidden; }
.mobile-user-avatar img{ width:100% !important; height:100% !important; object-fit:cover !important; display:block; }
.drawer-avatar-fallback{ width:100%; height:100%; display:grid; place-items:center; color:#fff; }

.mobile-drawer.full-drawer{
  z-index:99999 !important;
  position:fixed !important;
  inset:0 0 0 auto !important;
  width:min(96vw,430px) !important;
  min-height:100vh !important;
  min-height:100dvh !important;
  max-height:100dvh !important;
  background:#ffffff !important;
  padding:0 16px 20px !important;
  overflow-y:auto !important;
  box-shadow:-24px 0 80px rgba(15,23,42,.28) !important;
}
.mobile-drawer-backdrop{ z-index:99990 !important; }

.sticky-drawer-head{
  position:sticky !important;
  top:0 !important;
  z-index:2 !important;
  background:#fff !important;
  padding:16px 0 12px !important;
  margin-bottom:12px !important;
  border-bottom:1px solid #edf2f8 !important;
}
.labeled-close{
  width:auto !important;
  min-width:86px !important;
  height:42px !important;
  padding:0 12px !important;
  display:inline-flex !important;
  gap:6px !important;
  align-items:center !important;
  justify-content:center !important;
  border-radius:14px !important;
  font-size:13px !important;
  font-weight:950 !important;
}
.labeled-close .icon-svg{ width:18px !important; height:18px !important; }

.drawer-primary-buttons{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin:12px 0 18px;
}
.drawer-big-btn{
  min-height:82px;
  padding:12px 8px;
  border-radius:18px;
  border:1px solid #dbeafe;
  background:#f8fbff;
  color:#2557a7 !important;
  display:grid;
  place-items:center;
  gap:6px;
  text-decoration:none !important;
  font-weight:950;
  box-shadow:0 10px 24px rgba(15,23,42,.055);
  cursor:pointer;
  font-family:inherit;
}
.drawer-big-btn.primary{ background:#2557a7; color:#fff !important; border-color:#2557a7; }
.drawer-big-icon{ width:24px !important; height:24px !important; }
.drawer-big-btn span{ font-size:13px; line-height:1.1; }

.mobile-drawer-user.pro{ margin-bottom:12px !important; }
.mobile-drawer-section{ margin-top:12px !important; }
.mobile-drawer-actions{ margin-top:14px !important; }
body.mobile-menu-open{ overflow:hidden !important; }

@media(max-width:760px){
  .mobile-drawer.full-drawer{
    width:100vw !important;
    right:0 !important;
    left:auto !important;
    border-radius:0 !important;
  }
  .mobile-menu-open .mobile-drawer.full-drawer{
    display:block !important;
    transform:translateX(0) !important;
  }
  .drawer-primary-buttons{ grid-template-columns:repeat(3,minmax(0,1fr)); }
  .mobile-drawer-link{ min-height:54px !important; }
}

@media(max-width:390px){
  .drawer-primary-buttons{ grid-template-columns:1fr; }
  .drawer-big-btn{
    min-height:56px;
    grid-template-columns:28px 1fr;
    place-items:center start;
    padding:12px 14px;
  }
}


/* =========================================================
   JobsZone v5.2 - Diagnóstico visible importación Excel
   ========================================================= */

.import-result-box{
  margin-top:14px;
  padding:14px 16px;
  border-radius:16px;
  white-space:pre-wrap;
  font-size:14px;
  line-height:1.45;
  font-weight:850;
  border:1px solid #dbeafe;
  background:#eff6ff;
  color:#1d4ed8;
}

.import-result-box.success{
  background:#ecfdf5;
  color:#166534;
  border-color:#bbf7d0;
}

.import-result-box.error{
  background:#fff7ed;
  color:#9a3412;
  border-color:#fed7aa;
}


/* =========================================================
   JobsZone v5.3 - Contacto protegido + limpieza empleos
   ========================================================= */

.contact-pro-page{ max-width:1080px; }
.contact-hero-card{
  display:grid; grid-template-columns:1.2fr .8fr; gap:20px; align-items:center;
  margin:24px 0 18px; padding:28px; border-radius:28px;
  background:linear-gradient(135deg,#ffffff,#f8fbff 58%,#eef4ff);
  border:1px solid #dbeafe; box-shadow:0 22px 60px rgba(15,23,42,.08);
}
.contact-hero-card h1{ margin:8px 0; font-size:clamp(30px,4vw,48px); letter-spacing:-.055em; color:#0f172a; }
.contact-hero-card p{ color:#64748b; line-height:1.55; margin:0 0 16px; }
.contact-direct-card{
  display:inline-flex; align-items:center; gap:10px; padding:12px 14px; border-radius:16px;
  background:#fff; border:1px solid #dbeafe; color:#2557a7; font-weight:900;
}
.contact-direct-card a{ display:block; color:#2557a7; text-decoration:none; margin-top:2px; }
.contact-info-grid{ display:grid; gap:12px; }
.contact-info-grid div{ background:#fff; border:1px solid #e2e8f0; border-radius:18px; padding:16px; }
.contact-info-grid b{ display:block; color:#0f172a; }
.contact-info-grid span{ color:#64748b; font-size:14px; }
.contact-form-card{ border-radius:24px !important; }
.honeypot-field{ position:absolute !important; left:-9999px !important; opacity:0 !important; pointer-events:none !important; }
.anti-spam-box{
  display:grid; grid-template-columns:1fr auto 130px; gap:12px; align-items:center;
  margin:12px 0 16px; padding:14px; border-radius:18px; border:1px solid #dbeafe; background:#f8fbff;
}
.anti-spam-box b{ display:block; color:#0f172a; }
.anti-spam-box span{ color:#64748b; font-size:13px; }
.contact-result-box{
  margin-bottom:14px; padding:12px 14px; border-radius:14px; white-space:pre-wrap; font-weight:850;
  border:1px solid #dbeafe; background:#eff6ff; color:#1d4ed8;
}
.contact-result-box.success{ background:#ecfdf5; color:#166534; border-color:#bbf7d0; }
.contact-result-box.error{ background:#fff7ed; color:#9a3412; border-color:#fed7aa; }
.jobs-cleanup-card{
  border-radius:24px !important; border:1px solid #fed7aa !important; background:linear-gradient(135deg,#fff,#fff7ed) !important;
}
.cleanup-grid{ display:grid; grid-template-columns:1fr auto; gap:12px; align-items:center; }
.cleanup-grid select{ min-height:48px; }
.danger-note{ display:block; margin-top:10px; color:#9a3412; font-weight:850; }

@media(max-width:760px){
  .contact-hero-card, .anti-spam-box, .cleanup-grid{ grid-template-columns:1fr; }
  .contact-hero-card{ padding:20px; border-radius:24px; }
}


/* =========================================================
   JobsZone v5.4 - Google Analytics + AdSense configurable
   ========================================================= */

.google-config-page{
  max-width:1120px;
}

.google-analytics-card{
  border-radius:24px !important;
  background:linear-gradient(135deg,#ffffff,#f8fbff 60%,#eef4ff) !important;
  border:1px solid #dbeafe !important;
}

.small-header{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid #e2e8f0;
}

.google-code-preview{
  margin-top:14px;
  padding:14px 16px;
  border-radius:16px;
  background:#f8fbff;
  border:1px solid #dbeafe;
  color:#2557a7;
}

.google-code-preview code{
  display:block;
  margin-top:8px;
  white-space:pre-wrap;
  word-break:break-word;
}

.ads-preview-box code{
  white-space:pre-wrap;
  word-break:break-word;
}

.ad-real[data-jz-ad-slot]::after{
  content:attr(data-jz-ad-slot);
  display:inline-flex;
  margin-top:6px;
  font-size:10px;
  color:#94a3b8;
}


/* =========================================================
   JobsZone v5.5 - Search Console + botón guardar Analytics
   ========================================================= */

.analytics-actions{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid #e2e8f0;
}

.google-code-preview code,
.google-analytics-card code{
  word-break:break-word;
}

#setSearchConsoleVerification{
  grid-column:1 / -1;
}


/* =========================================================
   JobsZone v5.6 - Navegación protegida de empleos
   ========================================================= */

.protected-listing-card .actions{
  display:flex;
  justify-content:flex-start;
}

.locked-mini-note{
  display:flex;
  align-items:center;
  gap:8px;
  margin:10px 0 4px;
  padding:10px 12px;
  border-radius:14px;
  background:#f8fbff;
  color:#2557a7;
  border:1px solid #dbeafe;
  font-weight:850;
  font-size:13px;
}

.locked-job-box{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:20px;
  border-radius:22px;
  background:linear-gradient(135deg,#fff7ed,#ffffff);
  border:1px solid #fed7aa;
  box-shadow:0 16px 38px rgba(15,23,42,.06);
}

.locked-job-box .icon-svg{
  color:#9a3412;
  flex:0 0 auto;
}

.locked-job-box b{
  display:block;
  color:#0f172a;
  font-size:20px;
  margin-bottom:6px;
}

.locked-job-box p{
  color:#64748b;
  margin:0 0 12px;
  line-height:1.55;
}

.locked-public-notice,
.locked-public-card{
  border-color:#fed7aa !important;
  background:#fff7ed !important;
}

.badge.blue{
  background:#eff6ff !important;
  color:#1d4ed8 !important;
}

@media(max-width:760px){
  .locked-job-box{
    display:grid;
  }

  .detail-card .actions,
  .protected-listing-card .actions{
    display:grid;
    grid-template-columns:1fr;
  }
}


/* =========================================================
   JobsZone v5.7 - Alertas privadas + SEO controlado
   ========================================================= */

.alerts-private-page{
  max-width:1080px;
}

.alerts-hero-card{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  align-items:center;
  margin:24px 0 18px;
  padding:28px;
  border-radius:28px;
  background:linear-gradient(135deg,#ffffff,#f8fbff 58%,#eef4ff);
  border:1px solid #dbeafe;
  box-shadow:0 22px 60px rgba(15,23,42,.08);
}

.alerts-hero-card h1{
  font-size:clamp(30px,4vw,46px);
  letter-spacing:-.055em;
  margin:8px 0;
  color:#0f172a;
}

.alerts-hero-card p{
  color:#64748b;
  line-height:1.55;
  margin:0;
}

.alerts-user-card,
.alerts-locked-card{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:18px;
  border-radius:22px;
  background:#fff;
  border:1px solid #dbeafe;
}

.alerts-locked-card{
  display:grid;
  text-align:left;
  margin-top:24px;
}

.alerts-user-card b,
.alerts-locked-card h1{
  color:#0f172a;
}

.alerts-user-card span,
.alerts-locked-card p{
  color:#64748b;
}

.alerts-form-card{
  border-radius:24px !important;
}

.alerts-list-box{
  display:grid;
  gap:10px;
}

.alert-row-card{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  padding:14px;
  border-radius:16px;
  background:#f8fbff;
  border:1px solid #e2e8f0;
}

.alert-row-card b{
  display:block;
  color:#0f172a;
}

.alert-row-card span{
  display:block;
  color:#64748b;
  font-size:13px;
  margin-top:2px;
}

.alert-row-card small{
  display:block;
  color:#64748b;
  margin-top:4px;
  text-align:right;
  font-weight:800;
}

.contact-private-note span{
  display:block;
  color:#64748b;
  margin-top:2px;
  font-size:13px;
}

@media(max-width:760px){
  .alerts-hero-card{
    grid-template-columns:1fr;
    padding:20px;
    border-radius:24px;
  }

  .alert-row-card{
    display:grid;
  }

  .alert-row-card small{
    text-align:left;
  }
}


/* =========================================================
   JobsZone v6.0 - Autocompletado + botón buscar alineado
   ========================================================= */

@media(min-width:981px){
  .exact-searchbar{
    grid-template-columns:minmax(0,1.15fr) 1px minmax(0,.95fr) 200px !important;
    align-items:stretch !important;
    min-height:66px !important;
    padding:6px !important;
    overflow:visible !important;
  }

  .exact-searchbar .search-segment{
    min-height:54px !important;
    height:auto !important;
    align-self:stretch !important;
  }

  .exact-searchbar .search-segment input{
    height:54px !important;
    line-height:54px !important;
  }

  .exact-search-btn,
  .search-main-btn.exact-search-btn{
    align-self:stretch !important;
    min-width:190px !important;
    width:100% !important;
    height:auto !important;
    min-height:54px !important;
    line-height:1.1 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    white-space:nowrap !important;
    padding:0 18px !important;
    margin:0 !important;
  }

  .exact-search-btn .icon-svg{
    width:18px !important;
    height:18px !important;
    flex:0 0 auto !important;
  }
}

.search-segment input[list]{
  cursor:text;
}

.search-segment input[list]::-webkit-calendar-picker-indicator,
.form-grid input[list]::-webkit-calendar-picker-indicator,
.form-grid-premium input[list]::-webkit-calendar-picker-indicator{
  opacity:.45;
  cursor:pointer;
}

.form-grid input[list],
.form-grid-premium input[list],
.field-block input[list]{
  background-image:linear-gradient(45deg,transparent 50%,#64748b 50%),linear-gradient(135deg,#64748b 50%,transparent 50%);
  background-position:calc(100% - 18px) 50%,calc(100% - 13px) 50%;
  background-size:5px 5px,5px 5px;
  background-repeat:no-repeat;
  padding-right:38px !important;
}

@media(max-width:760px){
  .exact-searchbar{
    overflow:visible !important;
  }

  .exact-search-btn,
  .search-main-btn.exact-search-btn{
    width:100% !important;
    display:flex !important;
    justify-content:center !important;
  }
}


/* =========================================================
   JobsZone v6.1 - Resultados más cerca y scroll automático
   ========================================================= */

.results-section{
  scroll-margin-top:96px;
}

.results-title{
  position:relative;
  z-index:1;
}

@media(min-width:981px){
  .jobs-layout.mobile-jobs-layout{
    margin-top:18px !important;
    align-items:start !important;
  }

  .results-section{
    min-width:0;
  }

  .premium-filter{
    position:sticky;
    top:86px;
  }

  .ad + .jobs-layout,
  .ad-real + .jobs-layout{
    margin-top:16px !important;
  }

  .hero-indeed-exact + .ad,
  .hero-indeed + .ad{
    margin-top:16px !important;
    margin-bottom:12px !important;
  }
}

@media(max-width:760px){
  .results-section{
    scroll-margin-top:78px;
  }

  .jobs-layout.mobile-jobs-layout{
    margin-top:14px !important;
  }
}


/* =========================================================
   JobsZone v6.2 - Orden exacto del home
   ========================================================= */

/*
  Orden visual:
  1. Header
  2. Hero + buscador
  3. Filtros izquierda + empleos destacados derecha
  4. Ads / métricas / categorías / CTA
*/

.home-container.mobile-first-home{
  display:block;
}

.home-container .hero-indeed-exact{
  margin-bottom:16px !important;
}

.home-container .jobs-layout.mobile-jobs-layout{
  margin-top:16px !important;
  padding-top:0 !important;
  border-top:1px dashed #dbeafe;
}

.home-container .home-lower-section{
  margin-top:22px !important;
}

.home-container > .ad{
  margin-top:22px !important;
  margin-bottom:18px !important;
}

@media(min-width:981px){
  .home-container .jobs-layout.mobile-jobs-layout{
    max-width:1020px;
    margin-left:auto !important;
    margin-right:auto !important;
    grid-template-columns:285px minmax(0,1fr) !important;
    align-items:start !important;
  }

  .home-container .results-section{
    margin-top:0 !important;
  }

  .home-container .results-title{
    margin-top:0 !important;
  }
}

@media(max-width:760px){
  .home-container .jobs-layout.mobile-jobs-layout{
    border-top:0;
    margin-top:14px !important;
  }
}


/* =========================================================
   JobsZone v6.3 - Compartir social + móvil premium + AdSense
   ========================================================= */

/* Compartir estilo social */
.share-modal-open{ overflow:hidden !important; }

.share-modal-backdrop{
  position:fixed;
  inset:0;
  z-index:120000;
  background:rgba(15,23,42,.58);
  backdrop-filter:blur(5px);
}

.share-modal{
  position:fixed;
  z-index:120001;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:min(94vw,560px);
  max-height:90vh;
  overflow:auto;
  padding:22px;
  border-radius:28px;
  background:#fff;
  border:1px solid rgba(255,255,255,.65);
  box-shadow:0 30px 90px rgba(15,23,42,.34);
}

.share-modal-handle{ display:none; }

.share-modal-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
}

.share-modal-head h2{
  margin:4px 0 5px;
  color:#0f172a;
  font-size:25px;
  letter-spacing:-.035em;
}

.share-modal-head p{
  margin:0;
  color:#64748b;
}

.share-kicker{
  color:#2557a7;
  font-weight:950;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.07em;
}

.share-close{
  width:42px;
  height:42px;
  border:1px solid #e2e8f0;
  border-radius:50%;
  background:#f8fafc;
  display:grid;
  place-items:center;
  cursor:pointer;
}

.share-native-btn{
  width:100%;
  margin:18px 0 14px;
  padding:14px 16px;
  border:0;
  border-radius:18px;
  background:linear-gradient(135deg,#2557a7,#4169e1);
  color:#fff;
  display:flex;
  align-items:center;
  gap:12px;
  text-align:left;
  cursor:pointer;
  box-shadow:0 14px 34px rgba(37,87,167,.25);
}

.share-native-btn span{ display:grid; gap:2px; }
.share-native-btn b{ font-size:15px; }
.share-native-btn small{ color:#dbeafe; }

.share-platform-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}

.share-platform{
  border:1px solid #e2e8f0;
  background:#fff;
  border-radius:18px;
  min-height:92px;
  padding:10px 6px;
  display:grid;
  place-items:center;
  gap:6px;
  cursor:pointer;
  color:#334155;
  font-family:inherit;
  font-weight:850;
  transition:transform .18s ease, box-shadow .18s ease;
}

.share-platform:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(15,23,42,.10);
}

.share-platform i{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:#fff;
  font-style:normal;
  font-weight:950;
  font-size:17px;
}

.share-platform.whatsapp i{ background:#25D366; }
.share-platform.facebook i{ background:#1877F2; }
.share-platform.x-social i{ background:#111; }
.share-platform.linkedin i{ background:#0A66C2; }
.share-platform.telegram i{ background:#229ED9; }
.share-platform.email i{ background:#64748b; }
.share-platform.instagram i{ background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.share-platform.tiktok i{ background:#111; box-shadow:3px 2px 0 #25f4ee,-3px -2px 0 #fe2c55; }

.share-copy-btn{
  width:100%;
  margin-top:14px;
  min-height:48px;
  border-radius:15px;
  border:1px solid #dbeafe;
  background:#f8fbff;
  color:#2557a7;
  font-weight:950;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  cursor:pointer;
}

.share-copy-status{
  margin-top:9px;
  color:#64748b;
  font-size:12px;
  text-align:center;
}

.share-copy-status.success{
  color:#166534;
  font-weight:850;
}

.social-share-trigger{
  background:linear-gradient(135deg,#111827,#334155) !important;
  color:#fff !important;
  border-color:#111827 !important;
}

/* Resultados y filtros móvil */
.mobile-filter-trigger,
.mobile-filter-head,
.mobile-filter-backdrop{
  display:none;
}

.results-head-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.results-inline-ad-wrap{
  margin:16px 0;
}

.results-inline-ad-wrap .ad{
  margin:0 !important;
}

.job-journey-card{
  display:grid;
  grid-template-columns:1fr minmax(180px,280px);
  gap:18px;
  align-items:center;
  margin:22px 0 16px;
  padding:16px 18px;
  border-radius:20px;
  background:linear-gradient(135deg,#f8fbff,#ffffff);
  border:1px solid #dbeafe;
}

.job-journey-card b,
.job-journey-card small{
  display:block;
}

.job-journey-card b{
  color:#0f172a;
  font-size:17px;
  margin:3px 0;
}

.job-journey-card small{ color:#64748b; }

.journey-progress{
  height:12px;
  border-radius:999px;
  background:#e2e8f0;
  overflow:hidden;
}

.journey-progress span{
  display:block;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,#2557a7,#60a5fa);
}

.related-jobs-section{
  margin-top:18px;
}

.related-job-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.related-job-card{
  padding:15px;
  border-radius:17px;
  border:1px solid #e2e8f0;
  background:#fff;
  color:#0f172a;
  text-decoration:none;
  display:grid;
  gap:7px;
  transition:transform .18s ease, box-shadow .18s ease;
}

.related-job-card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}

.related-job-card b,
.related-job-card span,
.related-job-card small,
.related-job-card em{
  display:block;
}

.related-job-card span,
.related-job-card small{ color:#64748b; }
.related-job-card em{ color:#2557a7; font-style:normal; font-weight:900; }

.job-detail-sidebar > .ad{
  margin-top:16px !important;
}

@media(max-width:760px){
  .mobile-app-hero{
    padding:18px 14px 12px !important;
    margin-bottom:8px !important;
    border-radius:22px !important;
  }

  .mobile-hero-copy{
    margin-bottom:10px !important;
  }

  .mobile-hero-copy h1{
    font-size:28px !important;
    line-height:1.08 !important;
    margin:7px 0 !important;
  }

  .mobile-hero-copy p{
    font-size:13px !important;
    margin:0 0 10px !important;
  }

  .mobile-app-hero .quick-action-grid,
  .mobile-app-hero .home-trust-strip{
    display:none !important;
  }

  .home-container .jobs-layout.mobile-jobs-layout{
    margin-top:8px !important;
    display:flex !important;
    flex-direction:column !important;
  }

  .results-section{
    order:1;
    width:100%;
  }

  .premium-filter{
    order:2;
  }

  .mobile-filter-trigger{
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:38px;
    padding:0 12px;
    border-radius:12px;
    border:1px solid #dbeafe;
    background:#f8fbff;
    color:#2557a7;
    font-weight:950;
    cursor:pointer;
  }

  .mobile-filter-head{
    display:flex;
    justify-content:space-between;
    gap:12px;
    align-items:center;
    margin-bottom:10px;
  }

  .mobile-filter-head span{
    display:block;
    color:#2557a7;
    font-size:11px;
    font-weight:950;
    text-transform:uppercase;
  }

  .mobile-filter-head h3{
    margin:2px 0 0 !important;
  }

  .mobile-filter-head button{
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid #e2e8f0;
    background:#fff;
    display:grid;
    place-items:center;
  }

  .desktop-filter-title{
    display:none !important;
  }

  .mobile-filter-backdrop{
    position:fixed;
    inset:0;
    z-index:110000;
    background:rgba(15,23,42,.52);
    backdrop-filter:blur(3px);
  }

  .mobile-filter-backdrop.open{
    display:block;
  }

  #homeFilters.premium-filter{
    display:block !important;
    position:fixed !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    top:auto !important;
    z-index:110001 !important;
    max-height:86vh !important;
    overflow-y:auto !important;
    border-radius:26px 26px 0 0 !important;
    padding:20px 18px calc(18px + env(safe-area-inset-bottom)) !important;
    transform:translateY(105%);
    opacity:0;
    pointer-events:none;
    transition:transform .25s ease, opacity .2s ease;
    box-shadow:0 -24px 70px rgba(15,23,42,.28) !important;
  }

  #homeFilters.premium-filter.mobile-filter-open{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }

  .mobile-filter-body-lock{
    overflow:hidden !important;
  }

  .mobile-results-title{
    align-items:center !important;
    margin-bottom:10px !important;
  }

  .mobile-results-title h2{
    font-size:21px !important;
  }

  .mobile-results-title p{
    display:none;
  }

  .share-modal{
    left:0;
    right:0;
    bottom:0;
    top:auto;
    transform:none;
    width:100%;
    max-height:88vh;
    border-radius:28px 28px 0 0;
    padding:14px 16px calc(20px + env(safe-area-inset-bottom));
  }

  .share-modal-handle{
    display:block;
    width:46px;
    height:5px;
    border-radius:999px;
    background:#cbd5e1;
    margin:0 auto 12px;
  }

  .share-platform-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }

  .share-platform{
    min-height:82px;
    font-size:11px;
  }

  .share-platform i{
    width:40px;
    height:40px;
  }

  .job-journey-card{
    grid-template-columns:1fr;
    margin:12px 0;
  }

  .related-job-grid{
    grid-template-columns:1fr;
  }

  .job-detail-sidebar > .ad{
    display:none !important;
  }
}

@media(max-width:390px){
  .share-platform-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}


/* =========================================================
   JobsZone v6.4 - Inicio por rol + seguridad visual
   ========================================================= */

.home-role-workspace{
  max-width:1020px;
  margin:14px auto 12px;
  padding:16px 18px;
  border-radius:20px;
  border:1px solid #dbeafe;
  background:linear-gradient(135deg,#ffffff,#f8fbff);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  box-shadow:0 12px 30px rgba(15,23,42,.055);
}
.home-role-workspace h2{ margin:3px 0; color:#0f172a; font-size:22px; }
.home-role-workspace p{ margin:0; color:#64748b; }
.role-quick-actions a{ border-color:#dbeafe !important; background:#fff !important; }

@media(max-width:760px){
  .home-role-workspace{
    margin:8px 0 10px;
    padding:14px;
    display:grid;
    border-radius:18px;
  }
  .home-role-workspace .btn{ width:100%; justify-content:center; }
  .mobile-app-hero .role-quick-actions{ display:none !important; }
}


/* =========================================================
   JobsZone v6.5 - Usuarios registrados e historial Admin
   ========================================================= */

.admin-users-card,
.admin-activity-card{
  border-radius:24px !important;
}

.admin-users-title p,
.admin-activity-card .section-title p{
  margin:.35rem 0 0;
  color:#64748b;
}

.admin-user-filters{
  display:grid;
  grid-template-columns:minmax(250px,1fr) 190px 210px;
  gap:10px;
  margin:16px 0 12px;
}

.admin-users-summary{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:12px;
}

.admin-users-summary span{
  padding:8px 11px;
  border:1px solid #dbeafe;
  border-radius:999px;
  background:#f8fbff;
  color:#475569;
  font-size:12px;
  font-weight:850;
}

.admin-users-summary b{
  color:#2557a7;
}

.admin-users-list{
  display:grid;
  gap:10px;
}

.admin-user-row{
  display:grid;
  grid-template-columns:minmax(330px,1.25fr) minmax(260px,.95fr) auto;
  gap:14px;
  align-items:center;
  padding:15px;
  border:1px solid #e2e8f0;
  border-radius:18px;
  background:#fff;
}

.admin-user-row.is-suspended{
  background:#fff7ed;
  border-color:#fed7aa;
}

.admin-user-main{
  display:flex;
  gap:12px;
  min-width:0;
}

.admin-user-avatar,
.admin-profile-avatar{
  width:50px;
  height:50px;
  flex:0 0 auto;
  border-radius:16px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:linear-gradient(135deg,#2557a7,#60a5fa);
  color:#fff;
  font-size:20px;
  font-weight:950;
}

.admin-user-avatar img,
.admin-profile-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.admin-user-name-line{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
}

.admin-user-main a{
  display:block;
  color:#2557a7;
  font-weight:800;
  text-decoration:none;
  margin:3px 0;
  word-break:break-word;
}

.admin-user-main small{
  display:block;
  color:#64748b;
  line-height:1.35;
}

.admin-user-counters{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:6px;
}

.admin-user-counters span{
  padding:8px;
  border-radius:12px;
  background:#f8fafc;
  color:#64748b;
  text-align:center;
  font-size:11px;
}

.admin-user-counters b{
  display:block;
  color:#0f172a;
  font-size:16px;
}

.admin-user-actions{
  display:grid;
  gap:7px;
  min-width:155px;
}

.admin-loading{
  padding:20px;
  text-align:center;
  color:#64748b;
  font-weight:850;
}

.admin-activity-list{
  display:grid;
  gap:8px;
}

.admin-activity-row{
  width:100%;
  display:grid;
  grid-template-columns:42px minmax(0,1fr) auto;
  gap:11px;
  align-items:center;
  padding:12px;
  border:1px solid #e2e8f0;
  border-radius:15px;
  background:#fff;
  text-align:left;
  cursor:pointer;
  font-family:inherit;
}

.admin-activity-row:hover{
  border-color:#bfdbfe;
  background:#f8fbff;
}

.admin-activity-icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:#eff6ff;
  color:#2557a7;
}

.admin-activity-row b,
.admin-activity-row small{
  display:block;
}

.admin-activity-row small{
  color:#64748b;
  margin-top:2px;
}

.admin-activity-row time{
  color:#64748b;
  font-size:12px;
  white-space:nowrap;
}

.admin-user-modal-open{
  overflow:hidden !important;
}

.admin-user-backdrop{
  position:fixed;
  inset:0;
  z-index:130000;
  background:rgba(15,23,42,.58);
  backdrop-filter:blur(4px);
}

.admin-user-modal{
  position:fixed;
  z-index:130001;
  top:3vh;
  right:2vw;
  bottom:3vh;
  width:min(94vw,920px);
  overflow:auto;
  border-radius:28px;
  background:#fff;
  box-shadow:0 34px 100px rgba(15,23,42,.36);
  border:1px solid rgba(255,255,255,.7);
}

.admin-user-modal-head{
  position:sticky;
  top:0;
  z-index:3;
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  padding:18px 22px;
  border-bottom:1px solid #e2e8f0;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
}

.admin-user-modal-head h2{
  margin:3px 0 0;
}

.admin-user-modal-head button{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:1px solid #e2e8f0;
  background:#fff;
  cursor:pointer;
}

.admin-user-modal-body{
  padding:20px 22px 28px;
}

.admin-user-profile-hero{
  display:grid;
  grid-template-columns:72px minmax(0,1fr) auto;
  gap:16px;
  align-items:center;
  padding:18px;
  border-radius:22px;
  background:linear-gradient(135deg,#f8fbff,#fff);
  border:1px solid #dbeafe;
}

.admin-profile-avatar{
  width:72px;
  height:72px;
  border-radius:22px;
  font-size:28px;
}

.admin-user-profile-hero h3{
  margin:0;
  font-size:24px;
  color:#0f172a;
}

.admin-user-profile-hero a{
  display:block;
  color:#2557a7;
  font-weight:850;
  margin:3px 0 8px;
}

.admin-detail-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin:14px 0;
}

.admin-detail-grid article,
.admin-data-grid > div{
  padding:13px;
  border:1px solid #e2e8f0;
  border-radius:15px;
  background:#fff;
}

.admin-detail-grid span,
.admin-data-grid span{
  display:block;
  color:#64748b;
  font-size:11px;
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:4px;
}

.admin-detail-grid b,
.admin-data-grid b{
  color:#0f172a;
  line-height:1.35;
}

.admin-data-section{
  margin-top:16px;
  padding:17px;
  border:1px solid #e2e8f0;
  border-radius:20px;
  background:#fdfefe;
}

.admin-data-section h3{
  margin:0 0 12px;
}

.admin-data-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:9px;
}

.admin-data-grid .wide{
  grid-column:1 / -1;
}

.admin-data-grid p{
  margin:0;
  color:#334155;
  white-space:pre-wrap;
}

.admin-record-columns{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:16px;
}

.admin-record-columns > article{
  padding:15px;
  border:1px solid #e2e8f0;
  border-radius:18px;
}

.admin-record-columns h3{
  margin:0 0 10px;
}

.admin-mini-records{
  display:grid;
  gap:7px;
  max-height:300px;
  overflow:auto;
}

.admin-mini-records > div{
  padding:10px;
  border-radius:12px;
  background:#f8fafc;
}

.admin-mini-records b,
.admin-mini-records span,
.admin-mini-records small{
  display:block;
}

.admin-mini-records span,
.admin-mini-records small{
  color:#64748b;
  margin-top:2px;
}

.admin-user-timeline{
  position:relative;
  display:grid;
  gap:0;
}

.admin-timeline-row{
  position:relative;
  display:grid;
  grid-template-columns:18px minmax(0,1fr);
  gap:10px;
  padding:0 0 16px;
}

.admin-timeline-row::before{
  content:"";
  position:absolute;
  left:6px;
  top:13px;
  bottom:-2px;
  width:2px;
  background:#dbeafe;
}

.admin-timeline-row:last-child::before{
  display:none;
}

.admin-timeline-dot{
  width:14px;
  height:14px;
  margin-top:4px;
  border-radius:50%;
  background:#2557a7;
  border:3px solid #dbeafe;
  position:relative;
  z-index:1;
}

.admin-timeline-row b,
.admin-timeline-row span,
.admin-timeline-row small{
  display:block;
}

.admin-timeline-row span,
.admin-timeline-row small{
  color:#64748b;
  margin-top:2px;
}

.badge.red{
  background:#fee2e2 !important;
  color:#991b1b !important;
}

@media(max-width:980px){
  .admin-user-row{
    grid-template-columns:1fr;
  }

  .admin-user-actions{
    grid-template-columns:1fr 1fr;
  }

  .admin-detail-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:760px){
  .admin-user-filters,
  .admin-data-grid,
  .admin-record-columns{
    grid-template-columns:1fr;
  }

  .admin-user-counters{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .admin-user-modal{
    inset:0;
    width:100%;
    border-radius:0;
  }

  .admin-user-profile-hero{
    grid-template-columns:58px minmax(0,1fr);
  }

  .admin-user-profile-hero > button{
    grid-column:1 / -1;
  }

  .admin-profile-avatar{
    width:58px;
    height:58px;
  }

  .admin-detail-grid{
    grid-template-columns:1fr;
  }

  .admin-activity-row{
    grid-template-columns:42px minmax(0,1fr);
  }

  .admin-activity-row time{
    grid-column:2;
  }
}


/* =========================================================
   JobsZone v6.6 - Centro de actividad candidatos/empresas
   ========================================================= */

.admin-role-activity-center{
  border-radius:26px !important;
  overflow:hidden;
}

.role-activity-summary{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:16px 0;
}

.role-summary-card{
  padding:18px;
  border-radius:20px;
  border:1px solid #dbeafe;
  background:linear-gradient(135deg,#fff,#f8fbff);
}

.role-summary-card.company{
  border-color:#c7d2fe;
  background:linear-gradient(135deg,#fff,#f5f3ff);
}

.role-summary-card span,
.role-summary-card small,
.role-summary-card em{
  display:block;
}

.role-summary-card span{
  color:#64748b;
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.role-summary-card b{
  display:block;
  margin:5px 0 2px;
  color:#0f172a;
  font-size:34px;
  letter-spacing:-.04em;
}

.role-summary-card small{
  color:#475569;
  line-height:1.4;
}

.role-summary-card em{
  margin-top:7px;
  color:#94a3b8;
  font-size:11px;
  font-style:normal;
}

.role-activity-columns{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.role-activity-panel{
  padding:15px;
  border-radius:20px;
  border:1px solid #e2e8f0;
  background:#fff;
}

.role-activity-panel.candidate-panel{
  border-top:4px solid #2563eb;
}

.role-activity-panel.company-panel{
  border-top:4px solid #7c3aed;
}

.role-activity-panel-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  margin-bottom:10px;
}

.role-activity-panel-head > div{
  display:flex;
  gap:10px;
  min-width:0;
}

.role-activity-panel-head b,
.role-activity-panel-head small{
  display:block;
}

.role-activity-panel-head b{
  color:#0f172a;
  font-size:16px;
}

.role-activity-panel-head small{
  margin-top:2px;
  color:#64748b;
  line-height:1.35;
}

.role-activity-panel-head button{
  flex:0 0 auto;
  padding:7px 9px;
  border:1px solid #dbeafe;
  border-radius:11px;
  background:#f8fbff;
  color:#2557a7;
  font-family:inherit;
  font-size:11px;
  font-weight:900;
  cursor:pointer;
}

.role-activity-icon{
  width:40px;
  height:40px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:13px;
  color:#fff;
  background:#2563eb;
}

.company-panel .role-activity-icon{
  background:#7c3aed;
}

.role-activity-preview{
  display:grid;
  gap:7px;
}

.role-preview-row{
  width:100%;
  display:grid;
  grid-template-columns:38px minmax(0,1fr) auto;
  gap:9px;
  align-items:center;
  padding:9px;
  border:1px solid #edf2f7;
  border-radius:13px;
  background:#fff;
  text-align:left;
  font-family:inherit;
  cursor:pointer;
}

.role-preview-row:hover{
  background:#f8fbff;
  border-color:#dbeafe;
}

.role-preview-row .admin-activity-icon{
  width:38px;
  height:38px;
}

.role-preview-row b,
.role-preview-row small{
  display:block;
}

.role-preview-row b{
  color:#0f172a;
  font-size:13px;
}

.role-preview-row small{
  color:#64748b;
  margin-top:1px;
}

.role-preview-row time{
  color:#94a3b8;
  font-size:10px;
  white-space:nowrap;
}

.role-activity-full{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid #e2e8f0;
  scroll-margin-top:90px;
}

.activity-filter-tabs{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.activity-filter-tabs button{
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid #dbeafe;
  background:#fff;
  color:#475569;
  font-family:inherit;
  font-weight:900;
  cursor:pointer;
}

.activity-filter-tabs button.active{
  background:#2557a7;
  border-color:#2557a7;
  color:#fff;
  box-shadow:0 8px 22px rgba(37,87,167,.2);
}

.section-title.compact{
  margin-bottom:10px;
}

.section-title.compact h3{
  margin:0;
  color:#0f172a;
}

.admin-activity-row.candidate-event{
  border-left:4px solid #2563eb;
}

.admin-activity-row.company-event{
  border-left:4px solid #7c3aed;
}

@media(max-width:900px){
  .role-activity-columns{
    grid-template-columns:1fr;
  }
}

@media(max-width:760px){
  .role-activity-summary{
    grid-template-columns:1fr;
  }

  .role-activity-panel-head{
    display:grid;
  }

  .role-activity-panel-head button{
    width:100%;
  }

  .role-preview-row{
    grid-template-columns:38px minmax(0,1fr);
  }

  .role-preview-row time{
    grid-column:2;
  }
}


/* =========================================================
   JobsZone v6.8 - Módulo privado de carga administrativa
   ========================================================= */

.admin-main-header .section-title{
  align-items:center;
}

.admin-job-loader-page{
  max-width:1180px;
}

.admin-job-loader-hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:22px;
  align-items:center;
  padding:26px;
  margin:22px 0 16px;
  border-radius:28px;
  background:
    radial-gradient(circle at 92% 5%,rgba(96,165,250,.22),transparent 28%),
    linear-gradient(135deg,#f8fbff,#fff);
  border:1px solid #dbeafe;
  box-shadow:0 22px 60px rgba(15,23,42,.08);
}

.admin-job-loader-hero h1{
  margin:7px 0 8px;
  color:#0f172a;
  font-size:34px;
  letter-spacing:-.045em;
}

.admin-job-loader-hero p{
  max-width:760px;
  margin:0;
  color:#64748b;
  line-height:1.55;
}

.admin-loader-privacy-note{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
  padding:10px 13px;
  border-radius:14px;
  background:#ecfdf5;
  color:#166534;
  font-size:12px;
  font-weight:900;
}

.admin-loader-hero-actions{
  display:grid;
  gap:9px;
  min-width:170px;
}

.admin-job-loader-form,
.admin-loaded-jobs-card{
  border-radius:24px !important;
}

.admin-job-form-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

.admin-field{
  display:grid;
  gap:6px;
}

.admin-field.wide{
  grid-column:span 2;
}

.admin-field.full{
  grid-column:1 / -1;
}

.admin-field label{
  color:#334155;
  font-size:12px;
  font-weight:900;
}

.admin-field input,
.admin-field select,
.admin-field textarea{
  width:100%;
}

.admin-field textarea{
  resize:vertical;
  min-height:110px;
}

.admin-featured-toggle{
  grid-column:span 2;
  display:flex;
  align-items:center;
  gap:10px;
  min-height:58px;
  padding:10px 13px;
  border:1px solid #fde68a;
  border-radius:15px;
  background:#fffbeb;
  cursor:pointer;
}

.admin-featured-toggle input{
  width:19px;
  height:19px;
}

.admin-featured-toggle b,
.admin-featured-toggle small{
  display:block;
}

.admin-featured-toggle small{
  margin-top:2px;
  color:#92400e;
}

.admin-job-loader-actions{
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  margin-top:16px;
}

.admin-job-loader-result{
  margin:0 0 14px;
  padding:12px 14px;
  border-radius:14px;
  font-weight:850;
}

.admin-job-loader-result.success{
  background:#ecfdf5;
  color:#166534;
  border:1px solid #bbf7d0;
}

.admin-job-loader-result.error{
  background:#fef2f2;
  color:#991b1b;
  border:1px solid #fecaca;
}

.admin-manual-jobs-list{
  display:grid;
  gap:10px;
}

.admin-manual-job-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:16px;
  align-items:center;
  padding:15px;
  border:1px solid #e2e8f0;
  border-radius:17px;
  background:#fff;
}

.admin-manual-job-title{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:7px;
}

.admin-manual-job-row > div > span,
.admin-manual-job-row > div > small{
  display:block;
  color:#64748b;
  margin-top:4px;
}

.admin-manual-job-actions{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

@media(max-width:980px){
  .admin-job-form-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .admin-manual-job-row{
    grid-template-columns:1fr;
  }

  .admin-manual-job-actions{
    justify-content:flex-start;
  }
}

@media(max-width:760px){
  .admin-job-loader-hero{
    grid-template-columns:1fr;
    padding:20px;
    border-radius:22px;
  }

  .admin-job-loader-hero h1{
    font-size:28px;
  }

  .admin-loader-hero-actions{
    grid-template-columns:1fr 1fr;
    min-width:0;
  }

  .admin-job-form-grid{
    grid-template-columns:1fr;
  }

  .admin-field.wide,
  .admin-field.full,
  .admin-featured-toggle{
    grid-column:1;
  }

  .admin-job-loader-actions,
  .admin-manual-job-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .admin-job-loader-actions .btn,
  .admin-manual-job-actions .btn{
    width:100%;
  }
}


/* =========================================================
   JobsZone v6.9 - Valor breve, relacionados y alertas
   ========================================================= */

.admin-loader-badge{
  background:#ede9fe !important;
  color:#5b21b6 !important;
}

.admin-private-origin{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-bottom:10px;
  padding:7px 10px;
  border-radius:999px;
  background:#ede9fe;
  color:#5b21b6;
  font-size:11px;
  font-weight:950;
}

.admin-value-field small{
  text-align:right;
  color:#64748b;
  font-size:11px;
}

.job-value-card{
  margin:14px 0;
  padding:18px 20px;
  border-radius:20px;
  border:1px solid #bae6fd;
  background:
    radial-gradient(circle at 92% 10%,rgba(56,189,248,.16),transparent 30%),
    linear-gradient(135deg,#f0f9ff,#ffffff);
}

.job-value-card p{
  margin:7px 0 0;
  color:#0f172a;
  font-size:16px;
  font-weight:800;
  line-height:1.55;
}

.similar-alert-cta{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:20px;
  align-items:center;
  margin-top:18px;
  border-radius:22px !important;
  background:
    radial-gradient(circle at 92% 10%,rgba(96,165,250,.18),transparent 32%),
    linear-gradient(135deg,#f8fbff,#ffffff);
  border-color:#bfdbfe !important;
}

.similar-alert-cta h2{
  margin:4px 0;
  color:#0f172a;
}

.similar-alert-cta p{
  margin:0;
  color:#64748b;
}

.similar-alert-result{
  margin-top:10px;
  padding:10px 12px;
  border-radius:12px;
  font-size:12px;
  font-weight:850;
}

.similar-alert-result.success{
  background:#ecfdf5;
  color:#166534;
  border:1px solid #bbf7d0;
}

.similar-alert-result.error{
  background:#fef2f2;
  color:#991b1b;
  border:1px solid #fecaca;
}

.related-job-card p{
  margin:0;
  color:#475569;
  font-size:12px;
  line-height:1.45;
}

@media(max-width:760px){
  .similar-alert-cta{
    grid-template-columns:1fr;
  }

  .similar-alert-cta .btn{
    width:100%;
  }

  .job-value-card{
    padding:15px;
  }
}


/* =========================================================
   JobsZone v7.1 - Dirección y múltiples formas de aplicación
   ========================================================= */

.full-width-field{
  grid-column:1 / -1 !important;
}

.multi-apply-form,
.admin-multi-apply-section{
  padding:16px;
  border:1px solid #dbeafe;
  border-radius:18px;
  background:linear-gradient(135deg,#f8fbff,#fff);
}

.multi-apply-form > p{
  margin:4px 0 14px;
  color:#64748b;
  font-size:12px;
}

.multi-apply-form-grid,
.admin-application-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.multi-apply-form-grid label,
.admin-application-grid label{
  display:grid;
  gap:6px;
}

.multi-apply-form-grid label > span,
.admin-application-grid label > span{
  color:#334155;
  font-size:12px;
  font-weight:900;
}

.internal-application-toggle,
.admin-internal-apply-toggle{
  display:flex !important;
  align-items:center;
  gap:10px;
  margin-top:12px;
  padding:12px;
  border-radius:14px;
  border:1px solid #bbf7d0;
  background:#ecfdf5;
  cursor:pointer;
}

.internal-application-toggle input,
.admin-internal-apply-toggle input{
  width:20px;
  height:20px;
  flex:0 0 auto;
}

.internal-application-toggle b,
.internal-application-toggle small,
.admin-internal-apply-toggle b,
.admin-internal-apply-toggle small{
  display:block;
}

.internal-application-toggle small,
.admin-internal-apply-toggle small{
  margin-top:2px;
  color:#166534;
}

.required-location-field{
  border-color:#f59e0b !important;
  background:#fffbeb !important;
}

.multi-apply-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  align-items:center;
}

.multi-apply-buttons .btn{
  min-height:44px;
}

.whatsapp-apply-btn{
  background:#16a34a !important;
  border-color:#16a34a !important;
  color:#fff !important;
}

.application-unavailable{
  display:inline-block;
  padding:10px 12px;
  border-radius:12px;
  background:#f8fafc;
  color:#64748b;
  font-size:12px;
  font-weight:800;
}

.job-contact-card{
  margin-top:16px;
  border-radius:22px !important;
}

.job-contact-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-bottom:15px;
}

.job-contact-grid > div{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:13px;
  border:1px solid #e2e8f0;
  border-radius:15px;
  background:#fff;
}

.job-contact-grid > div > span{
  width:38px;
  height:38px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:#eff6ff;
  color:#2557a7;
}

.job-contact-grid p{
  margin:0;
  min-width:0;
  color:#475569;
  word-break:break-word;
}

.job-contact-grid b,
.job-contact-grid a{
  display:block;
}

.job-contact-grid b{
  color:#0f172a;
  margin-bottom:3px;
}

.job-contact-grid a{
  color:#2557a7;
  font-weight:850;
  text-decoration:none;
  margin-top:3px;
}

.admin-multi-apply-heading{
  margin-bottom:12px;
}

.admin-multi-apply-heading label{
  display:block;
  color:#0f172a;
  font-size:14px;
}

.admin-multi-apply-heading small{
  display:block;
  margin-top:3px;
  color:#64748b;
}

@media(max-width:760px){
  .multi-apply-form-grid,
  .admin-application-grid,
  .job-contact-grid{
    grid-template-columns:1fr;
  }

  .multi-apply-buttons{
    display:grid;
    grid-template-columns:1fr;
    width:100%;
  }

  .multi-apply-buttons .btn{
    width:100%;
    justify-content:center;
  }
}


/* JobsZone v7.2 - dirección laboral opcional */
.optional-label{
  color:#64748b;
  font-size:11px;
  font-weight:700;
}


/* =========================================================
   JobsZone v7.3 - Navegación móvil y compartir corregido
   ========================================================= */

html.share-modal-open,
body.share-modal-open{
  overflow:hidden !important;
  overscroll-behavior:none;
  touch-action:none;
}

body.share-modal-open #mobileBottomNav{
  visibility:hidden !important;
  pointer-events:none !important;
}

.share-modal-backdrop{
  width:100vw !important;
  height:100dvh !important;
}

.share-modal{
  box-sizing:border-box !important;
}

.share-modal *,
.share-modal *::before,
.share-modal *::after{
  box-sizing:border-box !important;
}

.share-modal-copy{
  min-width:0;
  flex:1 1 auto;
}

.share-modal-copy p{
  display:grid;
  gap:2px;
  min-width:0;
}

.share-modal-copy p b,
.share-modal-copy p span{
  display:block;
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.share-modal .share-close{
  flex:0 0 42px !important;
  width:42px !important;
  min-width:42px !important;
  max-width:42px !important;
  height:42px !important;
  min-height:42px !important;
  padding:0 !important;
  margin:0 !important;
  border-radius:50% !important;
  white-space:normal !important;
}

.share-modal .share-close .icon-svg{
  width:20px !important;
  height:20px !important;
}

.share-modal .share-native-btn,
.share-modal .share-copy-btn{
  max-width:100% !important;
  white-space:normal !important;
}

.share-modal .share-platform{
  width:100% !important;
  min-width:0 !important;
  max-width:none !important;
  margin:0 !important;
  white-space:normal !important;
  overflow:hidden !important;
  line-height:1.15 !important;
  box-shadow:none !important;
}

.share-modal .share-platform span{
  display:block !important;
  width:100% !important;
  min-width:0 !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
  white-space:nowrap !important;
  text-align:center !important;
}

.share-modal .share-platform i{
  flex:0 0 auto !important;
}

@media(max-width:760px){
  .share-modal-backdrop{
    inset:0 !important;
    z-index:2147483000 !important;
  }

  .share-modal{
    position:fixed !important;
    z-index:2147483001 !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    top:auto !important;
    transform:none !important;
    width:100vw !important;
    max-width:100vw !important;
    max-height:min(88dvh,720px) !important;
    margin:0 !important;
    padding:10px 14px calc(16px + env(safe-area-inset-bottom)) !important;
    border-radius:24px 24px 0 0 !important;
    overflow-x:hidden !important;
    overflow-y:auto !important;
    overscroll-behavior:contain !important;
    -webkit-overflow-scrolling:touch;
  }

  .share-modal-handle{
    display:block !important;
    width:42px !important;
    height:5px !important;
    margin:0 auto 10px !important;
  }

  .share-modal-head{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) 42px !important;
    gap:10px !important;
    align-items:start !important;
    width:100% !important;
  }

  .share-modal-head h2{
    margin:2px 0 4px !important;
    font-size:20px !important;
    line-height:1.15 !important;
  }

  .share-kicker{
    font-size:10px !important;
  }

  .share-modal-head p{
    font-size:12px !important;
    line-height:1.3 !important;
  }

  .share-modal .share-native-btn{
    display:grid !important;
    grid-template-columns:24px minmax(0,1fr) !important;
    width:100% !important;
    min-height:58px !important;
    margin:12px 0 10px !important;
    padding:10px 12px !important;
    border-radius:16px !important;
    text-align:left !important;
  }

  .share-modal .share-native-btn > .icon-svg{
    width:22px !important;
    height:22px !important;
  }

  .share-modal .share-native-btn b{
    font-size:14px !important;
  }

  .share-modal .share-native-btn small{
    display:block !important;
    font-size:11px !important;
  }

  .share-modal .share-platform-grid{
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:8px !important;
    width:100% !important;
  }

  .share-modal .share-platform{
    display:grid !important;
    grid-template-rows:38px auto !important;
    place-items:center !important;
    gap:5px !important;
    min-height:72px !important;
    height:auto !important;
    padding:7px 3px !important;
    border-radius:14px !important;
    font-size:10px !important;
  }

  .share-modal .share-platform i{
    width:38px !important;
    height:38px !important;
    border-radius:12px !important;
    font-size:14px !important;
  }

  .share-modal .share-copy-btn{
    display:flex !important;
    width:100% !important;
    min-height:44px !important;
    margin:10px 0 0 !important;
    padding:9px 12px !important;
    border-radius:14px !important;
    font-size:12px !important;
  }

  .share-copy-status{
    margin:7px 0 0 !important;
    padding:0 4px !important;
    font-size:10px !important;
    line-height:1.35 !important;
  }

  #mobileBottomNav{
    max-width:100vw !important;
    overflow:hidden !important;
  }

  #mobileBottomNav a{
    min-width:0 !important;
    overflow:hidden !important;
  }

  #mobileBottomNav .bottom-nav-icon{
    max-width:100% !important;
  }

  #mobileBottomNav .bottom-nav-icon span{
    max-width:100% !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
    white-space:nowrap !important;
  }
}

@media(max-width:480px){
  .share-modal .share-platform-grid{
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:6px !important;
  }

  .share-modal .share-platform{
    font-size:9px !important;
  }
}

@media(max-width:360px){
  .share-modal{
    padding-left:10px !important;
    padding-right:10px !important;
  }

  .share-modal .share-platform-grid{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  }
}

@media(orientation:landscape) and (max-height:520px){
  .share-modal{
    max-height:96dvh !important;
    border-radius:18px 18px 0 0 !important;
  }

  .share-modal .share-native-btn{
    margin:8px 0 !important;
  }

  .share-modal .share-platform{
    min-height:62px !important;
  }

  .share-copy-status{
    display:none !important;
  }
}


/* =========================================================
   JobsZone v7.4 - AdSense responsive y diagnóstico
   ========================================================= */

.ad-real{
  position:relative;
  display:block;
  width:100%;
  max-width:100% !important;
  min-width:0;
  min-height:118px;
  margin:16px auto !important;
  padding:24px 10px 10px !important;
  overflow:hidden;
  border:0 !important;
  border-radius:16px;
  background:#f8fafc;
  box-shadow:none !important;
  text-align:center;
}

.ad-real .ad-label{
  position:absolute;
  top:6px;
  left:50%;
  transform:translateX(-50%);
  margin:0 !important;
  color:#94a3b8;
  font-size:9px;
  font-weight:700;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.ad-real ins.adsbygoogle{
  display:block;
  width:100% !important;
  min-width:0 !important;
  min-height:90px;
  margin:0 auto;
  overflow:hidden;
}

.ad-real[data-ad-state="filled"]{
  min-height:0;
  background:transparent;
}

.ad-real[data-ad-state="unfilled"],
.ad-real.ad-unfilled{
  display:none !important;
  min-height:0 !important;
  height:0 !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  overflow:hidden !important;
}

.ad-real[data-ad-state="error"]{
  display:none !important;
}

.ad-auto-anchor{
  display:none !important;
}

.ad-auto-diagnostic,
.ad-config-warning{
  display:grid;
  gap:4px;
  width:100%;
  margin:12px 0;
  padding:11px 13px;
  border:1px dashed #cbd5e1;
  border-radius:14px;
  background:#f8fafc;
  color:#64748b;
  text-align:left;
  font-size:11px;
}

.ad-auto-diagnostic b,
.ad-config-warning b{
  color:#334155;
}

.ad-admin-debug{
  margin-top:7px;
  color:#64748b;
  font-size:10px;
  font-weight:750;
  text-align:center;
}

.adsense-health-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px;
  margin-bottom:12px;
}

.adsense-health-grid > div{
  display:grid;
  gap:3px;
  padding:10px;
  border:1px solid #dbeafe;
  border-radius:13px;
  background:#fff;
}

.adsense-health-grid span{
  color:#64748b;
  font-size:10px;
  font-weight:800;
}

.adsense-health-grid b{
  color:#0f172a;
  font-size:13px;
}

.adsense-job-slot-status{
  display:grid;
  gap:5px;
  margin-top:10px;
  padding:10px 12px;
  border-radius:13px;
  background:#fff;
  border:1px solid #e2e8f0;
  color:#475569;
  font-size:11px;
}

.adsense-diagnostic-note{
  margin-top:9px;
  padding:9px 11px;
  border-radius:12px;
  background:#fffbeb;
  color:#92400e;
  font-size:11px;
}

.job-detail-page .detail-layout > section > .ad-real:first-of-type{
  margin-top:14px !important;
}

@media(max-width:760px){
  .ad-real{
    width:100% !important;
    min-height:112px;
    margin:12px 0 !important;
    padding:22px 4px 8px !important;
    border-radius:12px;
  }

  .ad-real ins.adsbygoogle{
    width:100% !important;
    min-height:90px;
  }

  .job-detail-page .ad-real{
    max-width:100vw !important;
    overflow:hidden !important;
  }

  .adsense-health-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}


/* =========================================================
   JobsZone v7.6 - Guardados por interés y Me gusta
   ========================================================= */

.job-card-tools{
  align-items:flex-start !important;
}

.job-preference-controls{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}

.job-preference-controls.compact{
  display:flex;
}

.preference-btn{
  min-height:38px !important;
  padding:8px 11px !important;
  border-radius:12px !important;
  background:#fff !important;
  box-shadow:none !important;
  white-space:nowrap;
}

.save-preference-btn{
  color:#2557a7 !important;
  border:1px solid #bfdbfe !important;
}

.save-preference-btn.active{
  background:#dbeafe !important;
  border-color:#60a5fa !important;
  color:#1d4ed8 !important;
}

.like-preference-btn{
  color:#be123c !important;
  border:1px solid #fecdd3 !important;
}

.like-preference-btn.active{
  background:#ffe4e6 !important;
  border-color:#fb7185 !important;
  color:#be123c !important;
}

.preference-btn.active .icon-svg svg{
  fill:currentColor;
}

.preference-btn:disabled{
  opacity:.65;
  cursor:wait;
}

.preference-explainer{
  display:flex;
  flex-wrap:wrap;
  gap:6px 14px;
  margin:7px 0 2px;
  color:#64748b;
  font-size:10px;
  line-height:1.35;
}

.preference-explainer b{
  color:#334155;
}

.detail-preferences{
  display:inline-flex;
  vertical-align:middle;
}

.related-job-card{
  display:grid !important;
  gap:10px;
}

.related-job-main-link{
  display:grid;
  gap:7px;
  color:inherit;
  text-decoration:none;
}

.related-job-card .job-preference-controls{
  padding-top:9px;
  border-top:1px solid #edf2f7;
}

.related-job-card .preference-btn{
  flex:1 1 110px;
}

.job-preference-toast{
  position:fixed;
  z-index:2147482000;
  left:50%;
  bottom:calc(24px + env(safe-area-inset-bottom));
  transform:translate(-50%,20px);
  opacity:0;
  display:flex;
  align-items:center;
  gap:9px;
  max-width:min(92vw,460px);
  padding:12px 16px;
  border-radius:15px;
  color:#fff;
  font-size:13px;
  font-weight:900;
  box-shadow:0 18px 50px rgba(15,23,42,.25);
  transition:opacity .2s ease,transform .2s ease;
}

.job-preference-toast.show{
  opacity:1;
  transform:translate(-50%,0);
}

.job-preference-toast.saved{
  background:#1d4ed8;
}

.job-preference-toast.liked{
  background:#be123c;
}

.candidate-preference-stack{
  display:grid;
  gap:14px;
}

.preference-summary-card{
  border-radius:21px !important;
}

.preference-summary-card.saved-summary{
  border-top:4px solid #2563eb !important;
}

.preference-summary-card.liked-summary{
  border-top:4px solid #e11d48 !important;
}

.preference-definition{
  margin:0 0 12px;
  padding:10px 12px;
  border-radius:13px;
  background:#f8fafc;
  color:#64748b;
  font-size:12px;
  line-height:1.5;
}

.preference-definition b{
  color:#0f172a;
}

.candidate-preference-mini{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) auto auto;
  gap:9px;
  align-items:center;
}

.candidate-preference-mini > div{
  min-width:0;
}

.candidate-preference-mini b,
.candidate-preference-mini span{
  display:block;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.candidate-preference-mini small{
  padding:5px 8px;
  border-radius:999px;
  background:#f1f5f9;
  color:#475569;
  font-size:9px;
  font-weight:900;
}

.job-preferences-center{
  max-width:1120px;
}

.job-preferences-hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:22px;
  align-items:center;
  margin:22px 0 15px;
  padding:25px;
  border-radius:27px;
  border:1px solid #dbeafe;
  background:
    radial-gradient(circle at 92% 5%,rgba(96,165,250,.18),transparent 28%),
    linear-gradient(135deg,#f8fbff,#fff);
  box-shadow:0 20px 55px rgba(15,23,42,.075);
}

.job-preferences-hero h1{
  margin:5px 0 7px;
  color:#0f172a;
  font-size:34px;
  letter-spacing:-.045em;
}

.job-preferences-hero p{
  margin:0;
  color:#64748b;
  line-height:1.55;
}

.preference-hero-actions{
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.preference-difference-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-bottom:15px;
}

.preference-definition-card{
  display:grid;
  grid-template-columns:52px minmax(0,1fr) auto;
  gap:13px;
  align-items:center;
  padding:17px;
  border-radius:20px;
  background:#fff;
  border:1px solid #e2e8f0;
}

.preference-definition-card > span{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:16px;
}

.preference-definition-card.saved > span{
  background:#dbeafe;
  color:#1d4ed8;
}

.preference-definition-card.liked > span{
  background:#ffe4e6;
  color:#be123c;
}

.preference-definition-card h2{
  margin:0 0 4px;
  color:#0f172a;
  font-size:17px;
}

.preference-definition-card p{
  margin:0;
  color:#64748b;
  font-size:12px;
  line-height:1.45;
}

.preference-definition-card strong{
  font-size:28px;
  color:#0f172a;
}

.preference-list-section{
  margin-bottom:15px;
  border-radius:23px !important;
}

.saved-list-section{
  border-top:4px solid #2563eb !important;
}

.liked-list-section{
  border-top:4px solid #e11d48 !important;
}

.preference-count{
  min-width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#f1f5f9;
  color:#0f172a;
  font-size:17px;
  font-weight:950;
}

.candidate-preference-job-list{
  display:grid;
  gap:10px;
}

.candidate-preference-job-card{
  display:grid;
  grid-template-columns:48px minmax(0,1fr) auto;
  gap:13px;
  align-items:center;
  padding:14px;
  border:1px solid #e2e8f0;
  border-radius:17px;
  background:#fff;
}

.preference-job-icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:14px;
}

.candidate-preference-job-card.saved .preference-job-icon{
  background:#dbeafe;
  color:#1d4ed8;
}

.candidate-preference-job-card.liked .preference-job-icon{
  background:#ffe4e6;
  color:#be123c;
}

.preference-job-body{
  min-width:0;
}

.preference-job-body h3{
  margin:2px 0;
  color:#0f172a;
}

.preference-job-body > b,
.preference-job-body > p,
.preference-job-body > small{
  display:block;
  margin:2px 0;
}

.preference-job-body > p,
.preference-job-body > small{
  color:#64748b;
}

.preference-job-body > small{
  font-size:11px;
}

.preference-type-label{
  color:#64748b;
  font-size:9px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.preference-job-actions{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.preference-empty-state{
  display:grid;
  justify-items:center;
  gap:7px;
  padding:28px;
  border:1px dashed #cbd5e1;
  border-radius:18px;
  background:#f8fafc;
  text-align:center;
}

.preference-empty-state > .icon-svg{
  width:34px;
  height:34px;
  color:#64748b;
}

.preference-empty-state p{
  margin:0 0 5px;
  color:#64748b;
}

@media(max-width:900px){
  .job-preferences-hero{
    grid-template-columns:1fr;
  }

  .preference-hero-actions{
    justify-content:flex-start;
  }

  .candidate-preference-job-card{
    grid-template-columns:44px minmax(0,1fr);
  }

  .preference-job-actions{
    grid-column:1 / -1;
    justify-content:flex-start;
    padding-left:57px;
  }
}

@media(max-width:760px){
  .job-card-tools{
    display:flex !important;
    gap:6px !important;
  }

  .job-card-tools .job-preference-controls{
    display:flex !important;
    gap:6px !important;
  }

  .job-card-tools .preference-btn{
    display:inline-flex !important;
    width:40px !important;
    min-width:40px !important;
    height:40px !important;
    min-height:40px !important;
    padding:0 !important;
    border-radius:12px !important;
    font-size:0 !important;
  }

  .job-card-tools .preference-btn::before{
    content:none !important;
  }

  .job-card-tools .preference-btn .icon-svg{
    width:19px !important;
    height:19px !important;
  }

  .job-card-tools .card-share-btn{
    display:none !important;
  }

  .preference-explainer{
    display:none;
  }

  .detail-card .actions .detail-preferences{
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
  }

  .detail-card .actions .detail-preferences .preference-btn{
    width:100%;
    justify-content:center;
  }

  .preference-difference-grid{
    grid-template-columns:1fr;
  }

  .job-preferences-hero{
    padding:19px;
    border-radius:21px;
  }

  .job-preferences-hero h1{
    font-size:27px;
  }

  .preference-hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .preference-hero-actions .btn{
    width:100%;
  }

  .candidate-preference-job-card{
    grid-template-columns:40px minmax(0,1fr);
    padding:12px;
  }

  .preference-job-icon{
    width:40px;
    height:40px;
  }

  .preference-job-actions{
    padding-left:0;
    display:grid;
    grid-template-columns:1fr;
  }

  .preference-job-actions .btn{
    width:100%;
  }

  .preference-definition-card{
    grid-template-columns:44px minmax(0,1fr) auto;
  }

  .preference-definition-card > span{
    width:44px;
    height:44px;
  }

  .candidate-preference-mini{
    grid-template-columns:minmax(0,1fr) auto;
  }

  .candidate-preference-mini small{
    display:none;
  }
}


/* =========================================================
   JobsZone v7.7 - Diagnóstico AdSense solo en configuración
   ========================================================= */

/* Protección adicional: nunca mostrar mensajes técnicos en páginas públicas */
.ad-admin-debug,
.ad-auto-diagnostic,
.ad-config-warning{
  display:none !important;
  visibility:hidden !important;
  height:0 !important;
  min-height:0 !important;
  margin:0 !important;
  padding:0 !important;
  overflow:hidden !important;
}

/* Los anuncios continúan visibles; solo se ocultan identificadores internos */
.ad-real[data-jz-ad-slot]::after{
  content:none !important;
}

.ad-real [data-ad-debug-for]{
  display:none !important;
}


/* =========================================================
   JobsZone v7.8 - AdSense móvil corregido
   ========================================================= */

.ad-real{
  contain:layout style;
}

.ad-real ins.adsbygoogle{
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
}

.mobile-ad-slots-header h2{
  margin:4px 0;
  color:#0f172a;
}

@media(max-width:760px){
  /* Antes el anuncio lateral estaba oculto en móvil.
     Ahora se mueve dentro del contenido mediante JavaScript. */
  .job-detail-sidebar > .ad{
    display:none !important;
  }

  .ad-real.ad-mobile-unit{
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    min-height:100px;
    margin:12px 0 !important;
    padding:20px 0 6px !important;
    overflow:hidden !important;
    contain:layout style;
  }

  .ad-real.ad-mobile-unit ins.adsbygoogle{
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    margin:0 auto !important;
    padding:0 !important;
  }

  .job-detail-page .detail-layout > section{
    min-width:0 !important;
    width:100% !important;
  }

  .job-detail-page .ad-real iframe{
    max-width:100% !important;
  }
}


/* =========================================================
   JobsZone v7.9 - Anuncios del inicio en escritorio y móvil
   ========================================================= */

.home-ad-zone{
  width:100%;
  max-width:1020px;
  min-width:0;
  margin:16px auto;
}

.home-ad-zone:empty{
  display:none !important;
  margin:0 !important;
}

.home-ad-zone > .ad-real{
  width:100% !important;
  max-width:100% !important;
  margin:0 !important;
}

.home-ad-zone-top{
  margin-top:14px;
  margin-bottom:18px;
}

.home-ad-zone-middle{
  margin-top:22px;
  margin-bottom:18px;
}

.results-inline-ad-wrap{
  width:100%;
  min-width:0;
  overflow:hidden;
}

.results-inline-ad-wrap:empty{
  display:none !important;
  margin:0 !important;
}

.results-inline-ad-wrap > .ad-real{
  width:100% !important;
  max-width:100% !important;
  margin:0 !important;
}

@media(max-width:760px){
  .home-ad-zone{
    width:100%;
    max-width:100%;
    margin:11px 0;
    padding:0;
    overflow:hidden;
  }

  .home-ad-zone > .ad-real,
  .results-inline-ad-wrap > .ad-real{
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    margin:0 !important;
  }

  .home-ad-zone ins.adsbygoogle,
  .results-inline-ad-wrap ins.adsbygoogle{
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
  }

  .home-ad-zone-top{
    margin-top:10px;
    margin-bottom:12px;
  }

  .home-ad-zone-middle{
    margin-top:15px;
    margin-bottom:12px;
  }
}


/* JobsZone v8.0 - Página pública indexable del empleo */
.public-job-summary{
  margin:16px 0;
  padding:18px;
  border:1px solid #dbeafe;
  border-radius:18px;
  background:#f8fbff;
}
.public-job-summary h2{
  margin:0 0 9px;
  color:#0f172a;
  font-size:20px;
}
.public-job-summary p{
  margin:0;
  color:#475569;
  line-height:1.7;
  white-space:pre-line;
}
.public-seo-page .public-job-detail{
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}
@media(max-width:760px){
  .public-job-summary{padding:15px;border-radius:15px}
  .public-job-summary h2{font-size:18px}
}

/* JobsZone v8.1 - multilingual selector */
.language-switcher{display:inline-flex;align-items:center;gap:5px;height:38px;padding:0 8px;border:1px solid #dbeafe;border-radius:12px;background:#fff;color:#2557a7;font-size:12px;font-weight:900;flex:0 0 auto}
.language-switcher select{width:auto!important;min-width:45px;height:30px;margin:0!important;padding:0 20px 0 5px!important;border:0!important;background-color:transparent!important;color:#0f172a;font-size:11px;font-weight:950;box-shadow:none!important;cursor:pointer}
.public-language-switch{display:inline-flex;align-items:center;gap:4px;padding:4px;border:1px solid #dbeafe;border-radius:12px;background:#fff}
.public-language-switch a{padding:7px 9px;border-radius:9px;color:#475569;font-size:11px;font-weight:850;text-decoration:none}
.public-language-switch a.active{background:#2557a7;color:#fff}
@media(max-width:1050px){.language-switcher>span{display:none}}
@media(max-width:760px){.language-switcher{width:52px;height:36px;padding:0 4px}.language-switcher select{min-width:42px;width:42px!important;padding-left:4px!important;padding-right:15px!important}.public-language-switch{width:100%;justify-content:center;margin-bottom:8px}.public-language-switch a{flex:1 1 0;text-align:center}}


/* JobsZone v8.3 - automatic job-content translation */
.job-translation-status{
  display:flex;
  align-items:center;
  gap:8px;
  margin:12px 0;
  padding:10px 12px;
  border-radius:14px;
  font-size:11px;
  font-weight:800;
  line-height:1.4;
}
.job-translation-status.success{
  border:1px solid #bfdbfe;
  background:#eff6ff;
  color:#1d4ed8;
}
.job-translation-status.warning{
  border:1px solid #fde68a;
  background:#fffbeb;
  color:#92400e;
}
.job-translation-status .icon-svg{flex:0 0 auto}
@media(max-width:760px){
  .job-translation-status{margin:10px 0;padding:9px 10px;font-size:10px}
}


/* =========================================================
   JobsZone v8.4 - Mobile header, drawer and job-card controls
   ========================================================= */

body.mobile-menu-open{
  overflow:hidden !important;
  overscroll-behavior:none;
}

@media(max-width:760px){
  .site-header .topbar{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) auto !important;
    align-items:center !important;
    gap:7px !important;
    min-height:62px !important;
    padding:9px 10px !important;
  }

  .site-header .brand{
    min-width:0 !important;
    max-width:100% !important;
    font-size:22px !important;
    line-height:1 !important;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .site-header .header-actions{
    display:grid !important;
    align-items:center !important;
    justify-content:end !important;
    gap:5px !important;
    width:auto !important;
    min-width:0 !important;
  }

  .site-header .header-actions.is-guest{
    grid-template-columns:44px 56px 40px !important;
  }

  .site-header .header-actions.is-authenticated{
    grid-template-columns:44px 40px 40px 40px !important;
  }

  .site-header .language-switcher{
    width:44px !important;
    min-width:44px !important;
    height:38px !important;
    padding:0 2px !important;
    border-radius:11px !important;
  }

  .site-header .language-switcher select{
    display:block !important;
    width:40px !important;
    min-width:40px !important;
    height:36px !important;
    padding:0 14px 0 5px !important;
    font-size:10px !important;
    text-align:center;
  }

  .site-header .mobile-login-chip{
    display:flex !important;
    width:56px !important;
    min-width:56px !important;
    max-width:56px !important;
    height:38px !important;
    min-height:38px !important;
    padding:0 5px !important;
    border-radius:11px !important;
    font-size:11px !important;
    line-height:1 !important;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .site-header .mobile-menu-btn{
    display:flex !important;
    width:40px !important;
    min-width:40px !important;
    max-width:40px !important;
    height:40px !important;
    min-height:40px !important;
    padding:0 !important;
    border:1px solid #dbe3ef !important;
    border-radius:11px !important;
  }

  .site-header .mobile-menu-btn .menu-btn-label{
    display:none !important;
  }

  .site-header .mobile-menu-btn .icon-svg{
    width:20px !important;
    height:20px !important;
  }

  .site-header .notification-wrap,
  .site-header .notification-bell,
  .site-header .mobile-profile-chip{
    width:40px !important;
    min-width:40px !important;
    max-width:40px !important;
    height:40px !important;
    min-height:40px !important;
  }

  .mobile-drawer{
    width:min(92vw,370px) !important;
    padding:calc(12px + env(safe-area-inset-top)) 14px calc(18px + env(safe-area-inset-bottom)) !important;
  }

  .mobile-drawer-head{
    position:sticky !important;
    top:calc(-12px - env(safe-area-inset-top)) !important;
    z-index:4;
    margin:-12px -14px 14px !important;
    padding:calc(12px + env(safe-area-inset-top)) 14px 10px !important;
    background:rgba(255,255,255,.97);
    border-bottom:1px solid #eef2f7;
    backdrop-filter:blur(12px);
  }

  .mobile-drawer .drawer-brand{
    font-size:22px !important;
  }

  .mobile-drawer-close.labeled-close{
    display:inline-flex !important;
    width:auto !important;
    min-width:68px !important;
    height:38px !important;
    padding:0 10px !important;
    gap:5px !important;
    border-radius:11px !important;
    font-size:11px !important;
    white-space:nowrap;
  }

  .mobile-drawer-close.labeled-close .icon-svg{
    width:15px !important;
    height:15px !important;
  }

  /* Remove the empty square shown at the top-right of job cards.
     Save and Like now appear as two clear labeled buttons below the title. */
  .job-card .job-head{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) !important;
    gap:9px !important;
  }

  .job-card .job-card-tools{
    display:block !important;
    width:100% !important;
    min-width:0 !important;
  }

  .job-card .job-card-tools .job-preference-controls{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:7px !important;
    width:100% !important;
  }

  .job-card .job-card-tools .preference-btn{
    display:inline-flex !important;
    width:100% !important;
    min-width:0 !important;
    max-width:none !important;
    height:38px !important;
    min-height:38px !important;
    padding:0 8px !important;
    gap:6px !important;
    border-radius:11px !important;
    font-size:11px !important;
    font-weight:900 !important;
    overflow:hidden;
  }

  .job-card .job-card-tools .preference-btn span{
    display:block !important;
    min-width:0 !important;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  .job-card .job-card-tools .preference-btn .icon-svg{
    display:inline-flex !important;
    width:16px !important;
    height:16px !important;
    color:currentColor !important;
  }

  .job-card .job-card-tools .preference-btn .icon-svg svg{
    display:block !important;
    width:100% !important;
    height:100% !important;
    stroke:currentColor !important;
  }

  .job-card .job-card-tools .card-share-btn{
    display:none !important;
  }
}

@media(max-width:360px){
  .site-header .brand{
    font-size:20px !important;
  }

  .site-header .header-actions.is-guest{
    grid-template-columns:42px 52px 38px !important;
  }

  .site-header .language-switcher{
    width:42px !important;
    min-width:42px !important;
  }

  .site-header .mobile-login-chip{
    width:52px !important;
    min-width:52px !important;
    max-width:52px !important;
    font-size:10px !important;
  }

  .site-header .mobile-menu-btn{
    width:38px !important;
    min-width:38px !important;
    max-width:38px !important;
  }
}


/* =========================================================
   JobsZone v8.5 - Remote companies directory
   ========================================================= */

.home-remote-jobs-cta{
  display:grid;
  grid-template-columns:54px minmax(0,1fr) auto;
  gap:14px;
  align-items:center;
  margin-top:18px;
  padding:15px 17px;
  border:1px solid #bfdbfe;
  border-radius:19px;
  background:
    radial-gradient(circle at 92% 12%,rgba(56,189,248,.22),transparent 24%),
    linear-gradient(135deg,#eff6ff,#f8fbff 55%,#ecfeff);
  color:#0f172a;
  text-decoration:none;
  box-shadow:0 16px 40px rgba(37,87,167,.10);
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}

.home-remote-jobs-cta:hover{
  transform:translateY(-2px);
  border-color:#60a5fa;
  box-shadow:0 20px 48px rgba(37,87,167,.16);
}

.home-remote-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:#2557a7;
  color:#fff;
}

.home-remote-icon .icon-svg{
  width:27px;
  height:27px;
}

.home-remote-jobs-cta > span:nth-child(2){
  display:grid;
  gap:2px;
  min-width:0;
}

.home-remote-jobs-cta small{
  color:#0369a1;
  font-size:10px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.home-remote-jobs-cta b{
  font-size:19px;
}

.home-remote-jobs-cta em{
  color:#64748b;
  font-size:12px;
  font-style:normal;
  line-height:1.45;
}

.home-remote-jobs-cta strong{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#2557a7;
  font-size:12px;
  white-space:nowrap;
}

.remote-directory-page{
  max-width:1160px;
}

.remote-directory-hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) 210px;
  gap:26px;
  align-items:center;
  margin:22px 0 15px;
  padding:28px;
  border:1px solid #dbeafe;
  border-radius:28px;
  background:
    radial-gradient(circle at 90% 10%,rgba(14,165,233,.22),transparent 30%),
    linear-gradient(135deg,#f8fbff,#eef6ff 52%,#ecfeff);
  box-shadow:0 22px 60px rgba(15,23,42,.08);
}

.remote-directory-hero h1{
  margin:6px 0 9px;
  color:#0f172a;
  font-size:38px;
  line-height:1.08;
  letter-spacing:-.045em;
}

.remote-directory-hero p{
  margin:0;
  max-width:760px;
  color:#64748b;
  line-height:1.65;
}

.remote-directory-visual{
  min-height:170px;
  display:grid;
  place-items:center;
  align-content:center;
  border:1px solid rgba(255,255,255,.7);
  border-radius:24px;
  background:rgba(255,255,255,.72);
  color:#2557a7;
  box-shadow:inset 0 1px rgba(255,255,255,.9);
}

.remote-directory-visual > span{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:#dbeafe;
}

.remote-directory-visual .icon-svg{
  width:30px;
  height:30px;
}

.remote-directory-visual strong{
  margin-top:7px;
  color:#0f172a;
  font-size:33px;
  line-height:1;
}

.remote-directory-visual b{
  margin-top:4px;
  font-size:14px;
}

.remote-session-notice{
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-top:15px;
  padding:9px 11px;
  border:1px solid #fde68a;
  border-radius:12px;
  background:#fffbeb;
  color:#92400e;
  font-size:11px;
  font-weight:800;
  line-height:1.4;
}

.remote-session-notice.registered{
  border-color:#bbf7d0;
  background:#f0fdf4;
  color:#166534;
}

.remote-directory-controls{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(290px,430px);
  gap:12px;
  align-items:center;
  margin-bottom:15px;
  padding:12px;
  border:1px solid #e2e8f0;
  border-radius:18px;
  background:#fff;
}

.remote-scope-tabs{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:7px;
}

.remote-scope-tabs button{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:45px;
  padding:9px 12px;
  border:1px solid #dbeafe;
  border-radius:13px;
  background:#f8fafc;
  color:#475569;
  font-size:12px;
  font-weight:900;
  cursor:pointer;
}

.remote-scope-tabs button.active{
  border-color:#2557a7;
  background:#2557a7;
  color:#fff;
}

.remote-search{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:7px;
}

.remote-search input{
  min-width:0;
}

.remote-directory-heading{
  display:flex;
  justify-content:space-between;
  margin:6px 0 12px;
}

.remote-directory-heading h2{
  margin:4px 0;
  color:#0f172a;
  font-size:25px;
}

.remote-directory-heading p{
  margin:0;
  color:#64748b;
}

.remote-company-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.remote-company-card{
  display:flex;
  flex-direction:column;
  gap:14px;
  min-width:0;
  padding:18px;
  border:1px solid #dbe3ef;
  border-radius:22px;
  background:#fff;
  box-shadow:0 14px 35px rgba(15,23,42,.06);
}

.remote-company-head{
  display:grid;
  grid-template-columns:54px minmax(0,1fr);
  gap:12px;
  align-items:start;
}

.remote-company-logo{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border:1px solid #dbeafe;
  border-radius:16px;
  background:#eff6ff;
  color:#2557a7;
  font-size:16px;
  font-weight:950;
}

.remote-company-logo.compact{
  width:46px;
  height:46px;
  border-radius:13px;
}

.remote-company-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  background:#fff;
}

.remote-company-title{
  min-width:0;
}

.remote-company-title h2{
  margin:5px 0 3px;
  color:#0f172a;
  font-size:20px;
  overflow-wrap:anywhere;
}

.remote-company-title p{
  display:flex;
  align-items:center;
  gap:4px;
  margin:0;
  color:#64748b;
  font-size:11px;
}

.remote-scope-badge{
  display:inline-flex;
  align-items:center;
  padding:5px 8px;
  border-radius:999px;
  background:#dbeafe;
  color:#1d4ed8;
  font-size:9px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.remote-scope-badge.non_resident{
  background:#f3e8ff;
  color:#7e22ce;
}

.remote-scope-badge.both{
  background:#dcfce7;
  color:#15803d;
}

.remote-sponsorship{
  grid-column:1 / -1;
  display:inline-flex;
  align-items:center;
  gap:5px;
  width:max-content;
  max-width:100%;
  padding:6px 8px;
  border-radius:10px;
  font-size:10px;
  font-weight:850;
}

.remote-sponsorship.yes{
  background:#ecfdf5;
  color:#047857;
}

.remote-sponsorship.no{
  background:#f8fafc;
  color:#64748b;
}

.remote-company-description{
  margin:0;
  color:#475569;
  font-size:13px;
  line-height:1.6;
  white-space:pre-line;
}

.remote-company-information{
  display:grid;
  gap:9px;
}

.remote-company-information > div{
  padding:11px 12px;
  border:1px solid #edf2f7;
  border-radius:14px;
  background:#f8fafc;
}

.remote-company-information span{
  display:flex;
  align-items:center;
  gap:6px;
  color:#334155;
  font-size:10px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.remote-company-information p{
  margin:6px 0 0;
  color:#64748b;
  font-size:12px;
  line-height:1.5;
  white-space:pre-line;
}

.remote-locked-application{
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  gap:11px;
  margin-top:auto;
  padding:13px;
  border:1px solid #fde68a;
  border-radius:16px;
  background:#fffbeb;
}

.remote-lock-icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:#fef3c7;
  color:#92400e;
}

.remote-locked-application b{
  color:#78350f;
  font-size:12px;
}

.remote-locked-application p{
  margin:4px 0 0;
  color:#92400e;
  font-size:11px;
  line-height:1.45;
}

.remote-lock-actions{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:7px;
}

.remote-lock-actions .btn{
  width:100%;
  justify-content:center;
}

.remote-application-panel{
  margin-top:auto;
  padding:13px;
  border:1px solid #bbf7d0;
  border-radius:16px;
  background:#f0fdf4;
}

.remote-application-heading{
  display:flex;
  align-items:center;
  gap:6px;
  margin-bottom:10px;
  color:#166534;
  font-size:11px;
}

.remote-application-actions{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:7px;
}

.remote-application-btn{
  width:100%;
  min-width:0;
  justify-content:center;
  text-align:center;
  font-size:11px !important;
  white-space:normal !important;
}

.remote-application-btn.whatsapp{
  background:#16a34a !important;
  color:#fff !important;
  border-color:#16a34a !important;
}

.remote-directory-disclaimer{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:16px 0 28px;
  padding:14px 16px;
  border:1px solid #dbeafe;
  border-radius:16px;
  background:#f8fbff;
  color:#475569;
}

.remote-directory-disclaimer p{
  margin:0;
  font-size:11px;
  line-height:1.55;
}

.remote-loading,
.remote-empty-state{
  grid-column:1 / -1;
  display:grid;
  justify-items:center;
  gap:8px;
  padding:35px;
  border:1px dashed #cbd5e1;
  border-radius:19px;
  background:#f8fafc;
  color:#64748b;
  text-align:center;
}

.remote-empty-state h3,
.remote-empty-state p{
  margin:0;
}

.admin-remote-directory-page{
  max-width:1150px;
}

.admin-remote-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.admin-remote-header h1{
  margin:5px 0;
}

.admin-remote-header p{
  margin:0;
  color:#64748b;
}

.admin-remote-form-card textarea{
  min-height:105px;
}

.remote-admin-check{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:48px;
  padding:10px 12px;
  border:1px solid #dbe3ef;
  border-radius:13px;
  color:#334155;
  font-size:12px;
  font-weight:800;
}

.remote-admin-check input{
  width:18px !important;
  height:18px !important;
  margin:0 !important;
}

.admin-remote-company-list{
  display:grid;
  gap:9px;
}

.admin-remote-company-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto auto;
  gap:13px;
  align-items:center;
  padding:13px;
  border:1px solid #e2e8f0;
  border-radius:16px;
  background:#fff;
}

.admin-remote-company-main{
  display:grid;
  grid-template-columns:46px minmax(0,1fr);
  gap:11px;
  min-width:0;
}

.admin-remote-company-main h3{
  margin:4px 0 2px;
}

.admin-remote-company-main p,
.admin-remote-company-main small{
  display:block;
  margin:0;
  color:#64748b;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.admin-remote-company-meta{
  display:grid;
  justify-items:center;
  gap:5px;
}

.admin-remote-company-meta span{
  padding:5px 8px;
  border-radius:999px;
  font-size:9px;
  font-weight:950;
}

.admin-remote-company-meta span.active{
  background:#dcfce7;
  color:#15803d;
}

.admin-remote-company-meta span.inactive{
  background:#fee2e2;
  color:#b91c1c;
}

.admin-remote-company-actions{
  display:flex;
  gap:7px;
}

@media(max-width:900px){
  .remote-company-list{
    grid-template-columns:1fr;
  }

  .remote-directory-controls{
    grid-template-columns:1fr;
  }

  .admin-remote-company-card{
    grid-template-columns:minmax(0,1fr) auto;
  }

  .admin-remote-company-actions{
    grid-column:1 / -1;
    justify-content:flex-end;
  }
}

@media(max-width:760px){
  .home-remote-jobs-cta{
    grid-template-columns:46px minmax(0,1fr);
    gap:11px;
    padding:13px;
    border-radius:17px;
  }

  .home-remote-icon{
    width:46px;
    height:46px;
    border-radius:14px;
  }

  .home-remote-jobs-cta b{
    font-size:16px;
  }

  .home-remote-jobs-cta em{
    font-size:10px;
  }

  .home-remote-jobs-cta strong{
    grid-column:1 / -1;
    width:100%;
    justify-content:center;
    min-height:38px;
    border-radius:11px;
    background:#2557a7;
    color:#fff;
  }

  .remote-directory-hero{
    grid-template-columns:1fr;
    padding:20px;
    border-radius:22px;
  }

  .remote-directory-hero h1{
    font-size:29px;
  }

  .remote-directory-visual{
    min-height:115px;
    grid-template-columns:auto auto auto;
    gap:10px;
    align-content:center;
  }

  .remote-directory-visual strong{
    margin:0;
  }

  .remote-directory-visual b{
    margin:0;
  }

  .remote-scope-tabs{
    grid-template-columns:1fr;
  }

  .remote-search{
    grid-template-columns:1fr;
  }

  .remote-search .btn{
    width:100%;
  }

  .remote-company-card{
    padding:14px;
    border-radius:18px;
  }

  .remote-company-head{
    grid-template-columns:48px minmax(0,1fr);
  }

  .remote-company-logo{
    width:48px;
    height:48px;
    border-radius:14px;
  }

  .remote-company-title h2{
    font-size:18px;
  }

  .remote-lock-actions,
  .remote-application-actions{
    grid-template-columns:1fr;
  }

  .remote-application-btn{
    min-height:42px;
  }

  .admin-remote-header{
    display:grid;
  }

  .admin-remote-header .actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .admin-remote-company-card{
    grid-template-columns:1fr;
  }

  .admin-remote-company-meta{
    grid-template-columns:auto auto;
    justify-content:start;
  }

  .admin-remote-company-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
  }
}


/* =========================================================
   JobsZone v8.6 - Server-rendered remote SEO page
   ========================================================= */

.remote-seo-directory{
  max-width:1160px;
  margin:0 auto;
}

.remote-seo-section{
  margin:18px 0 26px;
}

.remote-seo-section + .remote-seo-section{
  padding-top:20px;
  border-top:1px solid #e2e8f0;
}

.public-seo-page .remote-company-card{
  min-height:100%;
}

.public-seo-page .remote-company-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
}

@media(max-width:760px){
  .remote-seo-section{
    margin:14px 0 22px;
  }
}


/* =========================================================
   JobsZone v8.8 - Security hotfix
   ========================================================= */

html,
body{
  max-width:100%;
  overflow-x:hidden;
}

.remote-directory-page,
.remote-seo-directory{
  width:min(100%,1180px);
  max-width:1180px;
  min-width:0;
  overflow:clip;
}

.remote-directory-page *,
.remote-seo-directory *{
  min-width:0;
}

.remote-directory-hero{
  grid-template-columns:minmax(0,1fr) minmax(180px,230px) !important;
  gap:22px !important;
  width:100%;
  padding:26px !important;
  overflow:hidden;
}

.remote-directory-hero-copy{
  min-width:0;
}

.remote-directory-hero h1{
  max-width:780px;
  margin:7px 0 10px !important;
  font-size:clamp(30px,4.4vw,48px) !important;
  line-height:1.07 !important;
  overflow-wrap:anywhere;
}

.remote-directory-hero p{
  max-width:780px;
  font-size:14px;
}

.remote-directory-visual{
  width:100%;
  min-height:150px !important;
  display:flex !important;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
}

.remote-directory-visual > div{
  display:grid;
  justify-items:center;
  gap:3px;
}

.remote-directory-controls{
  width:100%;
  grid-template-columns:minmax(0,1fr) minmax(300px,430px) !important;
  gap:10px !important;
  position:relative;
}

.remote-scope-tabs,
.remote-search{
  width:100%;
  min-width:0;
}

.remote-scope-tabs button,
.remote-search button{
  min-width:0;
  overflow:hidden;
}

.remote-scope-tabs button span,
.remote-search button span{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
}

.remote-search input{
  width:100%;
  max-width:100%;
}

.remote-directory-heading{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) auto;
  gap:14px;
  align-items:end;
  width:100%;
}

.remote-directory-heading > div{
  min-width:0;
}

.remote-directory-heading h2{
  overflow-wrap:anywhere;
}

.remote-companies-count{
  align-self:end;
  padding:8px 11px;
  border:1px solid #dbeafe;
  border-radius:999px;
  background:#eff6ff;
  color:#1d4ed8;
  font-size:11px;
  white-space:nowrap;
}

.remote-translation-notice{
  display:flex;
  align-items:center;
  gap:7px;
  margin:0 0 12px;
  padding:10px 12px;
  border:1px solid #fde68a;
  border-radius:13px;
  background:#fffbeb;
  color:#92400e;
  font-size:11px;
  font-weight:800;
}

.remote-translation-notice[hidden]{
  display:none !important;
}

.remote-company-list{
  width:100%;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  align-items:stretch;
}

.remote-company-card{
  display:grid !important;
  grid-template-rows:auto auto auto 1fr auto;
  align-content:start;
  width:100%;
  max-width:100%;
  height:100%;
  overflow:hidden;
}

.remote-company-head{
  grid-template-columns:56px minmax(0,1fr) !important;
  align-items:center !important;
  width:100%;
}

.remote-company-title{
  overflow:hidden;
}

.remote-company-title h2{
  width:100%;
  margin:4px 0 3px !important;
  font-size:20px;
  line-height:1.18;
  overflow-wrap:anywhere;
  word-break:normal;
}

.remote-company-title p{
  display:block !important;
  width:100%;
  overflow-wrap:anywhere;
  line-height:1.4;
}

.remote-company-title p .icon-svg{
  display:inline-flex;
  vertical-align:middle;
}

.remote-company-badges{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  width:100%;
}

.remote-sponsorship{
  grid-column:auto !important;
  width:auto !important;
  max-width:100%;
  white-space:normal;
  overflow-wrap:anywhere;
}

.remote-company-description{
  width:100%;
  overflow-wrap:anywhere;
}

.remote-company-information{
  grid-template-columns:repeat(2,minmax(0,1fr));
  align-items:start;
  width:100%;
}

.remote-company-information > div{
  height:100%;
  overflow:hidden;
}

.remote-company-information p{
  overflow-wrap:anywhere;
}

.remote-locked-application,
.remote-application-panel{
  width:100%;
  max-width:100%;
  overflow:hidden;
}

.remote-lock-actions,
.remote-application-actions{
  width:100%;
}

.remote-lock-actions .btn,
.remote-application-actions .btn{
  max-width:100%;
  min-width:0;
  overflow-wrap:anywhere;
}

.public-seo-page .public-container{
  width:100%;
  max-width:1220px;
}

.public-seo-page .remote-seo-directory{
  width:100%;
}

@media(max-width:980px){
  .remote-directory-controls{
    grid-template-columns:1fr !important;
  }

  .remote-company-list{
    grid-template-columns:1fr !important;
  }

  .remote-company-information{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:760px){
  .container.remote-directory-page,
  .public-seo-page .remote-seo-directory{
    width:100% !important;
    max-width:100% !important;
  }

  .container.remote-directory-page{
    padding:14px 12px 36px !important;
  }

  .public-seo-page .public-container{
    padding-left:12px !important;
    padding-right:12px !important;
  }

  .remote-directory-hero{
    grid-template-columns:1fr !important;
    gap:14px !important;
    margin:10px 0 12px !important;
    padding:18px !important;
    border-radius:20px !important;
  }

  .remote-directory-hero h1{
    font-size:28px !important;
    letter-spacing:-.035em !important;
  }

  .remote-directory-hero p{
    font-size:12px;
    line-height:1.55;
  }

  .remote-session-notice{
    display:flex !important;
    width:100%;
    max-width:100%;
    align-items:flex-start;
    overflow-wrap:anywhere;
  }

  .remote-directory-visual{
    min-height:72px !important;
    display:grid !important;
    grid-template-columns:44px auto !important;
    justify-content:start !important;
    padding:12px 14px;
    border-radius:16px !important;
  }

  .remote-directory-visual > span{
    width:44px !important;
    height:44px !important;
    border-radius:13px !important;
  }

  .remote-directory-visual > div{
    justify-items:start;
  }

  .remote-directory-visual strong{
    font-size:24px !important;
  }

  .remote-directory-controls{
    gap:9px !important;
    margin-bottom:12px !important;
    padding:9px !important;
    border-radius:15px !important;
  }

  .remote-scope-tabs{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }

  .remote-scope-tabs button{
    min-height:44px;
    padding:8px 7px !important;
    font-size:10px !important;
    line-height:1.25;
    white-space:normal;
  }

  .remote-search{
    grid-template-columns:minmax(0,1fr) auto !important;
  }

  .remote-search input{
    height:44px;
    font-size:12px;
  }

  .remote-search .btn{
    width:44px !important;
    min-width:44px !important;
    height:44px;
    padding:0 !important;
  }

  .remote-search .btn span{
    display:none;
  }

  .remote-directory-heading{
    grid-template-columns:1fr !important;
    gap:7px;
    margin-top:14px !important;
  }

  .remote-directory-heading h2{
    font-size:21px !important;
    line-height:1.2;
  }

  .remote-directory-heading p{
    font-size:12px;
    line-height:1.5;
  }

  .remote-companies-count{
    justify-self:start;
  }

  .remote-company-list{
    grid-template-columns:1fr !important;
    gap:11px !important;
  }

  .remote-company-card{
    gap:11px !important;
    padding:13px !important;
    border-radius:17px !important;
  }

  .remote-company-head{
    grid-template-columns:46px minmax(0,1fr) !important;
    gap:10px !important;
  }

  .remote-company-logo{
    width:46px !important;
    height:46px !important;
    border-radius:13px !important;
  }

  .remote-company-title h2{
    font-size:17px !important;
  }

  .remote-company-title p{
    font-size:10px !important;
  }

  .remote-company-information{
    grid-template-columns:1fr !important;
  }

  .remote-company-information > div{
    padding:10px !important;
  }

  .remote-locked-application{
    grid-template-columns:36px minmax(0,1fr) !important;
    gap:9px !important;
    padding:11px !important;
  }

  .remote-lock-icon{
    width:36px !important;
    height:36px !important;
  }

  .remote-lock-actions,
  .remote-application-actions{
    grid-template-columns:1fr !important;
  }

  .remote-directory-disclaimer{
    margin-bottom:18px !important;
  }
}

@media(max-width:390px){
  .remote-scope-tabs{
    grid-template-columns:1fr !important;
  }

  .remote-search{
    grid-template-columns:1fr !important;
  }

  .remote-search .btn{
    width:100% !important;
  }

  .remote-search .btn span{
    display:inline;
  }
}

/* =========================================================
   JobsZone v8.9 - Clean URLs + minimalist responsive layout
   ========================================================= */
:root{
  --jz-min-bg:#f7f8fa;
  --jz-min-surface:#ffffff;
  --jz-min-text:#172033;
  --jz-min-muted:#657084;
  --jz-min-line:#e3e7ee;
  --jz-min-blue:#2557a7;
  --jz-min-blue-dark:#1d4789;
}

body.premium-ui{
  background:var(--jz-min-bg) !important;
  color:var(--jz-min-text);
}

.site-header{
  border-bottom:1px solid var(--jz-min-line) !important;
  box-shadow:none !important;
  background:rgba(255,255,255,.96) !important;
  backdrop-filter:blur(12px);
}

.site-header .topbar{
  width:min(100%,1180px) !important;
  max-width:1180px !important;
  margin:0 auto !important;
  padding:11px 22px !important;
  gap:22px !important;
}

.site-header .brand{
  font-size:24px !important;
  letter-spacing:-.045em !important;
}

.site-header .main-menu{
  justify-content:center;
  gap:4px;
}

.site-header .main-menu a{
  padding:8px 10px !important;
  border-radius:8px !important;
  color:#3d4656 !important;
  font-size:13px !important;
  font-weight:750 !important;
}

.site-header .main-menu a:hover{
  border:0 !important;
  background:#f1f4f8 !important;
  color:var(--jz-min-blue) !important;
}

.home-container.home-minimal{
  width:min(100%,1160px) !important;
  max-width:1160px !important;
  padding:0 22px 48px !important;
}

.home-minimal .minimal-home-hero{
  display:block !important;
  max-width:1000px !important;
  margin:0 auto 18px !important;
  padding:48px 0 22px !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  text-align:center;
}

.home-minimal .hero-copy{
  max-width:760px;
  margin:0 auto;
}

.home-minimal .mobile-eyebrow{
  display:inline-flex;
  margin-bottom:12px;
  color:var(--jz-min-blue) !important;
  font-size:11px !important;
  letter-spacing:.07em;
}

.home-minimal .minimal-home-hero h1{
  max-width:760px;
  margin:0 auto 12px !important;
  color:var(--jz-min-text) !important;
  font-size:clamp(36px,5vw,54px) !important;
  line-height:1.03 !important;
  letter-spacing:-.055em !important;
}

.home-minimal .minimal-home-hero h1 span{
  color:var(--jz-min-blue) !important;
}

.home-minimal .minimal-home-hero .hero-copy p{
  max-width:650px;
  margin:0 auto !important;
  color:var(--jz-min-muted) !important;
  font-size:16px !important;
  line-height:1.55 !important;
}

.home-minimal .search-shell-indeed{
  max-width:920px;
  margin:28px auto 0 !important;
}

.home-minimal .exact-searchbar{
  grid-template-columns:minmax(0,1.1fr) 1px minmax(0,.9fr) 154px !important;
  min-height:58px !important;
  padding:4px !important;
  border:1px solid #cfd6df !important;
  border-radius:12px !important;
  background:#fff !important;
  box-shadow:0 8px 24px rgba(20,33,61,.08) !important;
}

.home-minimal .exact-searchbar .search-segment{
  padding:0 16px !important;
}

.home-minimal .exact-searchbar .search-segment input{
  font-size:14px !important;
}

.home-minimal .exact-search-btn{
  min-height:48px !important;
  height:48px !important;
  border-radius:9px !important;
  font-size:14px !important;
  background:var(--jz-min-blue) !important;
}

.home-minimal .exact-search-btn:hover{
  background:var(--jz-min-blue-dark) !important;
}

.home-minimal .home-trust-strip{
  justify-content:center !important;
  gap:18px !important;
  max-width:920px;
  margin:15px auto 0 !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
}

.home-minimal .home-trust-strip span{
  color:#697386 !important;
  font-size:11px !important;
  font-weight:750 !important;
}

.home-minimal .home-remote-jobs-cta{
  grid-template-columns:38px minmax(0,1fr) auto !important;
  gap:11px !important;
  max-width:920px;
  margin:18px auto 0 !important;
  padding:12px 14px !important;
  border:1px solid var(--jz-min-line) !important;
  border-radius:11px !important;
  background:#fff !important;
  box-shadow:none !important;
}

.home-minimal .home-remote-icon{
  width:38px !important;
  height:38px !important;
  border-radius:9px !important;
  background:#eef4ff !important;
}

.home-minimal .home-remote-jobs-cta small{
  font-size:9px !important;
}

.home-minimal .home-remote-jobs-cta b{
  font-size:14px !important;
}

.home-minimal .home-remote-jobs-cta em{
  font-size:10px !important;
}

.home-minimal .home-remote-jobs-cta strong{
  font-size:11px !important;
}

.home-minimal .home-ad-zone,
.home-minimal .home-role-workspace,
.home-minimal .jobs-layout.mobile-jobs-layout,
.home-minimal .home-lower-section,
.home-minimal .free-candidate-card{
  max-width:1000px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.home-minimal .home-ad-zone{
  margin-top:10px !important;
  margin-bottom:14px !important;
}

.home-minimal .home-role-workspace{
  padding:16px 18px !important;
  border:1px solid var(--jz-min-line) !important;
  border-radius:12px !important;
  background:#fff !important;
  box-shadow:none !important;
}

.home-minimal .jobs-layout.mobile-jobs-layout{
  grid-template-columns:230px minmax(0,1fr) !important;
  gap:24px !important;
  align-items:start;
}

.home-minimal .premium-filter{
  position:sticky;
  top:82px;
  padding:18px !important;
  border:1px solid var(--jz-min-line) !important;
  border-radius:12px !important;
  background:#fff !important;
  box-shadow:none !important;
}

.home-minimal .premium-filter h3{
  color:var(--jz-min-text);
  font-size:17px !important;
}

.home-minimal .premium-filter p{
  color:var(--jz-min-muted);
  font-size:12px !important;
  line-height:1.45;
}

.home-minimal .premium-filter label{
  margin-top:12px !important;
  color:#495467;
  font-size:11px !important;
}

.home-minimal .premium-filter select,
.home-minimal .premium-filter input{
  min-height:42px !important;
  border:1px solid #d9dee7 !important;
  border-radius:9px !important;
  font-size:12px !important;
  box-shadow:none !important;
}

.home-minimal .results-title{
  margin-bottom:12px !important;
}

.home-minimal .results-title h2{
  color:var(--jz-min-text);
  font-size:24px !important;
  letter-spacing:-.025em;
}

.home-minimal .results-title p{
  color:var(--jz-min-muted) !important;
  font-size:13px !important;
}

.home-minimal .job-card{
  margin-bottom:10px !important;
  padding:19px !important;
  border:1px solid var(--jz-min-line) !important;
  border-radius:12px !important;
  background:#fff !important;
  box-shadow:none !important;
}

.home-minimal .job-card:hover{
  border-color:#c9d4e5 !important;
  box-shadow:0 8px 22px rgba(20,33,61,.055) !important;
  transform:none !important;
}

.home-minimal .job-card h2{
  font-size:19px !important;
  line-height:1.25 !important;
}

.home-minimal .home-stats{
  gap:0 !important;
  overflow:hidden;
  border:1px solid var(--jz-min-line);
  border-radius:12px;
  background:#fff;
}

.home-minimal .home-stats .stat{
  border:0 !important;
  border-right:1px solid var(--jz-min-line) !important;
  border-radius:0 !important;
  box-shadow:none !important;
  background:#fff !important;
}

.home-minimal .home-stats .stat:last-child{
  border-right:0 !important;
}

.home-minimal .categories-card,
.home-minimal .alert-cta,
.home-minimal .free-candidate-card{
  border:1px solid var(--jz-min-line) !important;
  border-radius:12px !important;
  background:#fff !important;
  box-shadow:none !important;
}

.home-minimal .categories-card{
  padding:22px !important;
}

.home-minimal .category{
  min-height:72px !important;
  border:1px solid #edf0f4 !important;
  border-radius:10px !important;
  background:#fafbfc !important;
}

.home-minimal .alert-cta,
.home-minimal .free-candidate-card{
  padding:20px !important;
}

.footer{
  border-top:1px solid var(--jz-min-line) !important;
  background:#fff !important;
  color:#6b7280 !important;
  box-shadow:none !important;
}

@media(max-width:980px){
  .site-header .main-menu{
    display:none !important;
  }

  .home-minimal .jobs-layout.mobile-jobs-layout{
    grid-template-columns:210px minmax(0,1fr) !important;
    gap:18px !important;
  }
}

@media(max-width:760px){
  body.premium-ui{
    background:#f7f8fa !important;
  }

  .site-header .topbar{
    min-height:58px !important;
    padding:8px 12px !important;
  }

  .site-header .brand{
    font-size:21px !important;
  }

  .site-header .header-actions.is-guest{
    grid-template-columns:52px 38px !important;
  }

  .site-header .header-actions.is-authenticated{
    grid-template-columns:38px 38px 38px !important;
  }

  .site-header .language-switcher{
    display:none !important;
  }

  .site-header .mobile-login-chip{
    width:52px !important;
    min-width:52px !important;
    max-width:52px !important;
    height:36px !important;
    min-height:36px !important;
    border-radius:9px !important;
  }

  .site-header .mobile-menu-btn,
  .site-header .notification-wrap,
  .site-header .notification-bell,
  .site-header .mobile-profile-chip{
    width:38px !important;
    min-width:38px !important;
    max-width:38px !important;
    height:38px !important;
    min-height:38px !important;
    border-radius:9px !important;
  }

  .home-container.home-minimal{
    padding:0 13px 94px !important;
  }

  .home-minimal .minimal-home-hero{
    margin:0 auto 8px !important;
    padding:26px 0 14px !important;
    text-align:left !important;
  }

  .home-minimal .hero-copy{
    margin:0;
  }

  .home-minimal .mobile-eyebrow{
    margin-bottom:9px !important;
    font-size:9px !important;
  }

  .home-minimal .minimal-home-hero h1{
    margin:0 0 10px !important;
    font-size:32px !important;
    line-height:1.06 !important;
    letter-spacing:-.045em !important;
  }

  .home-minimal .minimal-home-hero .hero-copy p{
    margin:0 !important;
    font-size:13px !important;
    line-height:1.5 !important;
  }

  .home-minimal .search-shell-indeed{
    margin-top:20px !important;
  }

  .home-minimal .exact-searchbar{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:8px !important;
    padding:0 !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    overflow:visible !important;
  }

  .home-minimal .exact-searchbar .search-segment{
    min-height:50px !important;
    padding:0 13px !important;
    border:1px solid #d7dde6 !important;
    border-radius:11px !important;
    background:#fff !important;
  }

  .home-minimal .exact-searchbar .search-segment input{
    height:48px !important;
    font-size:13px !important;
  }

  .home-minimal .search-divider{
    display:none !important;
  }

  .home-minimal .exact-search-btn{
    width:100% !important;
    min-height:50px !important;
    height:50px !important;
    border-radius:11px !important;
    font-size:13px !important;
  }

  .home-minimal .home-trust-strip{
    justify-content:flex-start !important;
    gap:8px 12px !important;
    margin-top:12px !important;
  }

  .home-minimal .home-trust-strip span{
    font-size:9px !important;
  }

  .home-minimal .home-remote-jobs-cta{
    grid-template-columns:36px minmax(0,1fr) !important;
    margin-top:14px !important;
    padding:11px !important;
  }

  .home-minimal .home-remote-icon{
    width:36px !important;
    height:36px !important;
  }

  .home-minimal .home-remote-jobs-cta em{
    display:none !important;
  }

  .home-minimal .home-remote-jobs-cta strong{
    grid-column:1 / -1;
    width:100%;
    justify-content:flex-start;
    padding-left:47px;
  }

  .home-minimal .home-ad-zone{
    margin-top:6px !important;
    margin-bottom:10px !important;
  }

  .home-minimal .jobs-layout.mobile-jobs-layout{
    display:block !important;
    max-width:100% !important;
  }

  .home-minimal .results-title{
    align-items:center !important;
    margin-bottom:9px !important;
  }

  .home-minimal .results-title h2{
    font-size:20px !important;
  }

  .home-minimal .results-title p{
    display:none !important;
  }

  .home-minimal .job-card{
    padding:15px !important;
    border-radius:11px !important;
  }

  .home-minimal .job-card h2{
    font-size:17px !important;
  }

  .home-minimal .mobile-filter-trigger{
    min-height:36px !important;
    padding:0 10px !important;
    border-radius:9px !important;
    background:#fff !important;
  }

  .home-minimal .home-stats{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    border-radius:11px !important;
  }

  .home-minimal .home-stats .stat{
    border-right:0 !important;
    border-bottom:1px solid var(--jz-min-line) !important;
  }

  .home-minimal .home-stats .stat:nth-last-child(-n+2){
    border-bottom:0 !important;
  }

  .home-minimal .categories-card{
    padding:16px !important;
  }

  .home-minimal .category-row{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }

  .home-minimal .category{
    min-height:64px !important;
  }

  .home-minimal .alert-cta,
  .home-minimal .free-candidate-card{
    padding:16px !important;
  }

  .mobile-bottom-nav{
    border-top:1px solid var(--jz-min-line) !important;
    box-shadow:none !important;
    background:rgba(255,255,255,.97) !important;
  }
}

@media(max-width:380px){
  .home-minimal .minimal-home-hero h1{
    font-size:29px !important;
  }

  .home-minimal .home-trust-strip span:nth-child(3){
    display:none !important;
  }
}

/* v8.9 responsive refinements after visual review */
.home-minimal .minimal-home-hero::before,
.home-minimal .minimal-home-hero::after{
  display:none !important;
  content:none !important;
}

.site-header .main-menu{
  flex-wrap:nowrap !important;
}

@media(max-width:760px){
  .home-minimal .results-head-actions{
    display:flex !important;
    justify-content:flex-end !important;
    width:auto !important;
  }

  .home-minimal .results-head-actions .see-all-link{
    display:none !important;
  }

  .home-minimal .mobile-filter-trigger{
    width:auto !important;
    min-width:90px !important;
    margin:0 !important;
  }

  .home-minimal .home-remote-jobs-cta strong{
    grid-column:2 !important;
    width:auto !important;
    min-height:0 !important;
    padding:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    color:var(--jz-min-blue) !important;
    justify-content:flex-start !important;
  }

  .home-minimal .category-row{
    display:flex !important;
    gap:9px !important;
    overflow-x:auto !important;
    padding-bottom:6px !important;
    scroll-snap-type:x proximity;
  }

  .home-minimal .category-row .category{
    flex:0 0 132px !important;
    min-width:132px !important;
    scroll-snap-align:start;
  }

  .home-minimal .mobile-categories .chips{
    display:none !important;
  }
}


/* JobsZone v9.0 - SEO guides hub */
.guides-page{
  max-width:1040px;
  padding-top:44px;
  padding-bottom:72px;
}
.guides-heading{
  max-width:760px;
  margin:0 0 34px;
  padding-bottom:28px;
  border-bottom:1px solid var(--line,#e5e7eb);
}
.guides-heading .eyebrow{
  display:block;
  margin-bottom:10px;
  font-size:.78rem;
  font-weight:750;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.guides-heading h1{
  margin:0;
  max-width:720px;
  font-size:clamp(2rem,4vw,3.6rem);
  line-height:1.05;
  letter-spacing:-.045em;
}
.guides-sections{
  display:grid;
  gap:42px;
}
.guide-topic{
  min-width:0;
}
.guide-topic-head{
  display:flex;
  align-items:baseline;
  gap:14px;
  margin-bottom:14px;
}
.guide-topic-index{
  color:var(--muted,#64748b);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
}
.guide-topic-head h2{
  margin:0;
  font-size:clamp(1.18rem,2vw,1.55rem);
  letter-spacing:-.025em;
}
.guide-title-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:0 32px;
  margin:0;
  padding-left:2.1rem;
}
.guide-title-list li{
  padding:16px 6px 16px 4px;
  border-bottom:1px solid var(--line,#e5e7eb);
}
.guide-title-list li::marker{
  color:var(--muted,#64748b);
  font-size:.82rem;
  font-weight:800;
}
.guide-title-list h2{
  margin:0;
  font-size:1rem;
  line-height:1.48;
  letter-spacing:-.01em;
}
.guides-page > .ad-zone,
.guides-page > .ad-block,
.guides-page > .ad{
  margin-top:48px;
}
@media(max-width:760px){
  .guides-page{
    padding-top:26px;
    padding-bottom:48px;
  }
  .guides-heading{
    margin-bottom:28px;
    padding-bottom:22px;
  }
  .guides-heading h1{
    font-size:clamp(1.9rem,10vw,2.65rem);
  }
  .guides-sections{
    gap:34px;
  }
  .guide-topic-head{
    align-items:flex-start;
    gap:10px;
  }
  .guide-title-list{
    grid-template-columns:1fr;
    gap:0;
    padding-left:1.8rem;
  }
  .guide-title-list li{
    padding:14px 2px;
  }
  .guide-title-list h2{
    font-size:.98rem;
  }
}

/* JobsZone v9.1 - complete guide articles */
.guides-heading > p{
  max-width:760px;
  margin:18px 0 0;
  color:var(--muted,#64748b);
  font-size:1.03rem;
  line-height:1.7;
}
.guide-title-list{
  list-style:none;
  padding-left:0;
  gap:16px 20px;
}
.guide-title-list li{
  padding:0;
  border:0;
  min-width:0;
}
.guide-index-card{
  display:flex;
  align-items:flex-start;
  gap:15px;
  min-height:100%;
  padding:20px;
  border:1px solid var(--line,#e5e7eb);
  border-radius:14px;
  background:var(--surface,#fff);
  color:inherit;
  text-decoration:none;
  transition:border-color .18s ease,transform .18s ease,box-shadow .18s ease;
}
.guide-index-card:hover{
  transform:translateY(-2px);
  border-color:#b8c3d3;
  box-shadow:0 10px 28px rgba(15,23,42,.07);
}
.guide-index-card:focus-visible{
  outline:3px solid rgba(37,87,167,.22);
  outline-offset:2px;
}
.guide-index-number{
  flex:0 0 auto;
  min-width:34px;
  padding-top:2px;
  color:var(--muted,#64748b);
  font-size:.78rem;
  font-weight:850;
  letter-spacing:.08em;
}
.guide-index-copy{
  min-width:0;
}
.guide-index-copy h3{
  margin:0;
  font-size:1.03rem;
  line-height:1.4;
  letter-spacing:-.012em;
}
.guide-index-copy p{
  margin:9px 0 12px;
  color:var(--muted,#64748b);
  font-size:.9rem;
  line-height:1.55;
}
.guide-index-copy small{
  color:var(--muted,#64748b);
  font-size:.76rem;
  font-weight:700;
}
.guide-article-page{
  max-width:920px;
  padding-top:30px;
  padding-bottom:80px;
}
.guide-breadcrumb{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 28px;
  color:var(--muted,#64748b);
  font-size:.86rem;
}
.guide-breadcrumb a{
  color:inherit;
  font-weight:700;
}
.guide-article{
  max-width:780px;
  margin:0 auto;
}
.guide-article-header{
  padding-bottom:32px;
  border-bottom:1px solid var(--line,#e5e7eb);
}
.guide-article-header .eyebrow{
  display:block;
  margin-bottom:12px;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.guide-article-header h1{
  margin:0;
  font-size:clamp(2.05rem,5vw,3.7rem);
  line-height:1.06;
  letter-spacing:-.045em;
}
.guide-article-excerpt{
  max-width:720px;
  margin:20px 0 0;
  color:var(--muted,#64748b);
  font-size:1.12rem;
  line-height:1.7;
}
.guide-article-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px 20px;
  margin-top:20px;
  color:var(--muted,#64748b);
  font-size:.82rem;
  font-weight:650;
}
.guide-article-content{
  padding-top:34px;
  font-size:1.02rem;
  line-height:1.82;
}
.guide-article-content > p{
  margin:0 0 20px;
}
.guide-quick-answer{
  margin:30px 0 38px;
  padding:22px 24px;
  border-left:4px solid var(--primary,#2557a7);
  border-radius:0 12px 12px 0;
  background:#f5f8fc;
}
.guide-quick-answer strong{
  display:block;
  margin-bottom:7px;
  font-size:.82rem;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.guide-quick-answer p{
  margin:0;
  line-height:1.72;
}
.guide-article-section{
  margin:0 0 42px;
  scroll-margin-top:100px;
}
.guide-article-section h2,
.guide-faq h2,
.guide-sources h2{
  margin:0 0 16px;
  font-size:clamp(1.35rem,3vw,1.8rem);
  line-height:1.25;
  letter-spacing:-.025em;
}
.guide-article-section p{
  margin:0 0 17px;
}
.guide-article-section ul{
  margin:18px 0 0;
  padding-left:1.35rem;
}
.guide-article-section li{
  margin:9px 0;
  padding-left:5px;
}
.guide-faq,
.guide-sources{
  margin-top:48px;
  padding-top:34px;
  border-top:1px solid var(--line,#e5e7eb);
}
.guide-faq-item{
  border-bottom:1px solid var(--line,#e5e7eb);
}
.guide-faq-item summary{
  cursor:pointer;
  padding:17px 30px 17px 0;
  font-weight:780;
  line-height:1.45;
}
.guide-faq-item p{
  margin:0;
  padding:0 0 18px;
  color:var(--muted,#64748b);
}
.guide-source-list{
  margin:0;
  padding-left:1.3rem;
}
.guide-source-list li{
  margin:10px 0;
}
.guide-source-list a{
  overflow-wrap:anywhere;
}
.guide-disclaimer{
  margin-top:34px !important;
  padding:16px 18px;
  border:1px solid var(--line,#e5e7eb);
  border-radius:10px;
  color:var(--muted,#64748b);
  font-size:.84rem;
  line-height:1.6;
}
.guide-article-nav{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  max-width:920px;
  margin:56px auto 0;
  padding-top:26px;
  border-top:1px solid var(--line,#e5e7eb);
}
.guide-article-nav a{
  display:flex;
  flex-direction:column;
  gap:7px;
  padding:17px 18px;
  border:1px solid var(--line,#e5e7eb);
  border-radius:12px;
  color:inherit;
  text-decoration:none;
}
.guide-article-nav a:last-child{
  text-align:right;
}
.guide-article-nav small{
  color:var(--muted,#64748b);
  font-weight:750;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.guide-article-nav span{
  font-size:.9rem;
  line-height:1.4;
  font-weight:720;
}
.guide-article-page > .ad-zone,
.guide-article-page > .ad-block,
.guide-article-page > .ad{
  margin-top:48px;
}
@media(max-width:760px){
  .guides-heading > p{
    font-size:.96rem;
    line-height:1.65;
  }
  .guide-title-list{
    gap:12px;
  }
  .guide-index-card{
    padding:17px 15px;
    border-radius:12px;
  }
  .guide-index-number{
    min-width:30px;
  }
  .guide-index-copy h3{
    font-size:1rem;
  }
  .guide-index-copy p{
    font-size:.87rem;
  }
  .guide-article-page{
    padding-top:20px;
    padding-bottom:56px;
  }
  .guide-breadcrumb{
    margin-bottom:22px;
    font-size:.8rem;
  }
  .guide-article-header{
    padding-bottom:24px;
  }
  .guide-article-header h1{
    font-size:clamp(2rem,10.5vw,2.85rem);
  }
  .guide-article-excerpt{
    font-size:1rem;
    line-height:1.65;
  }
  .guide-article-content{
    padding-top:27px;
    font-size:.98rem;
    line-height:1.75;
  }
  .guide-quick-answer{
    margin:25px 0 32px;
    padding:19px 18px;
  }
  .guide-article-section{
    margin-bottom:34px;
  }
  .guide-article-section h2,
  .guide-faq h2,
  .guide-sources h2{
    font-size:1.35rem;
  }
  .guide-article-nav{
    grid-template-columns:1fr;
    margin-top:42px;
  }
  .guide-article-nav a:last-child{
    text-align:left;
  }
}


/* JobsZone v9.2 - AdSense optimizado para guías y artículos */
.guide-ad-placement{
  width:100%;
  min-width:0;
  clear:both;
}
.guide-ad-placement:empty{
  display:none !important;
  margin:0 !important;
}
.guide-ad-placement > .ad-real{
  width:100% !important;
  max-width:970px !important;
  margin:0 auto !important;
  border-radius:12px;
  background:#f8fafc;
}
.guide-ad-index-top{
  margin:4px 0 42px;
}
.guide-ad-index-inline{
  margin:4px 0 0;
  padding:4px 0 2px;
}
.guide-ad-index-bottom{
  margin:46px 0 0;
  padding-top:30px;
  border-top:1px solid var(--line,#e5e7eb);
}
.guide-article-content .guide-ad-placement{
  max-width:780px;
  margin-left:auto;
  margin-right:auto;
}
.guide-ad-article-lead{
  margin:4px 0 42px;
}
.guide-ad-article-inline{
  margin:-4px 0 42px;
  padding:2px 0;
}
.guide-ad-placement .ad-label{
  color:#7c8798;
  font-size:9px;
  letter-spacing:.1em;
}
.guide-ad-placement .ad-real[data-ad-state="pending"]{
  min-height:118px;
}
.guide-ad-placement .ad-real[data-ad-state="filled"]{
  padding-left:0 !important;
  padding-right:0 !important;
}
@media(max-width:760px){
  .guide-ad-index-top{
    margin:0 0 30px;
  }
  .guide-ad-index-inline{
    margin:0;
    padding:0;
  }
  .guide-ad-index-bottom{
    margin-top:34px;
    padding-top:24px;
  }
  .guide-ad-article-lead{
    margin:0 0 32px;
  }
  .guide-ad-article-inline{
    margin:-2px 0 34px;
  }
  .guide-ad-placement > .ad-real{
    max-width:100% !important;
    border-radius:10px;
  }
}
