    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --negro:    #0A0A0A;
      --vinotinto:#7C3AED;
      --rosa:     #C026D3;
      --crema:    #F5EEE6;
      --gris:     #1C1C1C;
      --texto:    #CFCFCF;
      --blanco:   #FFFFFF;
    }

    html {
      scroll-behavior: smooth;
      scrollbar-width: thin;
      scrollbar-color: rgba(192,38,211,0.4) var(--negro);
    }
    ::-webkit-scrollbar { width: 10px; height: 10px; }
    ::-webkit-scrollbar-track { background: var(--negro); }
    ::-webkit-scrollbar-thumb {
      background-color: rgba(192,38,211,0.35);
      border-radius: 6px;
      border: 2px solid var(--negro);
      background-clip: padding-box;
    }
    ::-webkit-scrollbar-thumb:hover { background-color: rgba(192,38,211,0.55); }

    body {
      background: var(--negro);
      color: var(--texto);
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 6vw;
      backdrop-filter: blur(12px);
      background: rgba(10,10,10,0.75);
      border-bottom: 1px solid rgba(192,38,211,0.12);
    }
    .nav-logo {
      font-family: 'Fredoka', sans-serif;
      font-weight: 600;
      font-size: 1.25rem;
      letter-spacing: 0.04em;
      color: var(--blanco);
      text-decoration: none;
    }
    .nav-logo span { color: var(--rosa); }
    nav ul {
      list-style: none;
      display: flex; gap: 2.5rem;
    }
    nav ul a {
      font-size: 0.82rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--texto);
      text-decoration: none;
      transition: color .2s;
    }
    nav ul a:hover { color: var(--rosa); }

    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 28px; height: 22px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 101;
    }
    .nav-toggle span {
      display: block;
      width: 100%; height: 2px;
      background: var(--blanco);
      transition: transform .25s ease, opacity .25s ease;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: grid;
      place-items: center;
      padding: 8rem 6vw 5rem;
      position: relative;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 70% 40%, rgba(124,58,237,0.35) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(192,38,211,0.12) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      max-width: 1200px;
      width: 100%;
      position: relative;
    }
    .hero-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--rosa);
      margin-bottom: 1.2rem;
    }
    .hero-title {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: clamp(2.2rem, 4vw, 3.6rem);
      line-height: 1.1;
      color: var(--blanco);
      margin-bottom: 1.5rem;
    }
    .hero-title em {
      font-style: normal;
      color: var(--rosa);
    }
    .hero-desc {
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--texto);
      max-width: 38ch;
      margin-bottom: 2.5rem;
    }
    .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      display: inline-block;
      padding: 0.85rem 2rem;
      background: var(--rosa);
      color: var(--blanco);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 3px;
      transition: background .2s, transform .15s;
    }
    .btn-primary:hover { background: var(--vinotinto); transform: translateY(-1px); }
    .btn-ghost {
      display: inline-block;
      padding: 0.85rem 2rem;
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--blanco);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 3px;
      transition: border-color .2s, color .2s;
    }
    .btn-ghost:hover { border-color: var(--rosa); color: var(--rosa); }
    .btn-icon-only {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 3.1rem;
      padding: 0.85rem 0;
      font-size: 1.05rem;
    }

    /* Logo visual */
    .hero-visual {
      display: flex; justify-content: center; align-items: center;
    }
    .logo-wrap {
      position: relative;
      width: 420px;
      aspect-ratio: 1;
    }
    .hero-logo {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      border-radius: 50%;
      box-shadow:
        0 0 0 3px rgba(192,38,211,0.4),
        0 0 60px rgba(192,38,211,0.35),
        0 30px 60px rgba(0,0,0,0.5);
    }

    /* ── NEWSLETTER ── */
    #newsletter {
      padding: 4rem 6vw;
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      text-align: center;
    }
    .newsletter-inner {
      max-width: 560px;
      margin: 0 auto;
    }
    .newsletter-inner .section-title {
      margin-bottom: 0.6rem;
    }
    .newsletter-inner p {
      color: var(--texto);
      margin-bottom: 1.5rem;
    }
    .newsletter-form {
      display: flex;
      gap: 0.8rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .newsletter-input {
      flex: 1 1 240px;
      max-width: 320px;
      padding: 0.85rem 1.2rem;
      background: var(--gris);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 3px;
      color: var(--blanco);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
    }
    .newsletter-input:focus {
      outline: none;
      border-color: var(--rosa);
    }
    .newsletter-form button {
      border: none;
      cursor: pointer;
    }
    .newsletter-msg {
      margin-top: 1rem;
      margin-bottom: 0;
      font-size: 0.8rem;
      color: var(--rosa);
      min-height: 1.2em;
    }

    /* ── ABOUT ── */
    #nosotras {
      padding: 7rem 6vw;
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    }
    .section-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--rosa);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--blanco);
      line-height: 1.15;
      margin-bottom: 1.5rem;
    }
    .about-body p {
      color: var(--texto);
      font-weight: 300;
      margin-bottom: 1.2rem;
      font-size: 1rem;
    }
    .about-visual {
      position: relative;
    }
    .about-card {
      background: var(--gris);
      border: 1px solid rgba(192,38,211,0.15);
      border-radius: 8px;
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
    }
    .about-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--vinotinto), var(--rosa));
    }
    .about-quote {
      font-family: 'Syne', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--blanco);
      line-height: 1.4;
      margin-bottom: 1.5rem;
    }
    .about-quote em {
      color: var(--rosa);
      font-style: normal;
    }
    .founder-tag {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      color: rgba(207,207,207,0.5);
      text-transform: uppercase;
    }
    .founder-tag strong { color: var(--rosa); font-weight: 500; }

    /* ── SERVICIOS ── */
    #servicios {
      padding: 7rem 6vw;
      background: var(--gris);
    }
    .servicios-inner { max-width: 1200px; margin: 0 auto; }
    .servicios-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 4rem;
    }
    .servicios-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5px;
      background: rgba(192,38,211,0.08);
      border: 1px solid rgba(192,38,211,0.08);
    }
    .servicio-item {
      background: var(--gris);
      padding: 2.5rem;
      transition: background .2s;
      cursor: default;
    }
    .servicio-item:hover { background: #222; }
    .servicio-icon {
      font-size: 2rem;
      margin-bottom: 1.2rem;
      display: block;
    }
    .servicio-name {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--blanco);
      margin-bottom: 0.7rem;
    }
    .servicio-desc {
      font-size: 0.9rem;
      font-weight: 300;
      color: rgba(207,207,207,0.7);
      line-height: 1.7;
    }

    /* ── ROSTER ── */
    #talento {
      padding: 7rem 6vw;
      max-width: 1200px; margin: 0 auto;
    }
    .talento-header { margin-bottom: 3.5rem; }
    .roster-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    .artist-card {
      background: var(--gris);
      border-radius: 6px;
      overflow: hidden;
      transition: transform .2s;
    }
    .artist-card:hover { transform: translateY(-4px); }
    .artist-img {
      width: 100%; aspect-ratio: 1;
      background: linear-gradient(135deg, var(--vinotinto) 0%, #0A0A0A 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 2.5rem;
      position: relative;
      overflow: hidden;
    }
    .artist-img img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .artist-img::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 50%);
    }
    .artist-info { padding: 1.2rem; }
    .artist-name {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--blanco);
      margin-bottom: 0.3rem;
    }
    .artist-genre {
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--rosa);
    }
    .artist-social {
      display: flex;
      gap: 1rem;
      margin-top: 0.9rem;
    }
    .artist-social a {
      color: rgba(207,207,207,0.5);
      font-size: 1.1rem;
      text-decoration: none;
      transition: color .2s;
    }
    .artist-social svg {
      vertical-align: -0.15em;
    }
    .artist-social a:hover { color: var(--rosa); }

    /* ── DIFUSION ── */
    #difusion {
      padding: 7rem 6vw;
    }
    .difusion-inner { max-width: 1200px; margin: 0 auto; }
    .podcast-card {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 2rem;
      align-items: center;
      background: var(--negro);
      border: 1px solid rgba(192,38,211,0.15);
      border-radius: 8px;
      padding: 1.5rem;
      margin-bottom: 3.5rem;
    }
    .podcast-cover-wrap {
      position: relative;
      display: block;
    }
    .podcast-cover {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      border-radius: 6px;
    }
    .podcast-cover-wrap .play-icon {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 3.2rem; height: 3.2rem;
      display: flex; align-items: center; justify-content: center;
      background: rgba(192,38,211,0.85);
      color: var(--blanco);
      border-radius: 50%;
      font-size: 1.1rem;
      transition: background .2s, transform .2s;
    }
    .podcast-cover-wrap:hover .play-icon {
      background: var(--rosa);
      transform: translate(-50%, -50%) scale(1.1);
    }
    .podcast-info .servicio-icon { margin-bottom: 0.6rem; }
    .singles-header { margin-bottom: 1.5rem; }
    .singles-grid { grid-template-columns: repeat(2, 1fr); }
    .video-embed {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
    }
    .video-embed iframe {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      border: 0;
    }
    .single-header-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.5rem;
    }
    .single-header-row .artist-name { margin-bottom: 0; }
    .platform-links {
      display: flex; gap: 0.8rem;
    }
    .platform-links a {
      display: flex; align-items: center; justify-content: center;
      width: 1.8rem; height: 1.8rem;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      color: var(--texto);
      text-decoration: none;
      font-size: 0.9rem;
      transition: background .2s, color .2s;
    }
    .platform-links a:hover {
      background: var(--rosa);
      color: var(--blanco);
    }

    /* ── CONTACTO ── */
    #contacto {
      padding: 7rem 6vw;
      background: var(--gris);
      text-align: center;
    }
    .contacto-inner { max-width: 680px; margin: 0 auto; }
    .contacto-inner .section-title { margin-bottom: 1rem; }
    .contacto-inner p {
      font-weight: 300;
      color: rgba(207,207,207,0.8);
      margin-bottom: 2.5rem;
    }
    .contact-email {
      display: inline-block;
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--rosa);
      text-decoration: none;
      border-bottom: 1px solid rgba(192,38,211,0.4);
      padding-bottom: 2px;
      margin-bottom: 3rem;
      transition: color .2s, border-color .2s;
    }
    .contact-email:hover { color: var(--blanco); border-color: var(--blanco); }
    .social-links {
      display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
    }
    .social-links a {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(207,207,207,0.5);
      text-decoration: none;
      transition: color .2s;
    }
    .social-links a:hover { color: var(--rosa); }

    /* ── FOOTER ── */
    footer {
      padding: 2rem 6vw;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem;
    }
    footer p {
      font-size: 0.78rem;
      color: rgba(207,207,207,0.35);
      letter-spacing: 0.05em;
    }
    .footer-logo {
      font-family: 'Fredoka', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.08em;
    }
    .footer-logo span { color: var(--rosa); opacity: 0.7; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1050px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-visual { order: -1; }
      .logo-wrap { width: 240px; }
      #nosotras { grid-template-columns: 1fr; gap: 3rem; }
      .servicios-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .servicios-grid { grid-template-columns: 1fr; }
      .roster-grid { grid-template-columns: repeat(2, 1fr); }
      .podcast-card { grid-template-columns: 1fr; }
      .podcast-cover-wrap { max-width: 240px; margin: 0 auto; }
      .podcast-cover { max-width: 240px; margin: 0 auto; }
      .nav-toggle { display: flex; }
      nav ul {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10,10,10,0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(192,38,211,0.12);
        padding: 0.5rem 6vw 1.5rem;
      }
      nav ul.open { display: flex; }
      nav ul li { padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
      nav ul li:last-child { border-bottom: none; }
    }
    @media (max-width: 500px) {
      .roster-grid { grid-template-columns: 1fr 1fr; }
      .singles-grid { grid-template-columns: 1fr; }
      .hero-ctas { flex-direction: column; }
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
    }

    .roster-grid-single {
      grid-template-columns: minmax(0, 280px);
      justify-content: center;
    }

    /* ── LINKS PAGE ── */
    .links-page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 4rem 6vw 2.5rem;
      text-align: center;
    }
    .links-logo-wrap {
      position: relative;
      width: 132px; height: 132px;
      margin-bottom: 1.2rem;
    }
    .links-logo-wrap::before {
      content: '';
      position: absolute;
      inset: -14px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--vinotinto), var(--rosa));
      filter: blur(18px);
      opacity: 0.7;
      animation: links-logo-pulse 3.5s ease-in-out infinite;
      z-index: 0;
    }
    @keyframes links-logo-pulse {
      0%, 100% { transform: scale(1); opacity: 0.6; }
      50% { transform: scale(1.12); opacity: 0.9; }
    }
    .links-logo {
      position: relative;
      z-index: 1;
      width: 132px; height: 132px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid rgba(255,255,255,0.85);
      box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    }
    .links-name {
      font-family: 'Fredoka', sans-serif;
      font-weight: 600;
      font-size: 1.6rem;
      letter-spacing: 0.08em;
      margin-bottom: 0.4rem;
      color: var(--texto);
    }
    .links-name span {
      color: var(--rosa);
    }
    .links-tagline {
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--texto);
      margin-bottom: 2.5rem;
    }
    .links-social {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }
    .links-social a {
      display: flex; align-items: center; justify-content: center;
      width: 2.8rem; height: 2.8rem;
      border-radius: 50%;
      background: var(--gris);
      border: 1px solid rgba(192,38,211,0.25);
      color: var(--blanco);
      text-decoration: none;
      font-size: 1.2rem;
      transition: background .2s, border-color .2s, transform .15s;
    }
    .links-social a:hover {
      background: var(--vinotinto);
      border-color: var(--rosa);
      transform: translateY(-2px);
    }
    .links-list {
      width: 100%;
      max-width: 420px;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }
    .links-list a,
    .links-list button {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 0.9rem 1.5rem;
      border-radius: 999px;
      border: 1px solid rgba(192,38,211,0.25);
      background: var(--gris);
      color: var(--blanco);
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      font-family: 'DM Sans', sans-serif;
      width: 100%;
      cursor: pointer;
      transition: background .2s, border-color .2s, transform .15s;
    }
    .links-list a:hover,
    .links-list button:hover {
      background: var(--vinotinto);
      border-color: var(--rosa);
      transform: translateY(-2px);
    }
    .links-newsletter {
      width: 100%;
      max-width: 420px;
      margin-top: 0.9rem;
      text-align: center;
    }
    .links-newsletter .newsletter-form {
      flex-wrap: wrap;
    }
    .links-newsletter .newsletter-input {
      flex: 1 1 180px;
      max-width: none;
      border-radius: 999px;
    }
    .links-newsletter .btn-primary {
      flex: 0 0 auto;
      max-width: none;
      width: auto;
    }
    .links-footer {
      margin-top: 3rem;
      font-size: 0.75rem;
      color: rgba(207,207,207,0.35);
    }

    /* ── BLOG PAGE ── */
    .blog-page {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    nav.blog-nav {
      position: static;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 6vw;
      backdrop-filter: none;
      background: transparent;
      border-bottom: none;
    }
    .blog-back {
      display: flex; align-items: center; gap: 0.4rem;
      color: var(--texto);
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      transition: color .2s;
    }
    .blog-back:hover { color: var(--rosa); }
    .blog-header {
      padding: 2rem 6vw 4rem;
      max-width: 720px;
    }
    .blog-header p {
      color: var(--texto);
      font-weight: 300;
    }
    .blog-list {
      flex: 1;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 6vw 6rem;
      display: grid;
      gap: 1.5rem;
    }
    .blog-card {
      background: var(--gris);
      border: 1px solid rgba(192,38,211,0.08);
      border-radius: 6px;
      padding: 2rem;
      transition: background .2s;
    }
    .blog-card:hover { background: #222; }
    .blog-date {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--rosa);
      margin-bottom: 0.8rem;
    }
    .blog-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1.3rem;
      color: var(--blanco);
      margin-bottom: 0.8rem;
    }
    .blog-excerpt {
      font-size: 0.9rem;
      font-weight: 300;
      color: rgba(207,207,207,0.7);
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }
    .blog-readmore {
      display: inline-flex; align-items: center; gap: 0.4rem;
      color: var(--rosa);
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      transition: gap .2s, color .2s;
    }
    .blog-readmore:hover { color: var(--blanco); gap: 0.6rem; }

    /* ── BLOG SPOTIFY FLOATING PLAYER ── */
    .spotify-float {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 60;
    }
    .spotify-float-toggle {
      width: 56px; height: 56px;
      border-radius: 50%;
      border: none;
      background: #1DB954;
      color: var(--negro);
      font-size: 1.4rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 18px rgba(0,0,0,0.45);
      transition: transform .2s;
    }
    .spotify-float-toggle:hover { transform: scale(1.08); }
    .spotify-float-panel {
      position: absolute;
      bottom: 70px;
      right: 0;
      width: 320px;
      max-width: calc(100vw - 2rem);
      background: var(--gris);
      border: 1px solid rgba(192,38,211,0.2);
      border-radius: 12px;
      padding: 1rem;
      box-shadow: 0 8px 28px rgba(0,0,0,0.5);
    }
    .spotify-float-panel.hidden { display: none; }
    .spotify-float-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 0.8rem;
      color: var(--texto);
      font-size: 0.85rem;
      letter-spacing: 0.04em;
    }
    .spotify-float-header span { display: flex; align-items: center; gap: 0.5rem; }
    .spotify-float-header i.bi-spotify { color: #1DB954; font-size: 1.1rem; }
    .spotify-float-header button {
      background: none; border: none;
      color: var(--texto);
      font-size: 1rem;
      cursor: pointer;
      transition: color .2s;
    }
    .spotify-float-header button:hover { color: var(--rosa); }
    .spotify-float-list {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .spotify-float-list iframe {
      width: 100%;
      border-radius: 8px;
    }

    /* ── BLOG POST ── */
    .blog-post-inner {
      flex: 1;
      width: 100%;
      max-width: 720px;
      margin: 0 auto;
      padding: 1rem 6vw 5rem;
    }
    .blog-post-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--blanco);
      line-height: 1.15;
      margin-bottom: 2rem;
    }
    .blog-content p {
      font-size: 0.95rem;
      font-weight: 300;
      color: rgba(207,207,207,0.8);
      line-height: 1.8;
      margin-bottom: 1.2rem;
    }
    .blog-post-inner .blog-readmore {
      margin-top: 1rem;
    }
    .blog-content h2,
    .blog-content h3,
    .blog-content h4 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      color: var(--blanco);
      margin: 2rem 0 1rem;
    }
    .blog-content ul {
      margin: 0 0 1.2rem 1.2rem;
      color: rgba(207,207,207,0.8);
      font-weight: 300;
      line-height: 1.8;
    }
    .blog-content a {
      color: var(--rosa);
      text-decoration: underline;
    }
    .blog-content a.btn-primary {
      color: var(--blanco);
      text-decoration: none;
      margin-top: 0.5rem;
    }
    .blog-content .btn-wrap {
      text-align: center;
      margin: 1.5rem 0;
    }
    .blog-content .btn-wrap a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 240px;
      height: 48px;
      padding: 0 1.5rem;
      border-radius: 10px;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: none;
      letter-spacing: normal;
      text-decoration: none;
    }
    .blog-content strong { color: var(--blanco); }
    .blog-content .video-embed {
      margin-bottom: 1.5rem;
      border-radius: 8px;
      overflow: hidden;
    }
    .blog-content > iframe {
      display: block;
      width: 100%;
      border: 0;
      border-radius: 12px;
      margin-bottom: 1.5rem;
    }
    .blog-content hr {
      border: none;
      border-top: 1px solid rgba(192,38,211,0.2);
      margin: 2rem 0;
    }

    /* ── PREV / NEXT NAV ── */
    .blog-post-nav {
      display: flex;
      justify-content: space-between;
      gap: 1.5rem;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(192,38,211,0.15);
    }
    .blog-post-nav-item { flex: 1; }
    .blog-post-nav-item a {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      text-decoration: none;
      transition: opacity .2s;
    }
    .blog-post-nav-item a:hover { opacity: 0.75; }
    .blog-post-nav-dir {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--rosa);
    }
    .blog-post-nav-title {
      font-family: 'Syne', sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--blanco);
      line-height: 1.4;
    }
    .blog-post-nav-next { text-align: right; }
    .blog-post-nav-next a { align-items: flex-end; }
    @media (max-width: 500px) {
      .blog-post-nav { flex-direction: column; gap: 1.5rem; }
      .blog-post-nav-next { text-align: left; }
      .blog-post-nav-next a { align-items: flex-start; }
    }

    /* ── RELATED POSTS ── */
    .blog-related {
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      padding: 3rem 6vw 5rem;
      border-top: 1px solid rgba(192,38,211,0.15);
    }
    .blog-related-label {
      font-family: 'Syne', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--rosa);
      margin-bottom: 1.8rem;
    }
    .blog-related-grid {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .blog-related-grid .blog-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      padding: 1.5rem 2rem;
    }
    .blog-related-grid .blog-card-body {
      flex: 1;
      min-width: 0;
    }
    .blog-related-grid .blog-card .blog-excerpt {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 0;
    }
    .blog-related-grid .blog-card .blog-readmore {
      flex-shrink: 0;
      white-space: nowrap;
    }

    /* ── BLOG ADMIN ── */
    .blog-header .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1rem;
    }
    .admin-error {
      color: #ff6b6b;
      font-size: 0.85rem;
      margin-bottom: 1rem;
    }
    .admin-login-wrap {
      max-width: 360px;
      margin: 2rem auto 4rem;
      padding: 0 6vw;
    }
    .admin-form {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      width: 100%;
      max-width: 720px;
      padding: 0 6vw 5rem;
      margin: 0 auto;
    }
    .admin-login-wrap .admin-form { padding: 0; }
    .admin-form label {
      display: block;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--rosa);
      margin-bottom: 0.6rem;
    }
    .admin-form input,
    .admin-form textarea {
      width: 100%;
      padding: 0.85rem 1.2rem;
      background: var(--gris);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 3px;
      color: var(--blanco);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
    }
    .admin-form textarea {
      min-height: 320px;
      line-height: 1.7;
      resize: vertical;
    }
    .admin-form input:focus,
    .admin-form textarea:focus {
      outline: none;
      border-color: var(--rosa);
    }
    .admin-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center;
    }
    .admin-list {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 6vw 5rem;
    }
    .admin-list-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      background: var(--gris);
      border: 1px solid rgba(192,38,211,0.08);
      border-radius: 6px;
      padding: 1.2rem 1.5rem;
    }
    .admin-list-date {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--rosa);
      margin-bottom: 0.4rem;
    }
    .badge-scheduled {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      margin-left: 0.5rem;
      padding: 0.1rem 0.5rem;
      border-radius: 99px;
      background: rgba(124,58,237,0.2);
      border: 1px solid rgba(124,58,237,0.4);
      color: #a78bfa;
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      vertical-align: middle;
    }
    .admin-list-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      color: var(--blanco);
    }
    .admin-list-actions {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
    }
    .admin-list-actions form {
      display: contents;
    }
    .admin-list-actions a,
    .admin-list-actions button {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.8rem;
      letter-spacing: 0.04em;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      border: 1px solid rgba(192,38,211,0.25);
      background: var(--negro);
      color: var(--blanco);
      text-decoration: none;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      transition: background .2s, border-color .2s;
    }
    .admin-list-actions a:hover,
    .admin-list-actions button:hover {
      background: var(--vinotinto);
      border-color: var(--rosa);
    }
    .admin-list-actions .danger:hover {
      background: #7a1f1f;
      border-color: #ff6b6b;
    }

    /* ── BLOG ADMIN · EDITOR ── */
    .admin-page nav.blog-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      backdrop-filter: blur(12px);
      background: rgba(10,10,10,0.85);
      border-bottom: 1px solid rgba(192,38,211,0.12);
    }
    body.admin-page {
      height: 100vh;
      overflow: hidden;
    }
    .admin-shell {
      height: 100vh;
      padding: 80px 0 0;
      margin: 0;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }
    .admin-sidebar-toggle {
      display: none;
      align-items: center;
      gap: 0.5rem;
      margin: 1rem 6vw 0;
      padding: 0.55rem 0.9rem;
      border-radius: 8px;
      border: 1px solid rgba(192,38,211,0.25);
      background: var(--gris);
      color: var(--blanco);
      font-size: 0.8rem;
      font-weight: 600;
      cursor: pointer;
    }
    .admin-sidebar-backdrop {
      display: none;
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.6);
      z-index: 90;
    }
    .admin-sidebar {
      position: fixed;
      top: 80px;
      left: 0;
      bottom: 0;
      width: 280px;
      z-index: 95;
      border-right: 1px solid rgba(192,38,211,0.2);
      background: var(--gris);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .admin-main {
      margin-left: 280px;
      height: calc(100vh - 80px);
      padding: 1.6rem 4vw 1.5rem 3vw;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    @media (max-width: 960px) {
      .admin-sidebar-toggle { display: inline-flex; }
      .admin-sidebar {
        width: min(300px, 82vw);
        transform: translateX(-100%);
        transition: transform 0.22s ease;
      }
      .admin-sidebar.open { transform: translateX(0); }
      .admin-sidebar-backdrop.open { display: block; }
      .admin-main { margin-left: 0; padding: 1.5rem 6vw 1.5rem; }
    }
    #post-form {
      display: flex;
      flex-direction: column;
      flex: 1;
      min-height: 0;
    }
    .admin-sidebar-head {
      padding: 1rem 1rem 0.8rem;
      border-bottom: 1px solid rgba(192,38,211,0.12);
    }
    .admin-sidebar-head a.btn-primary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      width: 100%;
      font-size: 0.78rem;
      padding: 0.65rem 0.8rem;
    }
    .admin-sidebar-calendar {
      margin-top: 0.7rem;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 8px;
      padding: 0.6rem 0.5rem 0.7rem;
      background: var(--negro);
    }
    .cal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.5rem;
    }
    .cal-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      text-transform: capitalize;
      color: var(--blanco);
      font-family: 'DM Sans', sans-serif;
    }
    .cal-nav {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: none;
      color: var(--texto);
      cursor: pointer;
      padding: 0.2rem 0.4rem;
      font-size: 0.75rem;
      border-radius: 4px;
    }
    .cal-nav:hover { color: var(--rosa); background: rgba(192,38,211,0.1); }
    .cal-weekdays {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      text-align: center;
      font-size: 0.6rem;
      letter-spacing: 0.03em;
      color: rgba(207,207,207,0.4);
      margin-bottom: 0.3rem;
    }
    .cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
    }
    .cal-day {
      position: relative;
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: none;
      border-radius: 5px;
      color: var(--texto);
      font-size: 0.68rem;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
    }
    .cal-day-empty { cursor: default; }
    .cal-day:not(.cal-day-empty):hover { background: rgba(255,255,255,0.06); }
    .cal-day.has-post::after {
      content: '';
      position: absolute;
      bottom: 3px;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--rosa);
    }
    .cal-day.today { border: 1px solid rgba(192,38,211,0.4); }
    .cal-day.selected {
      background: var(--vinotinto);
      color: var(--blanco);
    }
    .cal-day.selected.has-post::after { background: var(--blanco); }
    .cal-clear {
      display: block;
      width: 100%;
      margin-top: 0.5rem;
      background: none;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      padding: 0.35rem 0.5rem;
      color: var(--texto);
      font-size: 0.68rem;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
    }
    .cal-clear:hover { border-color: rgba(192,38,211,0.4); color: var(--blanco); }
    .admin-sidebar-search {
      display: block;
      width: 100%;
      margin-top: 0.7rem;
      background: var(--negro);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      padding: 0.5rem 0.7rem;
      color: var(--blanco);
      font-size: 0.78rem;
      font-family: 'DM Sans', sans-serif;
    }
    .admin-sidebar-search:focus { outline: none; border-color: rgba(192,38,211,0.4); }
    .admin-sidebar-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.7rem;
    }
    .filter-pill {
      border: 1px solid rgba(192,38,211,0.25);
      background: var(--negro);
      color: var(--texto);
      border-radius: 999px;
      padding: 0.3rem 0.7rem;
      font-size: 0.68rem;
      letter-spacing: 0.04em;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      transition: background .2s, border-color .2s, color .2s;
    }
    .filter-pill:hover { border-color: rgba(192,38,211,0.5); }
    .filter-pill.active {
      background: var(--vinotinto);
      border-color: var(--rosa);
      color: var(--blanco);
    }
    .admin-post-list-empty {
      padding: 0.7rem;
      font-size: 0.8rem;
      color: rgba(207,207,207,0.5);
    }
    .admin-post-list {
      position: static;
      top: auto; left: auto; right: auto; z-index: auto;
      display: block;
      backdrop-filter: none;
      background: none;
      border-bottom: none;
      flex: 1;
      min-height: 0;
      overflow-y: auto;
      padding: 0.5rem;
    }
    .admin-post-item {
      display: block;
      padding: 0.65rem 0.7rem;
      border-radius: 7px;
      border: 1px solid transparent;
      text-decoration: none;
      margin-bottom: 0.2rem;
      transition: background .15s, border-color .15s;
    }
    .admin-post-item:hover { background: rgba(255,255,255,0.04); }
    .admin-post-item.active {
      background: var(--negro);
      border-color: rgba(192,38,211,0.3);
    }
    .admin-post-item-status {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--texto-dim, rgba(207,207,207,0.6));
      margin-bottom: 0.3rem;
    }
    .admin-post-item-status .dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(255,255,255,0.3);
    }
    .admin-post-item-status.programado .dot { background: #a78bfa; }
    .admin-post-item-status.publicado .dot { background: #34d399; }
    .admin-post-item-status.borrador .dot { background: rgba(207,207,207,0.5); }
    .admin-post-item-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--blanco);
      line-height: 1.35;
      margin-bottom: 0.25rem;
    }
    .admin-post-item-date {
      font-size: 0.7rem;
      color: rgba(207,207,207,0.55);
    }

    .admin-main { min-width: 0; }
    .admin-topbar {
      position: fixed;
      top: 80px;
      left: calc(280px + 3vw);
      right: 4vw;
      max-width: 900px;
      z-index: 20;
      background: var(--negro);
      padding-top: 1.4rem;
      padding-bottom: 1rem;
    }
    .topbar-inner {
      min-width: 260px;
    }
    .admin-topbar-actions {
      position: fixed;
      top: calc(80px + 1.4rem);
      right: 4vw;
      z-index: 21;
      display: flex;
      gap: 0.6rem;
      flex-shrink: 0;
    }
    @media (max-width: 960px) {
      .admin-topbar { left: 6vw; right: 6vw; }
      .admin-topbar-actions { right: 6vw; }
    }
    .admin-eyebrow {
      display: block;
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--rosa);
      margin-bottom: 0.4rem;
    }
    .admin-title-input {
      display: block;
      width: 100%;
      background: transparent;
      border: none;
      color: var(--blanco);
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
    }
    .admin-title-input:focus { outline: none; }
    .admin-excerpt-row {
      margin-top: 0.7rem;
    }
    .admin-excerpt-row label {
      display: block;
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--rosa);
      margin-bottom: 0.35rem;
    }
    .excerpt-input {
      display: block;
      width: 80%;
      min-width: 220px;
      resize: vertical;
      background: var(--gris);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      color: var(--blanco);
      padding: 0.6rem 0.9rem;
      font-size: 0.9rem;
      line-height: 1.4;
      font-family: 'DM Sans', sans-serif;
    }
    .excerpt-input:focus { outline: none; border-color: rgba(192,38,211,0.4); }
    .admin-meta-row {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 0.7rem;
    }
    .admin-meta-row label {
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--rosa);
      margin-right: 0.4rem;
    }
    .admin-meta-row input[type="date"] {
      background: var(--gris);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      color: var(--blanco);
      padding: 0.35rem 0.7rem;
      font-size: 0.78rem;
      font-family: 'DM Sans', sans-serif;
    }
    .admin-status-select-wrap {
      position: relative;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      border: 1px solid rgba(167,139,250,0.4);
      background: rgba(167,139,250,0.14);
      color: #a78bfa;
    }
    .admin-status-select-wrap.publicado {
      border-color: rgba(52,211,153,0.4);
      background: rgba(52,211,153,0.12);
      color: #34d399;
    }
    .admin-status-select-wrap.borrador {
      border-color: rgba(207,207,207,0.35);
      background: rgba(207,207,207,0.1);
      color: rgba(207,207,207,0.85);
    }
    .admin-status-select-wrap i {
      position: absolute;
      right: 0.6rem;
      font-size: 0.65rem;
      pointer-events: none;
    }
    .admin-status-select {
      appearance: none;
      -webkit-appearance: none;
      background: none;
      border: none;
      color: inherit;
      padding: 0.3rem 1.6rem 0.3rem 0.7rem;
      border-radius: 999px;
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
    }
    .admin-status-select:focus { outline: none; }
    .admin-status-select option {
      background: var(--gris);
      color: var(--blanco);
      text-transform: none;
    }
    .admin-status-hint {
      font-size: 0.7rem;
      color: rgba(207,207,207,0.45);
      margin-top: 0.5rem;
      max-width: 480px;
    }
    .btn-delete {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 2rem;
      border-radius: 3px;
      border: 1px solid #ff6b6b;
      background: transparent;
      color: #ff6b6b;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      transition: background .2s, color .2s, transform .15s;
    }
    .btn-delete:hover { background: #ff6b6b; color: var(--negro); transform: translateY(-1px); }

    .admin-toolbar {
      padding: 0.5rem 0.6rem;
      border: 1px solid rgba(192,38,211,0.12);
      border-top: none;
      border-bottom: none;
      background: var(--negro);
      position: fixed;
      left: calc(280px + 3vw);
      right: 4vw;
      max-width: 900px;
      z-index: 18;
    }
    .toolbar-inner {
      display: flex;
      align-items: center;
      gap: 0.2rem;
      flex-wrap: wrap;
    }
    @media (max-width: 960px) {
      .admin-toolbar { left: 6vw; right: 6vw; }
    }
    .tb-btn {
      width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 6px;
      border: 1px solid transparent;
      background: transparent;
      color: var(--texto);
      cursor: pointer;
      font-size: 0.85rem;
      font-weight: 700;
      font-family: 'DM Sans', sans-serif;
    }
    .tb-btn:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.08); }
    .tb-sep { width: 1px; align-self: stretch; background: rgba(192,38,211,0.14); margin: 0.3rem 0.4rem; }
    .tb-spacer { flex: 1; }
    .tb-toggle {
      display: flex; align-items: center; gap: 0.35rem;
      font-size: 0.72rem;
      letter-spacing: 0.03em;
      color: rgba(207,207,207,0.65);
      padding: 0.4rem 0.7rem;
      border-radius: 6px;
      border: 1px solid rgba(255,255,255,0.1);
      background: transparent;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
    }
    .tb-toggle.on { color: var(--blanco); border-color: rgba(192,38,211,0.35); background: rgba(192,38,211,0.1); }

    .admin-workbench {
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(192,38,211,0.12);
      border-top: 1px solid rgba(192,38,211,0.4);
      border-radius: 0 0 8px 8px;
      overflow: hidden;
      flex: 1;
      min-height: 0;
      max-width: 900px;
    }
    .workbench-tabs {
      display: flex;
      position: fixed;
      left: calc(280px + 3vw);
      right: 4vw;
      max-width: 900px;
      z-index: 19;
      border: 1px solid rgba(192,38,211,0.12);
      border-bottom: none;
      border-radius: 8px 8px 0 0;
      background: rgba(255,255,255,0.015);
    }
    @media (max-width: 960px) {
      .workbench-tabs { left: 6vw; right: 6vw; }
    }
    .workbench-tab {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 1.3rem;
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      color: rgba(207,207,207,0.55);
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
    }
    .workbench-tab .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rosa); }
    .workbench-tab[data-pane="preview-pane"] .dot { background: #34d399; }
    .workbench-tab.active { color: var(--blanco); border-bottom-color: var(--rosa); }
    .editor-pane, .preview-pane {
      min-width: 0;
      flex: 1;
      min-height: 0;
      overflow-y: auto;
      padding: 1.4rem 1.6rem 3rem;
    }
    .editor-pane { background: var(--gris); }
    .preview-pane { background: var(--negro); }
    .pane-inner { max-width: 900px; margin: 0 auto; }

    #editable {
      min-height: 340px;
    }
    #editable:focus { outline: none; }
    #source-view {
      display: none;
      width: 100%;
      min-height: 340px;
      background: var(--negro);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 6px;
      color: var(--texto);
      font-family: 'SF Mono', Consolas, monospace;
      font-size: 0.8rem;
      line-height: 1.6;
      padding: 1rem;
      resize: vertical;
    }
    #source-view:focus { outline: none; border-color: var(--rosa); }
    .preview-pane .blog-date,
    .preview-pane .blog-post-title { margin-bottom: 0.7rem; }
    .preview-pane .blog-post-title { font-size: 1.4rem; }
    #preview-title:empty::before {
      content: "Sin título todavía";
      color: rgba(255,255,255,0.25);
    }

    /* ── CHAT WIDGET ── */
    #chat-widget {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 200;
      font-family: 'DM Sans', sans-serif;
    }
    #chat-toggle {
      width: 58px; height: 58px;
      border-radius: 50%;
      border: none;
      background: var(--rosa);
      color: var(--blanco);
      font-size: 1.4rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(192,38,211,0.4);
      transition: background .2s, transform .15s;
    }
    #chat-toggle:hover { background: var(--vinotinto); transform: translateY(-2px); }

    .chat-window {
      position: absolute;
      bottom: calc(100% + 1rem);
      right: 0;
      width: 340px;
      max-height: 70vh;
      background: var(--gris);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      opacity: 0;
      transform: translateY(12px) scale(.98);
      pointer-events: none;
      transition: opacity .2s ease, transform .2s ease;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }
    .chat-window.open {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .chat-header {
      background: linear-gradient(135deg, var(--rosa), var(--vinotinto));
      color: var(--blanco);
      padding: 0.9rem 1.1rem;
      display: flex; align-items: center; justify-content: space-between;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      letter-spacing: 0.03em;
    }
    .chat-header button {
      background: none; border: none; color: var(--blanco);
      cursor: pointer; font-size: 1rem; opacity: .85;
    }
    .chat-header button:hover { opacity: 1; }

    .chat-messages {
      flex: 1;
      overflow-y: auto;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      font-size: 0.88rem;
      min-height: 220px;
    }
    .chat-msg {
      padding: 0.6rem 0.85rem;
      border-radius: 10px;
      max-width: 85%;
      line-height: 1.45;
    }
    .chat-msg-bot {
      background: rgba(255,255,255,0.06);
      color: var(--texto);
      align-self: flex-start;
      border-bottom-left-radius: 2px;
    }
    .chat-msg-user {
      background: var(--rosa);
      color: var(--blanco);
      align-self: flex-end;
      border-bottom-right-radius: 2px;
    }
    .chat-msg-bot a {
      color: var(--rosa);
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px solid rgba(192,38,211,0.4);
      transition: border-color .2s;
    }
    .chat-msg-bot a:hover { border-color: var(--rosa); }
    .chat-contact-card { margin-top: 0.75rem; }
    .chat-social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.55rem 1rem;
      border-radius: 10px;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      border: none !important;
      transition: opacity .2s, transform .15s;
      color: #fff !important;
    }
    .chat-social-btn:hover { opacity: 0.88; transform: translateY(-1px); }
    .chat-btn-whatsapp { background: #25D366; }
    .chat-btn-instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
    .chat-btn-youtube   { background: #FF0000; }
    .chat-btn-facebook  { background: #1877F2; }
    .chat-btn-email     { background: var(--vinotinto); }
    .chat-btn-spotify   { background: #1DB954; }
    .chat-wa-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 0.75rem;
      padding: 0.55rem 1rem;
      background: #25D366;
      color: #fff !important;
      border: none !important;
      border-radius: 10px;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      transition: background .2s, transform .15s;
    }
    .chat-wa-btn:hover { background: #1ebe5d; transform: translateY(-1px); }
    .chat-msg-typing { display: flex; gap: 4px; align-items: center; }
    .chat-msg-typing span {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--texto);
      opacity: .5;
      animation: chat-typing 1s infinite ease-in-out;
    }
    .chat-msg-typing span:nth-child(2) { animation-delay: .15s; }
    .chat-msg-typing span:nth-child(3) { animation-delay: .3s; }
    @keyframes chat-typing {
      0%, 60%, 100% { opacity: .3; transform: translateY(0); }
      30% { opacity: 1; transform: translateY(-3px); }
    }

    .chat-form {
      display: flex;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .chat-form input {
      flex: 1;
      background: transparent;
      border: none;
      padding: 0.85rem 1rem;
      color: var(--blanco);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
    }
    .chat-form input:focus { outline: none; }
    .chat-form input::placeholder { color: rgba(255,255,255,0.35); }
    .chat-form button {
      background: none;
      border: none;
      color: var(--rosa);
      padding: 0 1.1rem;
      cursor: pointer;
      font-size: 1.05rem;
      transition: color .2s;
    }
    .chat-form button:hover { color: var(--vinotinto); }

    @media (max-width: 500px) {
      .chat-window {
        width: calc(100vw - 2rem);
        right: -0.5rem;
      }
    }
