
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink:#1C1A17; --cream:#F7F2EA; --paper:#EDE8DE;
  --forest:#2D4A35; --moss:#4A7055; --gold:#C8872A;
  --rust:#B54E2A; --muted:#7A736A; --border:#D6CFC3;
  --bg:#F2EDE3; --blue:#3A5EA0;
}
html { scroll-behavior: smooth; }
body { font-family:'Source Sans 3',sans-serif; background:var(--bg); color:var(--ink); min-height:100vh; }

/* ── NAV ── */
nav {
  position:sticky; top:0; z-index:100;
  padding:14px 48px;
  display:flex; align-items:center; gap:12px;
  background:rgba(247,242,234,0.95);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}
.nav-logo { font-family:'Playfair Display',serif; font-size:20px; font-weight:900; color:var(--ink); text-decoration:none; margin-right:auto; flex-shrink:0; }
.nav-logo span { color:var(--gold); }
.nav-link { font-size:13px; font-weight:600; color:var(--muted); text-decoration:none; padding:7px 12px; border-radius:8px; transition:all 0.18s; white-space:nowrap; }
.nav-link:hover { color:var(--ink); background:var(--paper); }
.nav-btn { font-size:13px; font-weight:600; padding:8px 18px; border-radius:8px; cursor:pointer; transition:all 0.18s; white-space:nowrap; font-family:'Source Sans 3',sans-serif; }
.nav-btn-outline { background:transparent; color:var(--ink); border:1.5px solid var(--border); }
.nav-btn-outline:hover { border-color:var(--ink); }
.nav-btn-solid { background:var(--forest); color:white; border:none; }
.nav-btn-solid:hover { background:var(--moss); }

/* ── HERO ── */
.hero { background:var(--ink); padding:56px 96px 64px; position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; top:-100px; right:-80px; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle, rgba(200,135,42,0.1) 0%, transparent 65%); pointer-events:none; }
.hero-eyebrow { font-size:11px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; color:var(--gold); display:flex; align-items:center; gap:8px; margin-bottom:16px; }
.hero-eyebrow::before { content:''; width:24px; height:1.5px; background:var(--gold); }
.hero-title { font-family:'Playfair Display',serif; font-size:clamp(32px,4.5vw,54px); font-weight:900; color:white; line-height:1.08; letter-spacing:-1.5px; margin-bottom:36px; }
.hero-title em { font-style:italic; color:var(--gold); }
.hero-title .underline { position:relative; display:inline-block; }
.hero-title .underline::after { content:''; position:absolute; bottom:2px; left:0; right:0; height:4px; background:var(--gold); border-radius:2px; transform:scaleX(0); transform-origin:left; animation:growLine 0.6s 0.5s ease forwards; }
@keyframes growLine { to { transform:scaleX(1); } }
.hero-search { display:flex; background:white; border-radius:14px; overflow:hidden; max-width:620px; box-shadow:0 16px 48px rgba(0,0,0,0.3); }
.hs-field { flex:1; display:flex; align-items:center; gap:10px; padding:0 18px; }
.hs-icon { font-size:18px; flex-shrink:0; }
.hs-input { width:100%; border:none; outline:none; font-family:'Source Sans 3',sans-serif; font-size:15px; color:var(--ink); padding:15px 0; background:transparent; }
.hs-input::placeholder { color:#BDB6AC; }
.hero-search-btn { background:var(--gold); border:none; cursor:pointer; padding:0 28px; font-family:'Source Sans 3',sans-serif; font-size:15px; font-weight:700; color:white; transition:background 0.2s; flex-shrink:0; }
.hero-search-btn:hover { background:#b8771f; }
.hero-tags { display:flex; align-items:center; gap:8px; margin-top:18px; flex-wrap:wrap; }
.hero-tag-label { font-size:12px; color:rgba(255,255,255,0.35); }
.hero-tag { font-size:12px; font-weight:500; color:rgba(255,255,255,0.6); background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.1); padding:4px 12px; border-radius:20px; cursor:pointer; transition:all 0.18s; }
.hero-tag:hover { background:rgba(255,255,255,0.12); color:white; }

/* ── STATS BAR ── */
.stats-bar { background:white; border-bottom:1px solid var(--border); padding:14px 96px; display:flex; align-items:center; gap:40px; overflow-x:auto; }
.sbar-item { display:flex; align-items:baseline; gap:8px; flex-shrink:0; }
.sbar-num { font-family:'Playfair Display',serif; font-size:22px; font-weight:900; color:var(--ink); }
.sbar-num.loading { color:var(--border); }
.sbar-label { font-size:13px; color:var(--muted); }
.sbar-div { width:1px; height:24px; background:var(--border); flex-shrink:0; }
.sbar-item.sbar-motivacional { gap:8px; align-items:center; }
.sbar-item.sbar-motivacional .sbar-label { color:var(--ink); font-weight:500; font-size:13px; }

/* ── MAIN LAYOUT ── */
.main { max-width:1180px; margin:0 auto; padding:36px 24px 80px; display:grid; grid-template-columns:1fr 300px; gap:28px; }

/* ── SECTION HEADER ── */
.section-header { display:flex; align-items:baseline; justify-content:space-between; margin-bottom:16px; }
.section-title { font-family:'Playfair Display',serif; font-size:20px; font-weight:900; }
.section-link { font-size:13px; font-weight:600; color:var(--gold); text-decoration:none; cursor:pointer; }
.section-link:hover { text-decoration:underline; }

/* ── FILTER PILLS ── */
.filter-row { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:18px; }
.fpill { padding:7px 14px; border-radius:20px; border:1.5px solid var(--border); background:white; font-family:'Source Sans 3',sans-serif; font-size:13px; font-weight:500; color:var(--muted); cursor:pointer; transition:all 0.15s; }
.fpill:hover { border-color:var(--ink); color:var(--ink); }
.fpill.active { background:var(--ink); border-color:var(--ink); color:white; }

/* Results count */
.results-count { font-size:13px; color:var(--muted); margin-bottom:16px; }
.results-count strong { color:var(--ink); }

/* ── VACANTE CARDS ── */
#vacantes-list { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.vcard { background:white; border:1px solid var(--border); border-radius:14px; padding:20px 22px; transition:all 0.2s; cursor:pointer; }
.vcard:hover { border-color:var(--gold); box-shadow:0 4px 20px rgba(0,0,0,0.07); transform:translateY(-1px); }
.vcard-top { display:flex; align-items:flex-start; justify-content:space-between; gap:8px; margin-bottom:6px; }
.vcard-title { font-size:15px; font-weight:600; color:var(--ink); line-height:1.3; }
.vcard-empresa { font-size:12px; color:var(--muted); margin-bottom:8px; }
.vcard-tags { display:flex; gap:5px; flex-wrap:wrap; margin-bottom:10px; }
.vtag { font-size:10px; font-weight:600; padding:2px 8px; border-radius:4px; }
.vtag-rubro { background:rgba(45,74,53,0.08); color:var(--forest); }
.vcard-date { font-size:11px; color:var(--muted); white-space:nowrap; flex-shrink:0; }
.vcard-new { font-size:10px; font-weight:700; letter-spacing:0.8px; text-transform:uppercase; color:var(--forest); background:rgba(45,74,53,0.1); padding:2px 7px; border-radius:4px; display:block; margin-bottom:4px; }
.vcard-desc { font-size:13px; color:var(--muted); line-height:1.5; margin-bottom:14px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.vcard-footer { display:flex; align-items:center; justify-content:space-between; padding-top:12px; border-top:1px solid var(--border); gap:8px; }
.vcard-contact-info { font-size:12px; color:var(--muted); }
.btn-contactar { padding:7px 14px; border:none; border-radius:8px; font-family:'Source Sans 3',sans-serif; font-size:12px; font-weight:600; cursor:pointer; transition:all 0.18s; text-decoration:none; display:inline-block; white-space:nowrap; }
.btn-whatsapp { background:#25D366; color:white; }
.btn-whatsapp:hover { background:#1da851; }
.btn-email { background:var(--forest); color:white; }
.btn-email:hover { background:var(--moss); }
.btn-direccion { background:var(--gold); color:white; }
.btn-direccion:hover { background:#b8771f; }

/* Loading / empty */
.loading-cards { grid-column:1/-1; text-align:center; padding:60px 20px; color:var(--muted); }
.spinner { width:32px; height:32px; border:3px solid var(--border); border-top-color:var(--gold); border-radius:50%; animation:spin 0.8s linear infinite; margin:0 auto 14px; }
@keyframes spin{to{transform:rotate(360deg)}}
.empty-state { grid-column:1/-1; text-align:center; padding:48px 20px; background:white; border:1px solid var(--border); border-radius:14px; color:var(--muted); }
.empty-icon { font-size:36px; margin-bottom:10px; }
.empty-title { font-family:'Playfair Display',serif; font-size:18px; color:var(--ink); margin-bottom:6px; }

/* ── SIDEBAR ── */
.sidebar { display:flex; flex-direction:column; gap:18px; }
.sidebar-card { background:white; border:1px solid var(--border); border-radius:14px; padding:20px; }
.sc-title { font-family:'Playfair Display',serif; font-size:16px; font-weight:700; color:var(--ink); margin-bottom:14px; }

/* CTA empresa */
.cta-empresa { background:var(--ink); border-radius:14px; padding:22px; text-align:center; }
.cta-title { font-family:'Playfair Display',serif; font-size:17px; font-weight:900; color:white; margin-bottom:6px; line-height:1.2; }
.cta-sub { font-size:12px; color:rgba(255,255,255,0.45); margin-bottom:14px; line-height:1.5; }
.cta-btn { display:block; width:100%; padding:10px; background:var(--gold); color:white; border:none; border-radius:9px; font-family:'Source Sans 3',sans-serif; font-size:13px; font-weight:600; cursor:pointer; transition:background 0.2s; text-decoration:none; margin-bottom:8px; }
.cta-btn:hover { background:#b8771f; }
.cta-btn-outline { display:block; width:100%; padding:9px; background:transparent; color:rgba(255,255,255,0.6); border:1px solid rgba(255,255,255,0.15); border-radius:9px; font-family:'Source Sans 3',sans-serif; font-size:13px; font-weight:600; cursor:pointer; transition:all 0.2s; text-decoration:none; }
.cta-btn-outline:hover { border-color:rgba(255,255,255,0.4); color:white; }
.cta-free { font-size:11px; color:rgba(255,255,255,0.25); margin-top:8px; }

/* Categorías */
.cat-list { display:flex; flex-direction:column; gap:2px; }
.cat-item { display:flex; align-items:center; justify-content:space-between; padding:8px 10px; border-radius:8px; cursor:pointer; transition:background 0.15s; text-decoration:none; color:inherit; }
.cat-item:hover { background:var(--cream); }
.cat-item.active-cat { background:rgba(45,74,53,0.08); }
.cat-left { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--ink); }
.cat-icon { font-size:15px; }
.cat-count { font-size:11px; font-weight:600; background:var(--paper); color:var(--muted); padding:2px 8px; border-radius:10px; }

/* Independientes */
.indep-list { display:flex; flex-direction:column; gap:10px; }
.indep-item { display:flex; align-items:center; gap:10px; padding:8px; border-radius:10px; cursor:pointer; transition:background 0.15s; text-decoration:none; }
.indep-item:hover { background:var(--cream); }
.indep-avatar { width:38px; height:38px; border-radius:50%; background:rgba(58,94,160,0.1); display:flex; align-items:center; justify-content:center; font-size:17px; flex-shrink:0; }
.indep-name { font-size:13px; font-weight:600; color:var(--ink); }
.indep-service { font-size:11px; color:var(--muted); }
.indep-empty { font-size:13px; color:var(--muted); text-align:center; padding:12px 0; }

/* ── FOOTER ── */
footer { background:var(--ink); padding:48px 96px 32px; margin-top:0; }
.footer-top { display:flex; justify-content:space-between; gap:40px; margin-bottom:36px; flex-wrap:wrap; }
.footer-logo { font-family:'Playfair Display',serif; font-size:22px; font-weight:900; color:white; margin-bottom:8px; }
.footer-logo span { color:var(--gold); }
.footer-tagline { font-size:13px; color:rgba(255,255,255,0.35); line-height:1.6; max-width:280px; }
.footer-cols { display:flex; gap:60px; }
.footer-col-title { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.3); margin-bottom:14px; }
.footer-link { display:block; font-size:13px; color:rgba(255,255,255,0.5); text-decoration:none; margin-bottom:8px; transition:color 0.2s; }
.footer-link:hover { color:white; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding-top:24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-copy { font-size:12px; color:rgba(255,255,255,0.25); }
.footer-paysandu{
  font-size:12px;
  display:flex;
  align-items:center;
  gap:6px;
  color:rgba(255,255,255,0.25);
}

.flag-paysandu{
  width:14px;
  height:auto;
}

/* ── NAV USER ── */
.nav-user { display:flex; align-items:center; gap:8px; font-size:13px; font-weight:600; color:var(--ink); background:var(--paper); border:1.5px solid var(--border); border-radius:8px; padding:6px 12px; white-space:nowrap; max-width:180px; overflow:hidden; text-overflow:ellipsis; }
.nav-user i { color:var(--gold); flex-shrink:0; }

/* ── MODAL POSTULACION ── */
.post-overlay { position:fixed; inset:0; background:rgba(28,26,23,0.6); z-index:400; display:none; align-items:center; justify-content:center; padding:20px; backdrop-filter:blur(4px); }
.post-overlay.open { display:flex; }
.post-modal { background:white; border-radius:20px; padding:32px; width:100%; max-width:460px; animation:postIn 0.28s cubic-bezier(0.34,1.56,0.64,1); position:relative; }
@keyframes postIn { from{opacity:0;transform:scale(0.93) translateY(10px)} to{opacity:1;transform:scale(1) translateY(0)} }
.post-close { position:absolute; top:14px; right:14px; background:var(--paper); border:none; border-radius:50%; width:30px; height:30px; font-size:16px; cursor:pointer; color:var(--muted); display:flex; align-items:center; justify-content:center; }
.post-vacante-ref { font-size:12px; color:var(--muted); margin-bottom:4px; }
.post-titulo { font-family:'Playfair Display',serif; font-size:20px; font-weight:900; margin-bottom:20px; }
.post-user-chip { display:flex; align-items:center; gap:10px; background:rgba(45,74,53,0.06); border:1px solid rgba(45,74,53,0.2); border-radius:10px; padding:12px 14px; margin-bottom:16px; }
.post-user-chip i { color:var(--forest); font-size:18px; }
.post-user-info { flex:1; }
.post-user-name { font-size:14px; font-weight:700; color:var(--ink); }
.post-user-contact { font-size:12px; color:var(--muted); margin-top:1px; }
.post-form-group { margin-bottom:14px; }
.post-form-group label { display:block; font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--muted); margin-bottom:6px; }
.post-form-group input, .post-form-group textarea { width:100%; background:var(--cream); border:1.5px solid var(--border); border-radius:10px; padding:11px 14px; font-family:'Source Sans 3',sans-serif; font-size:14px; color:var(--ink); outline:none; transition:all 0.2s; }
.post-form-group input:focus, .post-form-group textarea:focus { border-color:var(--gold); background:white; }
.post-form-group textarea { resize:vertical; min-height:80px; line-height:1.55; }
.post-form-group input::placeholder, .post-form-group textarea::placeholder { color:#BDB6AC; }
.post-btn { width:100%; padding:13px; background:var(--forest); color:white; border:none; border-radius:12px; font-family:'Source Sans 3',sans-serif; font-size:15px; font-weight:700; cursor:pointer; transition:all 0.18s; margin-top:4px; }
.post-btn:hover { background:var(--moss); }
.post-btn:disabled { opacity:0.6; cursor:not-allowed; }
.post-error { font-size:13px; color:var(--rust); margin-top:8px; display:none; }
.post-success { text-align:center; padding:8px 0; }
.post-success-icon { font-size:44px; margin-bottom:12px; display:block; }
.post-success-title { font-family:'Playfair Display',serif; font-size:20px; font-weight:900; margin-bottom:8px; }
.post-success-msg { font-size:14px; color:var(--muted); line-height:1.6; margin-bottom:20px; }
.post-register-cta { background:rgba(200,135,42,0.07); border:1px solid rgba(200,135,42,0.2); border-radius:12px; padding:16px; margin-top:4px; }
.post-register-cta p { font-size:13px; color:var(--muted); margin-bottom:12px; line-height:1.55; }
.post-register-btns { display:flex; gap:8px; }
.post-reg-btn { flex:1; padding:9px; border-radius:8px; font-family:'Source Sans 3',sans-serif; font-size:13px; font-weight:600; cursor:pointer; transition:all 0.18s; text-align:center; text-decoration:none; }
.post-reg-btn-solid { background:var(--gold); color:white; border:none; }
.post-reg-btn-solid:hover { background:#b8771f; }
.post-reg-btn-ghost { background:transparent; color:var(--muted); border:1.5px solid var(--border); }
.post-reg-btn-ghost:hover { border-color:var(--ink); color:var(--ink); }
.empresa-notice { background:rgba(181,78,42,0.06); border:1px solid rgba(181,78,42,0.2); border-radius:10px; padding:14px 16px; font-size:13px; color:var(--rust); line-height:1.55; }

/* ── VCARD NEXO badge ── */
.vtag-nexo { background:rgba(45,74,53,0.08); color:var(--forest); }
.btn-postular { background:var(--forest); color:white; }
.btn-postular:hover { background:var(--moss); }

.reveal { opacity:0; transform:translateY(24px); transition:opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:960px) {
  nav { padding:12px 20px; gap:8px; }
  .nav-link { display:none; }
  .hero { padding:40px 24px 48px; }
  .hero-search { flex-direction:column; border-radius:12px; }
  .hs-field { border-bottom:1px solid var(--border); padding:4px 16px; }
  .hero-search-btn { padding:14px; }
  .stats-bar { padding:16px 20px; display:grid; grid-template-columns:1fr 1fr; gap:14px; }
  .sbar-div { display:none; }
  .main { grid-template-columns:1fr; padding:24px 16px 60px; }
  .sidebar { flex-direction:column; }
  footer { padding:40px 24px 28px; }
  .footer-top { flex-direction:column; gap:24px; }
  .footer-cols { gap:32px; }
}

@media(max-width:600px) {
  #vacantes-list { grid-template-columns:1fr 1fr; gap:12px; }
  .vcard { padding:14px 14px; }
  .vcard-footer { flex-direction:column; align-items:flex-start; gap:8px; }
  .btn-contactar { width:100%; text-align:center; }
  .hero-tags { display:none; }
}

@media(max-width:380px) {
  #vacantes-list { grid-template-columns:1fr; gap:14px; }
}

/* ── BUSCADOR INDEPENDIENTES ── */
.indep-search-section {
  background: var(--ink);
  border-top: none;
  border-bottom: none;
  padding: 48px 96px 56px;
  position: relative;
  overflow: hidden;
}
.indep-search-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -60px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,135,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.indep-search-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 8px;
}
.indep-search-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
}
.indep-search-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.indep-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0 20px;
  max-width: 560px;
  margin-bottom: 24px;
  transition: all 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.indep-search-bar:focus-within {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 0 4px rgba(200,135,42,0.15);
}
.indep-search-bar i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}
.indep-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  color: var(--ink);
  padding: 15px 0;
  background: transparent;
}
.indep-search-input::placeholder { color: #BDB6AC; }
.indep-search-count {
  font-size: 12px;
  color: var(--muted);
  flex-shrink: 0;
  white-space: nowrap;
}

/* CARDS HORIZONTALES */
.indep-cards-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.icard {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.18s;
}
.icard:hover {
  border-color: var(--gold);
  box-shadow: 0 3px 14px rgba(0,0,0,0.06);
  transform: translateX(2px);
}
.icard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(58,94,160,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
  overflow: hidden;
  color: rgba(58,94,160,0.7);
}
.icard-avatar img { width: 100%; height: 100%; object-fit: cover; }
.icard-body { flex: 1; min-width: 0; }
.icard-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.icard-titulo {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.icard-tags {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 200px;
}
.icard-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 20px;
  background: rgba(58,94,160,0.08);
  color: var(--blue);
  white-space: nowrap;
}
.icard-zone {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  white-space: nowrap;
}
.icard-arrow {
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 4px;
}
.icard-pro {
  border-color: rgba(200,135,42,0.35);
  background: rgba(200,135,42,0.03);
}
.indep-empty-state {
  text-align: center;
  padding: 32px 20px;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.indep-show-more {
  margin-top: 14px;
  text-align: center;
}
.indep-show-more button {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.18s;
}
.indep-show-more button:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* MODAL INDEPENDIENTE */
.indep-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,26,23,0.6);
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.indep-modal-overlay.open { display: flex; }
.indep-modal {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  animation: postIn 0.28s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
.indep-modal-header {
  background: var(--ink);
  border-radius: 20px 20px 0 0;
  padding: 28px 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.indep-modal-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(58,94,160,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  overflow: hidden;
  color: rgba(58,94,160,0.8);
}
.indep-modal-avatar img { width: 100%; height: 100%; object-fit: cover; }
.indep-modal-info { flex: 1; min-width: 0; }
.indep-modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: white;
  margin-bottom: 3px;
}
.indep-modal-titulo {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.indep-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.indep-modal-close:hover { background: rgba(255,255,255,0.2); }
.indep-modal-body { padding: 24px 28px; }
.indep-modal-section { margin-bottom: 20px; }
.indep-modal-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.indep-modal-desc {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.65;
}
.indep-modal-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.indep-modal-chip {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(58,94,160,0.08);
  color: var(--blue);
}
.indep-modal-contact { display: flex; flex-direction: column; gap: 10px; }
.indep-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.18s;
}
.indep-contact-wa { background: #25D366; color: white; }
.indep-contact-wa:hover { background: #1da851; }
.indep-contact-email { background: var(--forest); color: white; }
.indep-contact-email:hover { background: var(--moss); }
.indep-modal-footer {
  border-top: 1px solid var(--border);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.indep-modal-zone {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.indep-perfil-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
.indep-perfil-link:hover { text-decoration: underline; }

@media(max-width:960px) {
  .indep-search-section { padding: 32px 20px 40px; }
}
@media(max-width:600px) {
  .icard-tags { display: none; }
  .indep-modal-body { padding: 18px 20px; }
  .indep-modal-header { padding: 20px; }
  .indep-modal-footer { padding: 14px 20px; }
}

/* ── PARTNERS ── */
.partners-section {
  padding: 44px 80px;
  text-align: center;
  background-color: white;
  border-top: 2px solid var(--border);
}
.partners-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.partner-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
}
.partner-badge:hover { border-color: var(--forest); color: var(--forest); }
.partner-badge .badge-icon { font-size: 20px; }
.partner-coming { color: var(--border); font-size: 12px; font-style: italic; }
.partner-logo{
  height:60px;
  max-width:160px;
  object-fit:contain;
}