/* ===========================
   Biografía – JR Ilusionista
   Diseño oscuro minimal
   =========================== */

   body {
    background-color: #020617;
  }
  
  /* HERO – FOTO + TEXTO */
  
  .bio-hero {
    padding: 5rem 0 4.5rem;
    background:
      radial-gradient(circle at 0% 0%, rgba(15,23,42,0.85), transparent 55%),
      linear-gradient(180deg, #020617 0%, #020617 45%, #020617 100%);
    color: #e5e7eb;
  }
  
  .bio-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 3rem;
    align-items: center;
  }
  
  .bio-hero-media {
    order: 1;
  }
  
  .bio-hero-photo {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(51,65,85,0.9);
    box-shadow: 0 22px 50px rgba(15,23,42,0.95);
  }
  
  .bio-hero-photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .bio-hero-text {
    order: 2;
    max-width: 34rem;
  }
  
  .bio-hero-tagline {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: #9ca3af;
    margin-bottom: 0.7rem;
  }
  
  .bio-hero-text h1 {
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont;
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 0.9rem;
    color: #f9fafb;
  }
  
  .bio-hero-text p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #cbd5e1;
  }
  
  .bio-hero-quote {
    margin-top: 1.1rem;
    font-size: 0.9rem;
    font-style: italic;
    color: #9ca3af;
  }
  
  /* HIGHLIGHTS */
  
  .bio-highlights {
    padding: 0 0 2.5rem;
    background: #020617;
  }
  
  .bio-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
  }
  
  .bio-highlight {
    border-radius: 16px;
    background: #020617;
    border: 1px solid rgba(31,41,55,1);
    box-shadow: 0 12px 28px rgba(15,23,42,0.85);
    padding: 1.1rem 1.2rem;
  }
  
  .bio-highlight-number {
    font-family: "Montserrat", system-ui;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    color: #f9fafb;
    margin-bottom: 0.25rem;
  }
  
  .bio-highlight-label {
    font-size: 0.86rem;
    color: #9ca3af;
  }
  
  /* BLOQUE PRINCIPAL – PERFIL + STORY */
  
  .bio-main {
    padding: 4.5rem 0 5rem;
    background-color: #020617;
  }
  
  .bio-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.5fr);
    gap: 3rem;
    align-items: flex-start;
  }
  
  /* PERFIL LATERAL */
  
  .bio-profile {
    border-radius: 18px;
    background-color: #020617;
    border: 1px solid rgba(51,65,85,0.95);
    box-shadow: 0 18px 40px rgba(15,23,42,0.95);
    overflow: hidden;
  }
  
  .bio-photo {
    margin: 0;
    border-bottom: 1px solid rgba(31,41,55,1);
  }
  
  .bio-photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .bio-profile-content {
    padding: 1.6rem 1.7rem 1.5rem;
  }
  
  .bio-profile-content h2 {
    font-family: "Montserrat", system-ui;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #f9fafb;
  }
  
  .bio-profile-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 1.1rem;
  }
  
  /* Datos clave */
  
  .bio-facts {
    margin: 0;
  }
  
  .bio-facts div + div {
    margin-top: 0.6rem;
  }
  
  .bio-facts dt {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7280;
    margin-bottom: 0.1rem;
  }
  
  .bio-facts dd {
    margin: 0;
    font-size: 0.9rem;
    color: #e5e7eb;
  }
  
  /* STORY A LA DERECHA */
  
  .bio-story {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }
  
  .bio-section-block {
    border-radius: 16px;
    background-color: #020617;
    border: 1px solid rgba(31,41,55,1);
    box-shadow: 0 14px 32px rgba(15,23,42,0.9);
    padding: 1.6rem 1.7rem 1.5rem;
  }
  
  .bio-section-block h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #e5e7eb;
  }
  
  .bio-section-block p {
    font-size: 0.94rem;
    line-height: 1.9;
    color: #9ca3af;
  }
  
  .bio-section-block p + p {
    margin-top: 0.7rem;
  }
  
  /* Read more (details) */
  
  .bio-more {
    margin-top: 0.6rem;
  }
  
  .bio-more summary {
    cursor: pointer;
    user-select: none;
    font-size: 0.88rem;
    color: #cbd5e1;
    list-style: none;
  }
  
  .bio-more summary::-webkit-details-marker {
    display: none;
  }
  
  .bio-more summary::before {
    content: "+";
    display: inline-block;
    width: 1.1rem;
    color: #a855f7;
  }
  
  .bio-more[open] summary::before {
    content: "–";
  }
  
  .bio-more p {
    margin-top: 0.65rem;
    font-size: 0.94rem;
    line-height: 1.9;
    color: #9ca3af;
  }
  
  /* GALERÍA EN ESCENA */
  
  .bio-gallery {
    padding: 3.5rem 0 4.5rem;
    background: radial-gradient(circle at 100% 0%, rgba(15,23,42,0.85), transparent 55%),
                #020617;
  }
  
  .bio-gallery-header {
    max-width: 40rem;
    margin-bottom: 2rem;
  }
  
  .bio-gallery-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #9ca3af;
    margin-bottom: 0.4rem;
  }
  
  .bio-gallery-header h2 {
    font-family: "Montserrat", system-ui;
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    color: #f9fafb;
  }
  
  .bio-gallery-header p {
    font-size: 0.94rem;
    line-height: 1.8;
    color: #9ca3af;
  }
  
  .bio-gallery-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
  }
  
  .bio-gallery-item {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(51,65,85,0.95);
    box-shadow: 0 18px 40px rgba(15,23,42,0.95);
  }
  
  .bio-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* CTA final */
  
  .bio-cta {
    padding: 3.2rem 0 4.2rem;
    background:
      radial-gradient(circle at 0% 0%, rgba(168,85,247,0.16), transparent 55%),
      radial-gradient(circle at 100% 100%, rgba(56,189,248,0.12), transparent 55%),
      #020617;
  }
  
  .bio-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-radius: 18px;
    background: rgba(2,6,23,0.7);
    border: 1px solid rgba(31,41,55,1);
    box-shadow: 0 18px 44px rgba(15,23,42,0.9);
    padding: 1.8rem 1.9rem;
  }
  
  .bio-cta-text h2 {
    font-family: "Montserrat", system-ui;
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
    color: #f9fafb;
  }
  
  .bio-cta-text p {
    color: #9ca3af;
    line-height: 1.7;
    margin: 0;
    max-width: 44rem;
  }
  
  .bio-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 960px) {
    .bio-hero {
      padding: 4.3rem 0 3.5rem;
    }
  
    .bio-hero-grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 2.3rem;
    }
  
    .bio-hero-media {
      order: 2;
    }
  
    .bio-hero-text {
      order: 1;
    }
  
    .bio-grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 2.5rem;
    }
  
    .bio-profile {
      max-width: 480px;
    }
  
    .bio-highlights-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .bio-gallery-row {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .bio-cta-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  @media (max-width: 640px) {
    .bio-main {
      padding: 3.5rem 0 4rem;
    }
  
    .bio-profile-content {
      padding: 1.4rem 1.5rem 1.4rem;
    }
  
    .bio-section-block {
      padding: 1.4rem 1.5rem 1.4rem;
    }
  
    .bio-gallery {
      padding: 3rem 0 3.5rem;
    }
  
    .bio-gallery-row {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .bio-highlights-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }