/* ══════════════════════════════════════════════════════════════════
   coloquiando.css — CSS específico de coloquiando.php
   ══════════════════════════════════════════════════════════════════ */

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ── HERO ── */
.hero {
  background: var(--ink); padding: 160px 0 140px; position: relative; overflow: hidden;
  clip-path: polygon(0 0,100% 0,100% 88%,0 100%); margin-bottom: -60px; z-index: 2;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(18,227,188,.06) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none; z-index: 2;
}
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: .18; mix-blend-mode: screen; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(9,16,14,.85) 0%, rgba(9,16,14,.55) 100%); z-index: 1; }
.hero-shape {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 480px; height: 480px; border: 1.5px solid rgba(18,227,188,.08); border-radius: 50%;
  pointer-events: none; animation: float 7s ease-in-out infinite; z-index: 2;
}
.hero-shape::before { content: ''; position: absolute; inset: 50px; border: 1.5px solid rgba(18,227,188,.05); border-radius: 50%; }
.hero-shape::after  { content: ''; position: absolute; inset: 120px; border: 1.5px solid rgba(18,227,188,.03); border-radius: 50%; }
.hero-content { position: relative; z-index: 3; max-width: 800px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mint); margin-bottom: 28px; opacity: 0; animation: fadeUp .6s var(--ease) .1s forwards;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--mint); display: block; flex-shrink: 0; }
.hero h1 {
  font-size: clamp(3.5rem, 7vw, 6.5rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.0;
  color: var(--white); margin-bottom: 32px; opacity: 0; animation: fadeUp .6s var(--ease) .2s forwards;
}
.hero h1 em { font-style: normal; color: var(--mint); }
.hero h1 span { display: block; color: rgba(255,255,255,.25); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.5); line-height: 1.8; max-width: 540px; margin-bottom: 40px; opacity: 0; animation: fadeUp .6s var(--ease) .35s forwards; }
.hero-desc strong { color: var(--white); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; opacity: 0; animation: fadeUp .6s var(--ease) .5s forwards; }
.hero-btn-primary { display: inline-flex; align-items: center; gap: 9px; background: var(--mint); color: var(--ink); font-weight: 700; font-size: .88rem; letter-spacing: .02em; padding: 13px 26px; border-radius: 50px; border: 2px solid var(--mint); transition: all .2s; }
.hero-btn-primary svg { width: 18px; height: 18px; stroke: var(--ink); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.hero-btn-primary:hover { background: var(--mint-dim); border-color: var(--mint-dim); }
.hero-btn-outline { display: inline-flex; align-items: center; gap: 8px; background: var(--ink-soft); color: var(--white); font-weight: 700; font-size: .88rem; letter-spacing: .02em; padding: 13px 26px; border-radius: 50px; border: 2px solid rgba(255,255,255,.1); transition: all .2s; }
.hero-btn-outline:hover { border-color: rgba(255,255,255,.3); }

/* ── IAs DE OLLA ── */
.ias {
  background: var(--off); padding: 140px 0 120px; position: relative; z-index: 1;
  clip-path: polygon(0 6%,100% 0,100% 94%,0 100%); margin-top: -60px; margin-bottom: -60px;
}
.ias-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.ver-link { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--mint-dim); border-bottom: 1px solid currentColor; padding-bottom: 2px; transition: color .2s; }
.ver-link:hover { color: var(--mint); }
.ver-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.ias-eps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.ias-ep-card { background: var(--ink); border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.04); display: flex; flex-direction: column; transition: border-color .3s var(--ease); }
.ias-ep-card:hover { border-color: rgba(18,227,188,.2); }
.ias-video-wrap { position: relative; padding-bottom: 56.25%; background: var(--ink-soft); height: 0; overflow: hidden; }
.ias-video-wrap a, .ias-video-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; object-fit: cover; }
.ias-ep-info { padding: 28px 32px 32px; display: flex; flex-direction: column; flex: 1; }
.ias-ep-num { font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--mint); margin-bottom: 12px; }
.ias-guest { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.ias-guest-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); flex-shrink: 0; }
.ias-guest span { font-size: .78rem; color: rgba(255,255,255,.3); }
.ias-guest strong { color: rgba(255,255,255,.65); font-weight: 600; }
.ias-ep3-cta {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  padding: 52px; border: 1px solid rgba(255,255,255,.06); margin-top: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; background: var(--ink-soft);
}
.ias-ep3-cta-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1478737270239-2f02b77fc618?auto=format&w=1400&q=80'); background-size: cover; background-position: center; opacity: .18; }
.ias-ep3-cta-content { position: relative; z-index: 1; }
.ias-ep3-cta-action { position: relative; z-index: 1; flex-shrink: 0; }
.btn-mint { background: var(--mint); color: var(--ink); font-weight: 700; font-size: .88rem; padding: 15px 32px; border-radius: 50px; border: 2px solid var(--mint); transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-mint:hover { background: var(--mint-dim); }

/* ── BLOG ── */
.blog {
  background: var(--white); padding: 140px 0 120px; position: relative; z-index: 2;
  clip-path: polygon(0 0,100% 5%,100% 100%,0 100%); margin-top: -40px; margin-bottom: -60px;
}
.blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
.post-featured {
  display: grid; grid-template-columns: 1fr 1fr; background: var(--off);
  border-radius: var(--r-lg); overflow: hidden; border: 1.5px solid var(--line);
  margin-bottom: 20px; transition: all .35s var(--ease);
}
.post-featured:hover { border-color: var(--mint); box-shadow: 0 16px 48px rgba(18,227,188,.08); }
.post-featured-img { background: var(--ink-soft); overflow: hidden; }
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.post-featured:hover .post-featured-img img { transform: scale(1.03); }
.post-featured-img-ph { min-height: 280px; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--off), var(--line)); }
.post-featured-body { padding: 48px 52px; display: flex; flex-direction: column; justify-content: center; }
.post-cat { display: inline-flex; align-items: center; gap: 6px; font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mint-dim); margin-bottom: 16px; }
.post-cat::before { content: ''; width: 14px; height: 2px; background: var(--mint); display: block; }
.post-featured-body h2 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-weight: 800; letter-spacing: -.03em; color: var(--ink); line-height: 1.2; margin-bottom: 14px; }
.post-featured-body p { font-size: .88rem; color: var(--mid); line-height: 1.75; margin-bottom: 24px; }
.post-meta { display: flex; align-items: center; gap: 16px; font-size: .72rem; color: var(--mid); }
.leer-mas { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; color: var(--ink); margin-top: 20px; transition: gap .2s, color .2s; }
.leer-mas:hover { gap: 10px; color: var(--mint-dim); }
.leer-mas svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.post-card { background: var(--off); border-radius: var(--r-md); overflow: hidden; border: 1.5px solid var(--line); transition: all .3s var(--ease); display: flex; flex-direction: column; }
.post-card:hover { border-color: var(--mint); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(18,227,188,.08); }
.post-card-img { aspect-ratio: 16/9; background: var(--line); overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card-img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.post-card-img-ph svg { width: 24px; height: 24px; stroke: rgba(0,0,0,.1); fill: none; stroke-width: 1; }
.post-card-body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.post-card-body .post-cat { margin-bottom: 8px; }
.post-card-body h3 { font-size: .92rem; font-weight: 700; color: var(--ink); line-height: 1.35; flex: 1; margin-bottom: 12px; }
.post-card-meta { display: flex; gap: 12px; font-size: .68rem; color: var(--mid); padding-top: 12px; border-top: 1px solid var(--line); margin-top: auto; }
.blog-empty { padding: 60px 0; text-align: center; font-size: .9rem; color: var(--mid); }

/* ── LABS ── */
.labs {
  background: var(--ink); padding: 140px 0 120px; position: relative; z-index: 3;
  clip-path: polygon(0 5%,100% 0,100% 95%,0 100%); margin-top: -60px; margin-bottom: -60px;
}
.labs-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
.labs .sec-label { color: rgba(18,227,188,.7); }
.labs .sec-label::before { background: var(--mint); }
.labs .sec-title { color: var(--white); }
.labs .sec-lead { color: rgba(255,255,255,.4); max-width: 480px; }
.labs .ver-link { color: rgba(255,255,255,.3); border-bottom-color: rgba(255,255,255,.2); }
.labs .ver-link:hover { color: var(--mint); }
.labs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.lab-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-lg); overflow: hidden; transition: all .3s var(--ease); display: flex; flex-direction: column; text-decoration: none; }
.lab-card:hover { border-color: rgba(18,227,188,.3); transform: translateY(-4px); }
.lab-thumb { position: relative; aspect-ratio: 16/9; background: var(--ink-soft); overflow: hidden; }
.lab-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform .4s var(--ease), opacity .3s; }
.lab-card:hover .lab-thumb img { transform: scale(1.04); opacity: 1; }
.lab-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(9,16,14,.25); opacity: 0; transition: opacity .3s; }
.lab-card:hover .lab-play { opacity: 1; }
.lab-play-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--mint); display: flex; align-items: center; justify-content: center; }
.lab-play-btn svg { width: 16px; height: 16px; fill: var(--ink); margin-left: 2px; }
.lab-num { position: absolute; top: 12px; left: 12px; background: var(--mint); color: var(--ink); font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 3px 9px; border-radius: 50px; }
.lab-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.lab-body h3 { font-size: .9rem; font-weight: 700; color: var(--white); line-height: 1.35; margin-bottom: 8px; flex: 1; }
.lab-body p { font-size: .76rem; color: rgba(255,255,255,.35); line-height: 1.6; margin-bottom: 12px; }
.lab-link { display: inline-flex; align-items: center; gap: 5px; font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mint); }
.lab-link svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.lab-card-wide { grid-column: 1/-1; display: grid; grid-template-columns: 300px 1fr; }
.lab-card-wide .lab-thumb { aspect-ratio: unset; height: 100%; min-height: 160px; }
.lab-card-wide .lab-body { padding: 28px 32px; justify-content: center; }
.lab-card-wide .lab-num { background: rgba(18,227,188,.15); color: var(--mint); }
.lab-card-wide h3 { font-size: 1.05rem; }

/* ── SÍGUENOS ── */
.siguenos {
  background: var(--ink-soft); padding: 140px 0 120px; position: relative; z-index: 3;
  clip-path: polygon(0 5%,100% 0,100% 95%,0 100%); margin-top: -60px; margin-bottom: -60px;
}
.siguenos-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.canales { display: flex; flex-direction: column; gap: 10px; }
.canal { display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-md); transition: all .3s; text-decoration: none; }
.canal:hover { background: rgba(18,227,188,.07); border-color: rgba(18,227,188,.2); }
.canal-icon { width: 42px; height: 42px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.canal-icon svg { width: 20px; height: 20px; }
.canal-info { flex: 1; }
.canal-info strong { display: block; font-size: .88rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.canal-info span { font-size: .75rem; color: rgba(255,255,255,.3); }
.canal-arrow svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.2); fill: none; stroke-width: 2; transition: stroke .2s; }
.canal:hover .canal-arrow svg { stroke: var(--mint); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { padding: 130px 0 120px; }
  .hero-shape { display: none; }
  .ias-header { grid-template-columns: 1fr; gap: 24px; }
  .ias-eps-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .post-featured { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .siguenos-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .posts-grid, .labs-grid, .ias-eps-grid { grid-template-columns: 1fr; }
  .labs-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .lab-card-wide { grid-template-columns: 1fr; }
  .lab-card-wide .lab-thumb { height: auto; aspect-ratio: 16/9; }
  .ias-ep3-cta { flex-direction: column; padding: 36px 28px; gap: 24px; text-align: center; }
  .ias-ep3-cta-action { width: 100%; }
  .ias-ep3-cta-action .btn-mint { width: 100%; justify-content: center; }
  .ias-ep-info { padding: 22px 24px 26px; }
}
