    *, *::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; }

    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); }

    /* 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);
    }

    /* ── 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: 900px) {
      .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; }
      .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 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;
    }

    /* ── 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;
    }
    .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;
    }

    /* ── 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-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;
      }
    }
