/* ========================================
   MODAL DE CONSENTIMIENTO (exoneración)
   Extracted from JS (was injected via style.textContent).
======================================== */

.consent-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.9);
        z-index: 10001;
        align-items: center;
        justify-content: center;
        padding: 20px;
        overflow-y: auto;
      }
      
      .consent-modal.show {
        display: flex;
      }
      
      .consent-modal-content {
        background: var(--dark2);
        border-radius: 12px;
        max-width: 800px;
        width: 100%;
        max-height: 90vh;
        display: flex;
        flex-direction: column;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      }
      
      .consent-modal-header {
        padding: 24px 24px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      
      .consent-modal-header h2 {
        font-size: 1.75rem;
        color: var(--white);
        margin: 0;
      }
      
      .consent-modal-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--gray);
        cursor: pointer;
        padding: 4px 8px;
        transition: color 0.2s ease;
      }
      
      .consent-modal-close:hover {
        color: var(--white);
      }
      
      .consent-modal-body {
        flex: 1;
        overflow-y: auto;
        padding: 0;
      }
      
      .consent-document {
        padding: 32px;
        color: var(--gray-light);
        line-height: 1.7;
      }
      
      .consent-header {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
      }
      
      .consent-header h3 {
        font-family: var(--font-display);
        font-size: 2rem;
        color: var(--blue-light);
        margin: 0 0 20px 0;
      }
      
      .consent-header p {
        margin: 10px 0;
      }
      
      .event-info {
        margin-top: 20px;
        padding: 20px;
        background: rgba(33, 150, 243, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(33, 150, 243, 0.2);
      }
      
      .consent-section {
        margin-bottom: 32px;
      }
      
      .consent-section h4 {
        color: var(--white);
        font-size: 1.25rem;
        margin-bottom: 16px;
        font-weight: 600;
      }
      
      .consent-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      
      .consent-section li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 12px;
      }
      
      .consent-section li:before {
        content: "•";
        position: absolute;
        left: 0;
        color: var(--blue-light);
        font-size: 1.5rem;
        line-height: 1.2;
      }
      
      .consent-footer {
        margin-top: 40px;
        padding-top: 30px;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
      }
      
      .consent-important {
        background: rgba(255, 193, 7, 0.1);
        border: 1px solid rgba(255, 193, 7, 0.3);
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        font-size: 1.05rem;
        line-height: 1.6;
      }
      
      .consent-note {
        text-align: center;
        margin-top: 20px;
        font-size: 0.95rem;
        opacity: 0.8;
      }
      
      .consent-modal-footer {
        padding: 20px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        gap: 12px;
        justify-content: flex-end;
      }
      
      /* Responsive */
      @media (max-width: 768px) {
        .consent-modal-content {
          max-height: 100vh;
          height: 100%;
          border-radius: 0;
        }
        
        .consent-document {
          padding: 20px;
        }
        
        .consent-header h3 {
          font-size: 1.5rem;
        }
        
        .consent-section h4 {
          font-size: 1.1rem;
        }
      }
