/* ============== ESTILOS GENERALES DE LA PÁGINA ============== */
  .content-section {
    padding: 3rem 1.5rem;
    color: var(--c-text, #fff);
  }
  
  #solicitud { padding-top: 5rem; }

  .styled-panel {
    background: rgba(14, 21, 37, 0.88);
    border: 1px solid var(--c-border, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
  }

  .styled-panel h2 {
    color: var(--c-brand, #f39323);
    font-family: var(--font-secondary, 'Montserrat');
    font-weight: 700;
    font-size: 2.25rem;
    border-bottom: 2px solid var(--c-brand, #f39323);
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .styled-panel p {
    color: var(--c-text-muted, #d1d5db);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }

  /* ============== 1. ESTILOS P/ SOLICITUD (4 PANELES) ============== */
  .four-panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .requisitos-panel {
    background: rgba(10, 15, 28, 0.9);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  /* Efecto Hover para las tarjetas de requisitos */
  .requisitos-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border-color: rgba(243, 147, 35, 0.4);
  }

  .requisitos-panel h3 {
    color: var(--c-brand);
    font-family: var(--font-secondary, 'Montserrat');
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--c-brand-soft);
    padding-bottom: 0.75rem;
  }

  .requisitos-panel ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }

  .requisitos-panel li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.95rem;
    color: var(--c-text-muted, #d1d5db);
    margin-bottom: 0.6rem;
    line-height: 1.4;
  }

  .requisitos-panel li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--c-brand);
    font-weight: bold;
  }

  /* ============== 2. ESTILOS P/ ENTREGADOS (2 PANELES) ============== */
  .two-panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
  }

  .pdf-panel {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .pdf-panel h3 {
    color: #222;
    font-family: var(--font-secondary, 'Montserrat');
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
    text-align: center;
  }

  .pdf-panel-embed {
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
    border: 1px solid #ddd;
    background: #f9f9f9;
  }

  .pdf-panel-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .pdf-panel-download {
    text-align: center;
  }
  
  .pdf-panel-download a {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--c-brand, #f39323);
    color: #111;
    text-decoration: none;
    font-family: var(--font-secondary, 'Montserrat');
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.2s ease;
  }
  .pdf-panel-download a:hover {
    background: #111;
    color: #f39323;
    box-shadow: 0 4px 12px rgba(243, 147, 35, 0.4);
  }

  /* ============== 3. ESTILOS P/ BECAS (3 PANELES) ============== */
  .three-panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .image-panel {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--c-border);
    background: #000;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .image-panel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  @media (max-width: 768px) {
    .pdf-panel-embed, .image-panel { height: 400px; min-height: 400px; }
  }
