
    /* ===== Base CV layout ===== */
    body { background: #f6f7f9; }
    .cv-wrap { max-width: 920px; margin: 30px auto; padding: 18px; background: #fff; border-radius: 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
    .cv-actions { text-align: right; margin-bottom: 10px; }
    .cv-header { display:flex; gap:18px; align-items:center; }
    .cv-header img { width:96px; height:96px; border-radius:50%; object-fit:cover; border:2px solid #eee; }
    .cv-title h1 { margin-bottom:0.2em; font-size:2em; }
    .cv-title p { margin:0em; color:#666; font-size:1em ; }

    /* Panels (cards) */
    .panel-cv { border-radius:8px; border:1px solid rgba(0,0,0,0.06); box-shadow:none; margin-bottom:14px; }
    .panel-body-compact { padding:12px 16px; }
    .panel-body-compact h3 { font-size:1.67em}    
    .tag { display:inline-block; padding:4px 8px; border-radius:14px; font-size:1rem; border:1px solid rgba(0,0,0,0.06); background:#fafafa; margin:.18rem .18rem 0 0; }

    .muted { color:#666; font-size:1em; }
    .small-muted { color:#777; font-size:.88rem; margin-top:.2rem; }

    /* Compact list items */
    .skill-row { display:flex; flex-direction:column; margin-bottom:.6rem; }
    .skill-row .muted { margin-left:0.2rem; margin-top:.18rem; }

    /* Projects/experience compact */
    .item-title { margin:0; font-size:1rem; }
    .item-meta { font-size:.88rem; color:#888; margin-bottom:.25rem; }

    /* Responsive */
    @media (max-width:560px) {
      .cv-header { flex-direction:column; text-align:center; }
      .cv-actions { text-align:center; margin-bottom:16px; }
    }

    /* ===== PRINT STYLES ===== */
    @media print {
      body { background: #fff; color: #000; }
      .cv-wrap { box-shadow:none; margin:0; padding:8mm; border-radius:0; }
      .no-print, .navbar, footer { display:none !important; }
      a::after { content: " (" attr(href) ")"; font-size:8pt; color:#000; }
      @page { size: A4; margin: 12mm; }
      /* Unificar font size para toda la página */
      body, p, li, a, span, div, h2, h4, h5, h6 { font-size: 8pt !important; line-height:1.25 !important; }
      .section-title { font-size: 10pt !important; }
      .panel-body-compact { padding: 0.1cm 0 !important; }
      .tag { border:none; background:transparent; }
      img { max-width: 80px; height: auto; }
      /* Reducir espacios entre secciones */
      .panel-cv, .divider { margin-bottom: 6px !important; }
    }
 