/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #003366;
    background: #f8f9fa;
  }
  
  /* Hero section */
  .hero-editorial {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #003366;
    padding: 0 1.5rem;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    margin-bottom: 2rem;
  }
  
  .hero-editorial h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .hero-editorial p {
    font-size: 1.2rem;
    max-width: 800px;
    color: #003366;
  }
  
  /* Contenedor principal */
  .main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
  }
  
  /* Títulos de sección */
  .section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 1.5rem;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #003366;
    border-radius: 2px;
  }
  
  /* Tarjetas del comité */
  .editorial-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .editorial-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    width: 100%;
  }
  
  .editorial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .card-content {
    padding: 2rem;
  }
  
  .card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 51, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #003366;
    flex-shrink: 0;
  }
  
  .card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #003366;
  }
  
  .card-body {
    margin-bottom: 1rem;
  }
  
  .card-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  /* Lista de funciones */
  .card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #003366;
    flex: 1;
    min-width: 250px;
  }
  
  .detail-icon {
    color: #003366;
    font-size: 1.5rem;
    margin-top: 3px;
  }
  
  .detail-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .detail-content p {
    color: #555;
    line-height: 1.6;
  }
  
  /* Miembros del comité */
  .miembros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .miembro-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .miembro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .miembro-img-container {
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003366;
    font-size: 4rem;
  }
  
  .miembro-info {
    padding: 1.5rem;
  }
  
  .miembro-info h4 {
    color: #003366;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  .miembro-cargo {
    color: #003366;
    font-weight: 600;
    margin-bottom: 0.3rem;
  }
  
  .miembro-institucion {
    color: #555;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  
  .miembro-bio {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  /* Proceso editorial */
  .proceso-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    background: #003366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .step-content h4 {
    color: #003366;
    margin-bottom: 0.5rem;
  }
  
  .step-content p {
    color: #555;
  }
  
  /* Preguntas frecuentes - Versión mejorada */
  .faq-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  
  .faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: white;
  }
  
  .faq-question {
    padding: 1.5rem;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .faq-question:hover {
    background: #f1f5f9;
  }
  
  .faq-question h4 {
    color: #003366;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    flex: 1;
  }
  
  .faq-question i {
    margin-left: 1rem;
    font-size: 1.2rem;
    color: #003366;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
  }
  
  .faq-answer p {
    color: #555;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  /* Formulario de contacto */
  .contacto-form {
    width: 100%;
  }
  
  .contacto-form h3 {
    color: #003366;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 150px;
  }
  
  .btn-enviar {
    background: #003366;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .btn-enviar:hover {
    background: #002244;
    transform: translateY(-2px);
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .hero-editorial h1 {
      font-size: 2.5rem;
    }
    
    .card-content {
      padding: 1.5rem;
    }
    
    .miembros-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
  }
  
  @media (max-width: 768px) {
    .hero-editorial {
      height: 200px;
    }
    
    .hero-editorial h1 {
      font-size: 2.2rem;
    }
    
    .section-title h2 {
      font-size: 2rem;
    }
    
    .card-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    
    .card-icon {
      width: 60px;
      height: 60px;
      font-size: 1.8rem;
    }
    
    .detail-item {
      min-width: 100%;
    }
    
    .miembros-grid {
      grid-template-columns: 1fr;
    }
    
    .faq-question h4 {
      font-size: 1.2rem;
    }
    
    .faq-answer p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    .hero-editorial {
      height: 180px;
    }
    
    .hero-editorial h1 {
      font-size: 2rem;
    }
    
    .hero-editorial p {
      font-size: 1rem;
    }
    
    .section-title h2 {
      font-size: 1.8rem;
    }
    
    .card-content {
      padding: 1.5rem;
    }
    
    .step {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .faq-question {
      padding: 1.2rem;
    }
    
    .faq-question h4 {
      font-size: 1.1rem;
    }
    
    .faq-answer.active {
      padding: 1.2rem;
    }
  }