.protagonista-section {
    background-color: var(--blue-color);
    color: #ffffff;
    padding: 40px 20px 60px;
    font-family: 'Arial', sans-serif;
  }
  
  .content-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .text-column {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
  }
  
  .image-column {
    flex: 1; /* 🔼 Ocupa mismo espacio que texto */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .protagonista-photo {
    width: 100%; /* 🔼 Ocupa todo el ancho de la columna */
    height: auto;
    border-radius: 12px;
    background-color: #e0e0e0;
    object-fit: cover; /* 🔼 Se adapta si el contenedor crece */
  }
  
  .protagonista-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    margin-bottom: 30px;
  }
  
  .protagonista-header h2 {
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .protagonista-header .subtitle {
    text-align: center;
    font-size: 50px;
    color: #ccc;
  }
  
  .text-column h3 {
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 12px;
  }
  
  .text-column h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .text-column p,
  .text-column li {
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
  }
  
  .especialidad {
    color: var(--gold-color);
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .formacion li {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 6px;
  }
  
  @media screen and (max-width: 768px) {
    .content-container {
      flex-direction: column;
      align-items: center;
      padding: 0;
    }
  
    .text-column {
      width: 100%;
      padding: 0 15px;
      box-sizing: border-box;
    }
  
    .text-column h3 {
      font-size: 1.4rem;
      text-align: left;
    }
  
    .text-column h4 {
      font-size: 1.1rem;
      text-align: left;
    }
  
    .text-column p,
    .text-column li {
      font-size: 0.95rem;
      line-height: 1.8;
      text-align: left;
      word-break: break-word;
    }
  
    .formacion {
      padding-left: 18px;
      margin-top: 10px;
    }
  
    .image-column {
        width: 100%;
        margin: 0;
        padding: 0; 
        display: block; 
      }
    
      .protagonista-photo {
        width: 100vw; 
        height: auto;
        max-width: 100%;
        border-radius: 0; 
        display: block;
      }
  
    .protagonista-header {
      text-align: center;
      padding-top: 10px;
      padding-bottom: 20px;
    }
  
    .protagonista-header h2 {
      font-size: 1.8rem;
    }
  
    .protagonista-header .subtitle {
      font-size: 1rem;
    }
  }
  
  