@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;1,400;1,600;1,700&family=Syne:wght@700;800&family=Inter:wght@400;500;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
a { color: inherit; text-decoration: none; }

:root {
  --bg: #0d0d0d;
  --ink: #f0f0f0;
  --accent: #ff4d1c;
  --soft: #1c1c1e;
  --muted: rgba(255,255,255,.45);
  --white: #161616;
  --border: 1px solid rgba(255,255,255,.08);
  --shadow-color: rgba(0,0,0,.5);
}

/* dark mode variables kept for compatibility but site is always dark now */

/* Dark mode toggle button */
.theme-toggle {
  background: none; border: var(--border); border-radius: 100px;
  padding: 6px 12px; cursor: pointer; font-size: .85rem;
  color: var(--ink); transition: all .15s; display: flex; align-items: center; gap: 5px;
  font-family: 'Inter', sans-serif; white-space: nowrap; display: none;
}
.theme-toggle:hover { background: var(--soft); }

body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--ink); transition: background .25s, color .25s; }

/* ── HEADER ── */
header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: sticky; top: 0; background: rgba(13,13,13,.75); z-index: 100;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: background .3s;
}
.logo { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; letter-spacing: -1px; }
.logo span { color: var(--accent); }
nav { display: flex; gap: 24px; align-items: center; }
nav a { font-size: 0.85rem; color: rgba(255,255,255,.6); text-decoration: none; font-weight: 500; transition: color .3s ease; letter-spacing: .01em; }
nav a:hover { color: #fff; }
nav a.nav-active { color: #fff !important; font-weight: 600 !important; }
nav a.nav-cta-pill {
  background: var(--accent); color: #fff !important;
  padding: 8px 18px; border-radius: 100px; font-weight: 700;
  font-size: 0.82rem; transition: opacity .2s;
}
nav a.nav-cta-pill:hover { opacity: .85; color: #fff; }
.nav-cta { background: var(--accent) !important; color: #fff !important; padding: 9px 20px !important; border-radius: 100px !important; font-weight: 700 !important; }
.nav-active { color: var(--ink) !important; font-weight: 700 !important; }

/* ── HEADER SEARCH ── */
.header-search-wrap { position:relative; flex:1; max-width:320px; margin:0 24px; }
.header-search-input {
  width:100%; border:var(--border); border-radius:100px; padding:9px 18px;
  font-family:'Inter',sans-serif; font-size:.83rem; background:var(--soft);
  color:var(--ink); outline:none; transition:all .2s;
}
.header-search-input:focus { background:var(--white); box-shadow:0 0 0 3px rgba(255,77,28,.15); border-color:var(--accent); }
.header-search-results {
  display:none; position:absolute; top:calc(100% + 8px); left:0; right:0;
  background:#1c1c1e; border:var(--border); border-radius:14px;
  box-shadow:0 16px 32px rgba(0,0,0,.5); overflow:hidden; z-index:300;
}
.header-search-results.open { display:block; }
.hsr-item { display:flex; align-items:center; gap:10px; padding:11px 16px; text-decoration:none; color:var(--ink); border-bottom:1px solid rgba(255,255,255,.06); transition:background .12s; }
.hsr-item:last-of-type { border-bottom:none; }
.hsr-item:hover, .hsr-item.active { background:rgba(255,255,255,.06); }
.hsr-icon { font-size:1.1rem; width:28px; text-align:center; flex-shrink:0; }
.hsr-info { flex:1; min-width:0; }
.hsr-name { font-size:.83rem; font-weight:700; }
.hsr-empresa { font-size:.7rem; color:var(--muted); }
.hsr-empty { padding:16px; font-size:.82rem; color:var(--muted); text-align:center; }
.hsr-more { display:block; padding:10px 16px; font-size:.78rem; font-weight:600; color:var(--accent); text-decoration:none; text-align:center; border-top:1px solid rgba(26,26,26,.07); transition:background .12s; }
.hsr-more:hover { background:var(--soft); }

/* ── GRADIENTES DE TEXTO ── */
.grad-text-purple {
  background: linear-gradient(90deg, #a855f7, #6366f1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-text-pink {
  background: linear-gradient(90deg, #ec4899, #f43f5e);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-text-cyan {
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── HERO ── */
.hero-slogan {
  position: relative;
  overflow: hidden;
  border-bottom: var(--border);
  padding: 52px 24px 44px;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1920&q=80&auto=format');
  background-size: cover;
  background-position: center;
}
.hero-slogan::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.72) 0%, rgba(13,13,13,.92) 100%);
  z-index: 0;
}
.hero-slogan-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }
.hero-slogan-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(255,77,28,.35);
  background: rgba(255,77,28,.08); border-radius: 100px;
  padding: 5px 16px; margin-bottom: 16px;
}
.hero-slogan-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.hero-slogan-title em { font-style: normal; color: var(--accent); font-weight: 700; }
.hero-slogan-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin: 0 auto 22px;
  max-width: 480px;
}
.hero-ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px;
}
.hero-btn-primary {
  display: inline-block; background: var(--accent); color: #fff;
  font-weight: 700; font-size: 1rem; padding: 16px 32px;
  border-radius: 100px; text-decoration: none; transition: opacity .15s;
}
.hero-btn-primary:hover { opacity: .85; }
.hero-btn-secondary {
  display: inline-block; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.75);
  font-weight: 600; font-size: 1rem; padding: 16px 32px;
  border-radius: 100px; text-decoration: none; transition: all .15s;
}
.hero-btn-secondary:hover { background: rgba(255,255,255,.14); color: #fff; }
.hero-tools-strip {
  display: none;
}
.hero-tools-label { font-size: .75rem; color: rgba(255,255,255,.3); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.hero-tools-logos { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; align-items: center; }
.hero-tool-chip {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: 6px 14px 6px 8px;
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.6);
  text-decoration: none; transition: all .15s;
}
.hero-tool-chip:hover { background: rgba(255,255,255,.12); color: #fff; }
.hero-tool-chip img, .hero-tool-chip span.chip-icon { width: 20px; height: 20px; border-radius: 6px; font-size: 1rem; line-height: 1; }

/* ── FEATURES UDIA ── */
.features-udia { padding: 80px 48px; border-bottom: var(--border); }
.features-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.features-header h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2.4rem,5vw,4rem); font-weight: 600; font-style: italic; letter-spacing: -0.01em; line-height: 1.05; margin-bottom: 14px; }
.features-header p { font-size: .95rem; color: var(--muted); line-height: 1.7; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
.feature-card {
  background: var(--soft); border: var(--border); border-radius: 20px;
  padding: 28px 26px 24px; display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; color: var(--ink); position: relative;
  transition: border-color .2s;
  min-height: 240px;
}
.feature-card:hover { border-color: rgba(255,255,255,.2); }
.feature-card-top { display: flex; flex-direction: column; gap: 4px; }
.feature-muted { font-size: .8rem; color: var(--muted); font-weight: 500; }
.feature-card h3 { font-family: 'Syne', sans-serif; font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 800; letter-spacing: -.5px; line-height: 1.15; margin: 0; }
.feature-card p { font-size: .85rem; color: var(--muted); line-height: 1.65; flex: 1; }
.feature-plus {
  position: absolute; bottom: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: rgba(255,255,255,.35);
  transition: all .15s;
}
.feature-card:hover .feature-plus { border-color: var(--accent); color: var(--accent); }
@media (max-width: 800px) { .features-grid { grid-template-columns: 1fr; } .features-udia { padding: 60px 24px; } }

.hero {
  min-height: unset; display: flex; align-items: center; justify-content: center;
  padding: 36px 24px; border-bottom: var(--border);
  background: radial-gradient(circle at 50% 0%, rgba(255,77,28,.12) 0%, transparent 60%);
}
.hero-inner { max-width: 700px; width: 100%; text-align: center; }
.hero-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  background: var(--white); border: var(--border); border-radius: 100px;
  padding: 6px 18px; margin-bottom: 30px; letter-spacing: 0.3px;
}
.hero-inner h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 20px;
}
.hero-inner h1 em { font-style: italic; color: var(--accent); }
.hero-inner > p { font-size: 1.05rem; color: var(--muted); margin-bottom: 40px; line-height: 1.65; }

.search-big {
  display: flex; background: var(--soft); border: var(--border);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06); margin-bottom: 22px;
  transition: box-shadow .2s;
}
.search-big:focus-within { box-shadow: 0 0 0 2px var(--accent); border-color: var(--accent); }
.search-big input {
  flex: 1; border: none; outline: none; padding: 18px 24px;
  font-size: 1rem; font-family: 'Inter', sans-serif; background: transparent; color: var(--ink);
}
.search-big input::placeholder { color: #bbb; }
.search-big button {
  background: var(--accent); border: none; color: #fff;
  padding: 14px 26px; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; font-family: 'Inter', sans-serif;
  display: flex; align-items: center; gap: 8px;
  margin: 6px; border-radius: 12px; transition: opacity .2s;
}
.search-big button:hover { opacity: .85; }

.sugerencias { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.sugerencias span { font-size: 0.75rem; color: var(--muted); font-weight: 500; }
.sugerencias button {
  background: transparent; border: 1.5px solid rgba(26,26,26,.18);
  border-radius: 100px; padding: 5px 13px;
  font-size: 0.76rem; font-family: 'Inter', sans-serif;
  color: var(--ink); cursor: pointer; transition: all .15s;
}
.sugerencias button:hover { border-color: var(--accent); color: var(--accent); }

/* ── RESULTADO ── */
.resultado { padding: 52px 48px; border-bottom: var(--border); background: var(--white); }
.resultado-inner { max-width: 860px; margin: 0 auto; }
.res-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); font-weight: 600; margin-bottom: 20px; }

.res-card {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 24px; align-items: center;
  background: var(--soft); border: var(--border);
  border-radius: 20px; padding: 28px 30px;
  margin-bottom: 24px;
}
.res-icon {
  width: 60px; height: 60px; background: rgba(255,255,255,.07);
  border: var(--border); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; overflow: hidden; padding: 6px; flex-shrink: 0;
}
.res-body h3 { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; letter-spacing: -.5px; margin-bottom: 6px; }
.res-body .res-why { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.res-btn {
  background: var(--accent); color: #fff; border: none;
  border-radius: 100px; padding: 13px 22px; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; font-family: 'Inter', sans-serif;
  text-decoration: none; white-space: nowrap;
  transition: opacity .15s; display: inline-block;
}
.res-btn:hover { opacity: .85; }
.res-btn.dark { background: rgba(255,255,255,.1); border: var(--border); }

.res-steps { margin-top: 22px; }
.res-steps h4, .otras-opciones h4 {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--muted); font-weight: 600; margin-bottom: 12px;
}
.steps-list { display: flex; gap: 10px; flex-wrap: wrap; }
.step {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,.05); border: var(--border); border-radius: 12px;
  padding: 14px 16px; flex: 1; min-width: 170px;
}
.step-num {
  width: 22px; height: 22px; background: var(--accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}
.step-text { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

.otras-opciones { margin-top: 18px; }
.otras-list { display: flex; gap: 10px; flex-wrap: wrap; }
.otra-card {
  background: var(--bg); border: 1.5px solid rgba(26,26,26,.2);
  border-radius: 10px; padding: 9px 16px; font-size: 0.82rem;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--ink); transition: border-color .15s;
}
.otra-card:hover { border-color: var(--ink); }

.no-match { text-align: center; padding: 32px 20px; }
.no-match p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
.no-match-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── PROFESIONES ── */
.profesiones { padding: 70px 48px; border-bottom: var(--border); }
.prof-header { margin-bottom: 36px; }
.prof-header h2 { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 6px; }
.prof-header p { font-size: 0.88rem; color: var(--muted); }

.prof-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }

.prof-card {
  background: var(--soft); border: var(--border); border-radius: 16px;
  padding: 24px; cursor: pointer; transition: all .18s;
}
.prof-card:hover { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.prof-emoji { font-size: 2rem; margin-bottom: 12px; }
.prof-name { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.prof-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.prof-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.prof-tag {
  background: rgba(255,255,255,.07); border-radius: 100px;
  padding: 3px 10px; font-size: 0.7rem; font-weight: 500; color: var(--muted);
  cursor: pointer; transition: all .15s; border: var(--border); font-family: 'Inter', sans-serif;
}
.prof-tag:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── TENDENCIAS ── */
.tendencias { border-bottom: var(--border); }
.tend-inner {
  display: grid; grid-template-columns: 1fr 1fr;
}
.tend-left { padding: 52px 48px; border-right: var(--border); }
.tend-right {
  padding: 52px 48px; background: #1a1a1a; color: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
}
.section-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); font-weight: 600; margin-bottom: 20px; }
.tend-list { display: flex; flex-direction: column; gap: 4px; }
.tend-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid rgba(26,26,26,.08);
  cursor: pointer; transition: padding .15s;
}
.tend-item:last-child { border-bottom: none; }
.tend-item:hover { padding-left: 6px; }
.tend-item-left { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; font-weight: 500; }
.tend-num { font-size: 0.72rem; color: var(--muted); font-weight: 700; width: 20px; }
.tend-arrow { color: var(--muted); font-size: 0.8rem; }
.tend-item:hover .tend-arrow { color: var(--accent); }

.tend-stat-big { font-family: 'Syne', sans-serif; font-size: clamp(2.5rem,5vw,4rem); font-weight: 800; letter-spacing: -2px; color: var(--accent); margin-bottom: 10px; }
.tend-stat-label { font-size: 1rem; color: var(--muted); line-height: 1.5; margin-bottom: 16px; }
.tend-stat-sub { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: 1px; }

/* ── QUÉ ES ── */
.que-es { padding: 72px 48px; border-bottom: var(--border); background: var(--white); }
.que-es-inner { max-width: 1100px; margin: 0 auto; }
.qe-header { max-width: 620px; margin-bottom: 48px; }
.qe-header h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; }
.qe-header p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }
.qe-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.qe-card { background: var(--soft); border: var(--border); border-radius: 16px; padding: 28px 24px; }
.qe-icon { font-size: 1.8rem; margin-bottom: 14px; }
.qe-card h3 { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 800; margin-bottom: 8px; }
.qe-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 900px) { .qe-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .qe-grid { grid-template-columns: 1fr; } .que-es { padding: 48px 20px; } }

/* ── EXPLORAR ── */
.explorar { padding: 60px 48px 80px; }
.explorar-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.explorar-top h2 { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 4px; }
.explorar-top p { font-size: 0.82rem; color: var(--muted); }

.cats-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-pill {
  background: transparent; border: var(--border);
  border-radius: 100px; padding: 7px 18px;
  font-size: 0.8rem; font-weight: 500; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: all .15s; color: var(--muted);
}
.cat-pill:hover { color: var(--ink); border-color: rgba(255,255,255,.2); }
.cat-pill.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }

.tool-card {
  background: var(--soft); border: var(--border); border-radius: 20px;
  overflow: hidden; text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
}
.tool-card:hover {
  border-color: rgba(255,255,255,.22);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.tool-card-visual {
  position: relative; height: 160px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.tool-card-visual img { transition: transform .4s cubic-bezier(.16,1,.3,1); }
.tool-card:hover .tool-card-visual img { transform: scale(1.06); }
.tool-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.7) 100%);
  z-index: 1;
}
.tool-icon-big {
  position: relative; z-index: 2;
  width: 72px; height: 72px; border-radius: 18px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; overflow: hidden; padding: 6px;
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.tool-card:hover .tool-icon-big { transform: scale(1.08); }
.tool-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.tool-fav-btn { position:absolute; top:14px; right:14px; background:none; border:none; cursor:pointer; font-size:1rem; padding:4px; transition:transform .15s; z-index:2; }
.tool-fav-btn:hover { transform:scale(1.25); }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.tool-icon {
  width: 44px; height: 44px; border: var(--border); border-radius: 11px;
  background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; overflow: hidden; padding: 4px;
}
.tool-badge { font-size: 0.68rem; font-weight: 600; padding: 3px 9px; border-radius: 100px; border: 1.5px solid; }
.badge-gratis   { border-color: rgba(34,197,94,.4); color: #4ade80; background: rgba(34,197,94,.1); }
.badge-freemium { border-color: rgba(245,158,11,.4); color: #fbbf24; background: rgba(245,158,11,.1); }
.badge-pago     { border-color: rgba(239,68,68,.4); color: #f87171; background: rgba(239,68,68,.1); }
.tool-name { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 3px; letter-spacing: -.3px; }
.tool-cat-tag { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.tool-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.card-link { font-size: 0.76rem; font-weight: 600; color: var(--accent); }

/* ── CALCULADORA CTA ── */
.calc-cta { border-bottom: var(--border); background: #111; }
.calc-cta-inner {
  max-width: 1200px; margin: 0 auto; padding: 64px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.calc-cta-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 100px; padding: 5px 14px; margin-bottom: 18px; color: rgba(245,242,235,.7); }
.calc-cta-left h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; letter-spacing: -1px; line-height: 1.2; color: var(--ink); margin-bottom: 12px; }
.calc-cta-left p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 28px; }
.calc-cta-btn {
  display: inline-block; background: var(--accent); color: #fff;
  border: 2px solid rgba(255,255,255,.3); border-radius: 12px;
  padding: 14px 26px; font-size: 0.9rem; font-weight: 700;
  text-decoration: none; transition: all .15s;
  box-shadow: 3px 3px 0 rgba(255,255,255,.15);
}
.calc-cta-btn:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(255,255,255,.15); }
.calc-cta-right { display: flex; flex-direction: column; gap: 20px; }
.calc-cta-stat { display: flex; align-items: center; gap: 20px; padding: 18px 24px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; }
.ccs-num { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--accent); min-width: 70px; }
.ccs-label { font-size: 0.82rem; color: rgba(245,242,235,.5); line-height: 1.4; }

@media (max-width: 800px) {
  .calc-cta-inner { grid-template-columns: 1fr; padding: 48px 20px; gap: 32px; }
}

/* ── BLOG PREVIEW ── */
.blog-preview { padding: 60px 48px; border-bottom: var(--border); }
.bp-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.bp-header h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 600; font-style: italic; letter-spacing: -0.01em; margin-bottom: 4px; line-height: 1.1; }
.bp-header p { font-size: 0.85rem; color: var(--muted); }
.bp-ver-todo { font-size: 0.85rem; font-weight: 600; color: var(--accent); text-decoration: none; white-space: nowrap; }
.bp-ver-todo:hover { text-decoration: underline; }
.bp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 16px; }
.bp-card {
  background: var(--soft); border: var(--border); border-radius: 20px;
  text-decoration: none; color: var(--ink); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
}
.bp-card:hover {
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.bp-card-header {
  padding: 28px 24px 24px;
  display: flex; align-items: flex-start; justify-content: space-between;
}
.bp-card-header-left { display: flex; flex-direction: column; gap: 10px; }
.bp-card-icon { font-size: 2rem; line-height: 1; }
.bp-card-cat { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); font-weight: 700; }
.bp-card-plus {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(255,255,255,.3);
  transition: all .2s;
}
.bp-card:hover .bp-card-plus { border-color: var(--accent); color: var(--accent); }
.bp-card-body { padding: 0 24px 24px; display: flex; flex-direction: column; flex: 1; }
.bp-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 600; font-style: italic; line-height: 1.2;
  margin-bottom: 10px; color: var(--ink);
}
.bp-card-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.bp-card-meta {
  font-size: 0.7rem; color: rgba(255,255,255,.25);
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 12px;
}

@media (max-width: 800px) { .blog-preview { padding: 40px 20px; } }

/* ── NEWSLETTER ── */
.newsletter { background: #0d0d0d; padding: 96px 48px; border-top: var(--border); border-bottom: var(--border); }
.newsletter-inner { max-width: 680px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.nl-eyebrow { font-size: .7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); font-weight: 700; }
.nl-text h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2.4rem,5.5vw,4rem); font-weight: 600; font-style: italic; letter-spacing: -0.01em; color: var(--ink); line-height: 1.05; }
.nl-text p { font-size: .95rem; color: var(--muted); line-height: 1.7; max-width: 480px; margin: 12px auto 0; }
.nl-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; width: 100%; max-width: 440px; }
.nl-form input {
  flex: 1; min-width: 200px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; padding: 14px 20px; font-size: 0.88rem;
  font-family: 'Inter', sans-serif; color: var(--ink); outline: none; transition: border-color .2s;
}
.nl-form input:focus { border-color: rgba(255,255,255,.3); }
.nl-form input::placeholder { color: rgba(255,255,255,.3); }
.nl-form button {
  background: var(--accent); border: none; color: #fff; padding: 14px 24px;
  border-radius: 100px; font-size: 0.85rem; font-weight: 700;
  font-family: 'Inter', sans-serif; cursor: pointer; white-space: nowrap; transition: opacity .15s;
}
.nl-form button:hover { opacity: .85; }

/* ── FOOTER ── */
footer { border-top: var(--border); padding: 52px 48px 32px; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 10px; }
.footer-brand p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin-top: 8px; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.fl-col { display: flex; flex-direction: column; gap: 10px; }
.fl-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.fl-col a { font-size: 0.82rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color .15s; }
.fl-col a:hover { color: var(--ink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,.25); }

/* ── RESPONSIVE ── */
/* ── MOBILE BURGER ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 12px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,.75);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, width .2s ease;
  width: 22px;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 199;
}
.nav-overlay.open { display: block; }

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(280px, 80vw);
  background: #111;
  border-left: 1px solid rgba(255,255,255,.08);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
  letter-spacing: -.01em;
}
.nav-drawer a:hover { color: #fff; }
.nav-drawer a.nav-cta-pill {
  margin-top: 16px;
  background: var(--accent);
  color: #fff;
  padding: 14px 24px;
  border-radius: 100px;
  border: none;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 800px) {
  header { padding: 16px 20px; }
  nav { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 60px 20px; min-height: auto; }
  .resultado { padding: 30px 20px; }
  .res-card { grid-template-columns: 1fr; }
  .profesiones { padding: 50px 20px; }
  .tend-inner { grid-template-columns: 1fr; }
  .tend-right { border-top: var(--border); }
  .tend-left, .tend-right { padding: 36px 20px; }
  .explorar { padding: 40px 20px 60px; }
  .explorar-top { flex-direction: column; }
  .newsletter { padding: 40px 20px; }
  .newsletter-inner { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  footer { padding: 40px 20px 24px; }
}

/* ═══════════════════════════════════════
   NEWSLETTER POPUP
   ═══════════════════════════════════════ */
.nl-popup-overlay {
  position: fixed; inset: 0; background: rgba(26,26,26,.65);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 24px;
  backdrop-filter: blur(3px);
}
.nl-popup {
  background: #1c1c1e; border: var(--border); border-radius: 24px;
  max-width: 420px; width: 100%; padding: 40px 36px;
  box-shadow: 0 24px 48px rgba(0,0,0,.6);
  text-align: center; position: relative;
  transform: translateY(24px); opacity: 0;
  transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .3s;
}
.nl-popup.visible { transform: translateY(0); opacity: 1; }
.nl-popup-close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: var(--border); border-radius: 8px;
  padding: 5px 10px; cursor: pointer; font-size: .82rem;
  color: var(--muted); font-family: 'Inter', sans-serif;
  transition: all .15s;
}
.nl-popup-close:hover { background: var(--soft); color: var(--ink); }
.nl-popup-emoji { font-size: 2.8rem; margin-bottom: 14px; }
.nl-popup-title { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; letter-spacing: -.5px; line-height: 1.15; margin-bottom: 10px; }
.nl-popup-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; margin-bottom: 22px; }
.nl-popup-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.nl-popup-input {
  border: var(--border); border-radius: 10px; padding: 12px 16px;
  font-family: 'Inter', sans-serif; font-size: .88rem;
  background: rgba(255,255,255,.07); color: var(--ink); outline: none;
  transition: border-color .2s; text-align: center;
}
.nl-popup-input:focus { border-color: var(--accent); }
.nl-popup-btn {
  background: var(--accent); color: #fff; border: none;
  border-radius: 100px; padding: 13px; font-size: .88rem; font-weight: 700;
  font-family: 'Inter', sans-serif; cursor: pointer; transition: opacity .15s;
}
.nl-popup-btn:hover { opacity: .85; }
.nl-popup-meta { font-size: .72rem; color: var(--muted); margin-bottom: 16px; }
.nl-popup-skip { background: none; border: none; cursor: pointer; font-size: .75rem; color: var(--muted); font-family: 'Inter', sans-serif; text-decoration: underline; }
.nl-popup-skip:hover { color: var(--ink); }

/* ═══════════════════════════════════════
   VOTOS / LIKES
   ═══════════════════════════════════════ */
.voto-widget { display: inline-flex; align-items: center; gap: 10px; }
.voto-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: var(--border); border-radius: 100px;
  padding: 9px 18px; font-size: .88rem; font-weight: 700;
  font-family: 'Inter', sans-serif; cursor: pointer; transition: all .15s;
  color: var(--ink);
}
.voto-btn:hover { background: var(--soft); transform: scale(1.04); }
.voto-btn.votado { background: rgba(217,119,6,.2); border-color: #d97706; color: #fbbf24; }
.voto-num { font-family: 'Syne', sans-serif; font-size: .95rem; font-weight: 800; }
.voto-label { font-size: .75rem; color: var(--muted); font-weight: 500; }

/* ── BADGE NUEVO ── */
.badge-nuevo {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #fff;
  font-size: .65rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 100px; pointer-events: none; z-index: 2;
}

/* ── ¿MERECE LA PENA PAGAR? ── */
.mp-box {
  border: var(--border); border-radius: 16px; padding: 24px 28px;
  background: var(--white);
}
.mp-veredicto { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.mp-icon { font-size: 1.4rem; }
.mp-label { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 800; }
.mp-razon { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 14px; }
.mp-consejo {
  font-size: .83rem; font-weight: 600; background: var(--soft);
  border-radius: 10px; padding: 10px 16px; color: var(--ink);
}
.mp-gratis { border-color: #2da44e; }
.mp-gratis .mp-label { color: #2da44e; }
.mp-empieza-gratis { border-color: #d4a017; }
.mp-empieza-gratis .mp-label { color: #d4a017; }
.mp-depende { border-color: var(--muted); }

/* ── NO MATCH CUÉNTANOS ── */
.no-match-cuentanos {
  margin-top: 20px; padding-top: 20px; border-top: var(--border);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.no-match-cuentanos p { font-size: .85rem; color: var(--muted); }
.nm-cuentanos-btn {
  font-size: .83rem; font-weight: 600; color: var(--accent);
  border: 1.5px solid var(--accent); border-radius: 100px;
  padding: 8px 18px; text-decoration: none; white-space: nowrap;
  transition: all .15s;
}
.nm-cuentanos-btn:hover { background: var(--accent); color: #fff; }

/* ── CURSOS TEASER ── */
.cursos-teaser {
  padding: 80px 48px; background: #0d0d0d;
  border-top: var(--border); border-bottom: var(--border);
}
.ct-inner { max-width: 1100px; margin: 0 auto; }
.ct-header { text-align: center; margin-bottom: 56px; }
.ct-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.cursos-teaser h2 {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600; font-style: italic; letter-spacing: -0.01em; margin-bottom: 14px; color: var(--ink);
  line-height: 1.05;
}
.ct-lead { font-size: .97rem; color: var(--muted); line-height: 1.7; max-width: 540px; margin: 0 auto; }

/* cards */
.ct-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 48px;
}
.ct-card {
  background: #1c1c1e; border: var(--border); border-radius: 20px;
  padding: 28px 26px 24px; min-height: 220px; position: relative;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s;
  text-decoration: none; color: inherit;
}
.ct-card:hover { border-color: rgba(255,255,255,.18); }
.ct-card-tag {
  font-size: .65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}
.ct-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600; font-style: italic; letter-spacing: -0.01em; line-height: 1.1; margin: 0;
  color: var(--ink);
}
.ct-card p { font-size: .82rem; color: var(--muted); line-height: 1.65; margin: 4px 0 0; flex: 1; }
.ct-card-soon {
  display: inline-block; font-size: .62rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; background: rgba(255,255,255,.07); color: var(--muted);
  padding: 4px 12px; border-radius: 100px; border: var(--border); width: fit-content;
}
.ct-plus {
  position: absolute; bottom: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,.35);
}

/* cta waitlist */
.ct-cta-wrap { text-align: center; max-width: 520px; margin: 0 auto; }
.ct-cta-label { font-size: .82rem; color: var(--muted); margin-bottom: 14px; }
.ct-cta { display: flex; gap: 0; margin: 0 auto 12px; }
.ct-email {
  flex: 1; padding: 14px 18px; border: 1px solid rgba(255,255,255,.15);
  border-right: none; border-radius: 100px 0 0 100px; background: rgba(255,255,255,.06);
  color: var(--ink); font-size: .88rem; font-family: 'Inter', sans-serif; outline: none;
}
.ct-email::placeholder { color: rgba(255,255,255,.3); }
.ct-email:focus { border-color: rgba(255,255,255,.35); }
.ct-btn {
  padding: 14px 26px; background: var(--accent); color: #fff; border: none;
  border-radius: 0 100px 100px 0; font-size: .88rem; font-weight: 700;
  cursor: pointer; font-family: 'Inter', sans-serif; white-space: nowrap;
  transition: opacity .15s;
}
.ct-btn:hover { opacity: .85; }
.ct-btn:disabled { opacity: .6; cursor: default; }
.ct-sub { font-size: .72rem; color: rgba(255,255,255,.28); }

/* ── FOOTER CONTACTO ── */
.footer-contacto {
  display: inline-block; margin-top: 10px; font-size: .82rem;
  color: var(--muted); text-decoration: none; transition: color .15s;
}
.footer-contacto:hover { color: var(--accent); }

@media (max-width: 700px) {
  .cursos-teaser { padding: 60px 24px; }
  .ct-cards { grid-template-columns: 1fr; }
  .ct-cta { flex-direction: column; gap: 10px; }
  .ct-email { border-right: 1px solid rgba(255,255,255,.15); border-radius: 100px; }
  .ct-btn { border-radius: 100px; }
  .ct-email { border-right: 1.5px solid rgba(245,242,235,.3); border-radius: 100px; }
  .ct-btn { border-radius: 100px; }
}

/* ── RESULTADOS REALES ── */
.resultados {
  padding: 80px 48px;
  background: var(--white);
  border-bottom: var(--border);
}
.rr-inner { max-width: 1100px; margin: 0 auto; }
.rr-header { text-align: center; margin-bottom: 48px; }
.rr-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600; font-style: italic; letter-spacing: -0.01em; margin: 12px 0 14px;
}
.rr-header p { font-size: .9rem; color: var(--muted); max-width: 500px; margin: 0 auto; }

.rr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.rr-card {
  background: var(--soft);
  border: var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s;
}
.rr-card:hover { border-color: rgba(255,255,255,.18); }

.rr-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rr-tool {
  font-size: .85rem; font-weight: 700; display: flex; align-items: center; gap: 6px;
}
.rr-tool span { font-family: 'Syne', sans-serif; font-size: .95rem; }
.rr-tiempo {
  font-size: .75rem; font-weight: 700; color: var(--accent);
  background: rgba(255,77,28,.1); padding: 4px 12px; border-radius: 100px;
}

.rr-tarea {
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800; line-height: 1.3;
}

.rr-prompt-wrap {
  background: rgba(255,255,255,.05);
  border: var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rr-prompt-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted);
}
.rr-prompt-text {
  font-size: .8rem; color: var(--muted); line-height: 1.6; font-style: italic;
}
.rr-copy-btn {
  align-self: flex-start;
  font-size: .75rem; font-weight: 700;
  background: none; border: 1.5px solid var(--ink); border-radius: 100px;
  padding: 5px 14px; cursor: pointer; color: var(--ink);
  font-family: 'Inter', sans-serif; transition: all .15s;
}
.rr-copy-btn:hover { background: var(--ink); color: var(--bg); }
.rr-copy-btn.copied { background: #2da44e; border-color: #2da44e; color: #fff; }

.rr-resultado {
  font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.55);
  display: flex; flex-direction: column; gap: 4px;
}
.rr-resultado-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: #2da44e;
}
.rr-resultado strong { color: var(--ink); }

.rr-ver {
  align-self: flex-start;
  font-size: .82rem; font-weight: 700; color: var(--accent);
  text-decoration: none; margin-top: auto;
  border-bottom: 1.5px solid transparent; transition: border-color .15s;
}
.rr-ver:hover { border-color: var(--accent); }

.rr-footer {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 28px; background: var(--soft); border-radius: 16px; border: var(--border);
  flex-wrap: wrap; background: rgba(255,255,255,.04);
}
.rr-footer p { font-size: .88rem; color: var(--muted); }
.rr-footer-btn {
  font-size: .85rem; font-weight: 700; color: #fff;
  background: var(--accent); border: none; border-radius: 100px;
  padding: 10px 22px; text-decoration: none; transition: opacity .15s;
}
.rr-footer-btn:hover { opacity: .85; }

@media (max-width: 900px) {
  .resultados { padding: 60px 24px; }
  .rr-grid { grid-template-columns: 1fr; }
}

/* ── EMPRESAS GANCHO (home) ── */
.empresas-gancho {
  padding: 80px 48px;
  background: #111;
  color: var(--ink);
  border-bottom: none;
}
.eg-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.eg-inner .section-label { color: var(--accent); margin-bottom: 16px; }
.eg-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -1.5px;
  color: var(--bg); margin-bottom: 16px; line-height: 1.15;
}
.eg-inner > .eg-left > p {
  font-size: .9rem; color: rgba(245,242,235,.65); line-height: 1.7; margin-bottom: 32px;
}
.eg-stats { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.eg-stat { display: flex; align-items: baseline; gap: 10px; }
.eg-num {
  font-family: 'Syne', sans-serif; font-size: 1.6rem;
  font-weight: 800; color: var(--accent); white-space: nowrap;
}
.eg-label { font-size: .82rem; color: rgba(245,242,235,.6); line-height: 1.4; }
.eg-cta {
  display: inline-block;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: .9rem;
  padding: 14px 28px; border-radius: 100px;
  text-decoration: none; transition: opacity .15s;
}
.eg-cta:hover { opacity: .85; }

.eg-right { display: flex; flex-direction: column; gap: 12px; }
.eg-caso {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(245,242,235,.12);
  border-radius: 14px; padding: 18px 20px;
  transition: border-color .2s, background .2s;
}
.eg-caso:hover {
  border-color: rgba(245,242,235,.3);
  background: rgba(255,255,255,.1);
}
.eg-caso-dept {
  font-family: 'Syne', sans-serif; font-size: .85rem;
  font-weight: 800; color: var(--bg); margin-bottom: 4px;
}
.eg-caso-desc { font-size: .8rem; color: rgba(245,242,235,.55); line-height: 1.5; }

@media (max-width: 900px) {
  .empresas-gancho { padding: 60px 24px; }
  .eg-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ── EMPRESAS GANCHO v2 (home) ── */
.empresas-gancho {
  background: #111;
  color: var(--ink);
  padding: 80px 48px;
  border-top: var(--border);
}

.eg-2col {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.eg-col-left { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.eg-col-left p { font-size: .95rem; color: var(--muted); line-height: 1.75; max-width: 420px; }
.eg-col-right { display: flex; flex-direction: column; gap: 16px; }
.eg-tareas-panel {
  background: #1c1c1e; border: var(--border); border-radius: 20px;
  overflow: hidden;
}
.eg-tareas-label {
  padding: 14px 20px; font-size: .68rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--muted);
  border-bottom: var(--border);
}
.eg-tarea {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s;
}
.eg-tarea:last-child { border-bottom: none; }
.eg-tarea:hover { background: rgba(255,255,255,.04); }
.eg-tarea-nombre { flex: 1; font-size: .88rem; font-weight: 500; color: var(--ink); }
.eg-tarea-tool {
  font-size: .72rem; font-weight: 700; color: var(--muted);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  padding: 3px 10px; border-radius: 100px;
}
.eg-tarea-tiempo {
  font-size: .78rem; font-weight: 700; color: var(--accent);
  min-width: 40px; text-align: right;
}

@media (max-width: 900px) {
  .eg-2col { grid-template-columns: 1fr; gap: 40px; }
  .eg-col-left { align-items: center; text-align: center; }
}

.eg-top {
  max-width: 860px; margin: 0 auto 56px; text-align: center;
}
.eg-badge {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; background: var(--accent); color: #fff;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 24px;
}
.eg-top h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600; font-style: italic; letter-spacing: -0.01em; line-height: 1.05;
  color: var(--ink); margin-bottom: 18px;
}
.eg-top p {
  font-size: .95rem; color: var(--muted); line-height: 1.75;
  max-width: 620px; margin: 0 auto;
}

/* ── PROCESOS GRID ── */
.eg-procesos {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 1100px; margin: 0 auto 56px;
}
.eg-proceso {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(245,242,235,.1);
  border-radius: 18px; padding: 22px 20px;
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color .2s, background .2s;
}
.eg-proceso:hover {
  border-color: rgba(255,77,28,.5);
  background: rgba(255,77,28,.06);
}
.eg-proceso-antes, .eg-proceso-despues {
  display: flex; flex-direction: column; gap: 2px;
}
.eg-proceso-label {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: rgba(245,242,235,.4);
}
.eg-proceso-label.ahora { color: var(--accent); }
.eg-proceso-tiempo {
  font-family: 'Syne', sans-serif; font-size: 1.6rem;
  font-weight: 800; color: rgba(245,242,235,.35); letter-spacing: -1px;
}
.eg-proceso-tiempo.ahora { color: var(--bg); }
.eg-proceso-nombre {
  font-size: .78rem; color: rgba(245,242,235,.5); line-height: 1.3;
}
.eg-proceso-nombre { color: rgba(245,242,235,.7); }
.eg-flecha {
  font-size: 1rem; color: var(--accent); font-weight: 700;
  margin: 4px 0; opacity: .7;
}
.eg-proceso-tool {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid rgba(245,242,235,.1);
  font-size: .72rem; font-weight: 600; color: rgba(245,242,235,.4);
}

/* ── BOTTOM: SLIDER + CTA ── */
.eg-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(245,242,235,.12);
  border-radius: 20px; padding: 32px 36px;
}
.eg-ahorro-titulo {
  font-size: .9rem; color: rgba(245,242,235,.7); margin-bottom: 14px;
}
.eg-ahorro-titulo strong { color: var(--bg); font-size: 1.1rem; }
.eg-slider {
  width: 100%; max-width: 300px; display: block;
  accent-color: var(--accent); margin-bottom: 14px;
  height: 4px; cursor: pointer;
}
.eg-ahorro-resultado {
  font-size: .88rem; color: rgba(245,242,235,.7);
}
.eg-ahorro-num {
  font-family: 'Syne', sans-serif; font-size: 1.5rem;
  font-weight: 800; color: var(--accent);
}
.eg-ahorro-sub {
  font-size: .7rem; color: rgba(245,242,235,.35); margin-top: 6px;
}
.eg-bottom-right {
  display: flex; flex-direction: column; gap: 12px; flex-shrink: 0;
}
.eg-cta-grande {
  display: inline-block; background: var(--accent); color: #fff;
  font-weight: 700; font-size: .9rem;
  padding: 16px 28px; border-radius: 100px;
  text-decoration: none; transition: opacity .15s; white-space: nowrap;
}
.eg-cta-grande:hover { opacity: .85; }
.eg-cta-sec {
  display: inline-block; text-align: center;
  font-size: .82rem; font-weight: 600;
  color: rgba(245,242,235,.55); text-decoration: none;
  transition: color .15s;
}
.eg-cta-sec:hover { color: var(--bg); }

@media (max-width: 1000px) {
  .eg-procesos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .empresas-gancho { padding: 60px 24px; }
  .eg-procesos { grid-template-columns: 1fr; }
  .eg-bottom { flex-direction: column; gap: 28px; }
  .eg-slider { max-width: 100%; }
}

/* ── EMPRESAS GANCHO BOTTOM v2 ── */
.eg-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  padding: 40px; background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(245,242,235,.12); border-radius: 20px;
}
.eg-sectores-label {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: rgba(245,242,235,.45);
}
.eg-sectores-links {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.eg-sectores-links a {
  font-size: .83rem; font-weight: 600; padding: 9px 18px;
  border: 1.5px solid rgba(245,242,235,.2); border-radius: 100px;
  color: rgba(245,242,235,.75); text-decoration: none;
  transition: all .15s;
}
.eg-sectores-links a:hover {
  border-color: var(--accent); color: var(--bg);
  background: rgba(255,77,28,.15);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
