/* RESET BÁSICO */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f0f0eb;
  color: #222;
  line-height: 1.75;
  font-size: 0.9rem;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color:#808080;

}



.titulo-link {
  color: inherit;          /* hereda el color del h3 */
  text-decoration: none;  
  scroll-margin-top: 120px;
}

.titulo-link:hover {
  color: #555;             /* opcional: color distinto en hover */
  text-decoration: none;   /* sigue sin subrayado */
}

/* HEADER */
.sticky-header {
  background: #f9f9f9;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  text-align: center;
}
.sticky-header-interior {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
  text-align: center;
}

.header-contenido {
  margin: 0 auto;
  text-align: center;
}
.logo-moebiana {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.logo-moebiana img {
  height: 36px;
}
.titulo-header {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.4rem;
  color: #628B87;
  font-weight: 600;

}
.numero-header {
  margin-top: 0px;
  font-size: 0.95rem;
  color: #628B87;
  font-weight: bold;
}
.descripcion-header {
  font-size: 0.7rem;
  color: #6a6A6A;
  margin-top: 0.2rem;
}

/* NAVEGACIÓN */
  .site-nav {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 999;
  width: 100%;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #ddd;
}
.site-nav a {
  color: #fff;
  margin: 0 1rem;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  text-decoration: none;
 
}
.site-nav a.activo {
  color: #1a1a1a; /* texto oscuro */
  background-color: #c0dfd8; /* fondo claro verdoso */
  border-radius: 4px;
  font-weight: bold;
}

/* SECCIONES GENERALES */
.section {
  max-width: 1024px;
  margin: 0 auto;
}
.modulo-seccion {
  background: #fff;
  border-radius: 8px;
  padding: 3rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.modulo-vacio {
  padding: 0rem 0rem 3rem 1.5rem;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modulo-vacio2{
  padding: 3rem 0rem 3rem 1.5rem;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modulo-tapa {
  background: #f0f0eb;
  border-radius: 8px;
  padding: 0rem 0rem 2rem 0rem;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.modulo-seccion:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.modulo-seccion h2 {
  position: relative;
  font-size: 2rem;
  color: #808080;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.modulo-seccion h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2.5px;
  width: 4ch; 
  background-color: #808080;
}

/* === TAPA EDITORIAL DESTACADA === */
.contenedor-tapa {
  font-family: ;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 1rem auto;
  padding: 0 2rem;
}

.contenedor-tapa img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.15); /* sombra más editorial */
}

/* bloque de título */
.banda-titulo {
  flex: 1;
  max-width: 40ch;
}

.banda-titulo h5 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.7rem;
  line-height: 1.4;
  color: #222;
  margin-bottom: 1.5rem;
}

.banda-titulo h5 strong {
  color: #555; /* gris neutro elegante */
}

/* botón editorial */
.banda-titulo .boton-secundario {
  display: inline-block;
  background: #628B87;     /* mantiene color institucional */
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: 4px;   
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.3s ease;

}

.banda-titulo .boton-secundario:hover {
  background: #4e6f6c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(98,139,135,0.35);
}

.banda-titulo .boton-secundario:hover {
  background: #1e3d3a;
}

/* EDITORIAL */
.editorial {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #fff;
  border-left: 4px solid #808080;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  border-radius: 8px;
}
.boton-terciario-moderno {
  display: inline-block;
  font-size: 0.95rem;
  padding: 0.4rem 0.8rem;
  color: #628B87;
  border: 1px solid #628B87;
  border-radius: 4px;
  background: transparent;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  margin-top: 1rem;
}
.boton-terciario-moderno:hover {
  background: #628B87;
  color: #fff;
}

/* BLOQUE CON IMAGEN Y ARTÍCULOS */
.bloque-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.imagen-seccion {
  flex: 0 0 100px;
  text-align: center;
}
.imagen-seccion img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.autor-imagen {
  font-size: 0.75rem;
  color: #777;
  margin-top: 0.4rem;
  text-align: center;
}
.lista-articulos {
  flex: 1;
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;

}
.lista-articulos a {
  background: #f7f7f7;
  padding: 0.4rem 0.8rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  display: inline-block;
  font-size: 1.1rem;
  font-family: 'Libre Baskerville', serif;
  font-weight: 600;
  color: #628B87;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.lista-articulos a:hover {
  background: #eaeaea;
  color: #000;
}
.autor-texto, .autor-texto2 {
  font-size: 1rem;
  color: #808080;
  font-weight: 400;
  margin-bottom: 1rem;
}
.agenda {
  font-size: 0.9rem;
  color: #808080;
  font-weight: 400;
  margin-bottom: 1rem;
  }
.autor-email {
  font-weight: normal;
  color: #777;
  font-size: 0.85rem;
  text-decoration: none;
}
.autor-email:hover {
  text-decoration: none;
  color:#305754 ;
}

/* ARTÍCULOS INDIVIDUALES */
.articulo-individual {
  background: #fff;
  padding: 2rem;
  margin-bottom: 3rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s ease;
    scroll-margin-top: 80px;
}
.articulo-individual:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.titulo-articulo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #628B87 ;
  margin-bottom: 0.6rem;
   padding-bottom: 0.3rem;
  scroll-margin-top: 120px;
}


.botones-accion {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}
.botones-accion a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8f0ee;
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  color: #628B87;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.botones-accion a:hover {
  background: #d1e5e2;
  color:#305754;
  text-decoration: none;
}

.enlaces {
  font-size: 1rem;
  color: #628B87;
  text-decoration: none;
  font-weight: 500;
}

/* FOOTER COMPATIBLE */
footer {
  text-align: center;
  font-size: 0.75rem;
  color: #808080;
  padding: 2rem 1rem;
  background: #f9f9f9;
  border-top: 1px solid #ccc;
}
footer nav {
  margin: 1rem 0;
}
footer nav a {
  margin: 0 0.75rem;
  font-size: 1rem;
  color: #628B87;
  text-decoration: none;
  font-weight: 500;
}
footer nav a:hover {
  text-decoration: underline;
}
footer .social-icons {
  margin-top: 1.5rem;
}
footer .social-icons a {
  margin: 0 0.6rem;
  font-size: 1.2rem;
  color: #628B87;
}
.footer-legal {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-style: italic;
  color: #666;
  line-height: 1.5;
}


.imagen-cabecera-seccion {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

 .flecha-arriba {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #628B87 ;
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;

}

.flecha-arriba.visible {
  opacity: 1;
  visibility: visible;
}

.flecha-arriba:hover {
  background: #1a3a38;
  text-decoration: none;
}

  .fila-convocatoria {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.imagen-convocatoria {
  margin: 0;
  flex-shrink: 0;
  width: 260px;
}

.imagen-convocatoria img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.imagen-convocatoria figcaption {
  font-size: 0.75rem;
  color: #777;
  margin-top: 0.4rem;
  text-align: left;
}

.contenido-convocatoria {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1124px;
  width: 100%;
  
}


.nav-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #fff;
  padding-left: 0px;
  margin-left: 0px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}


/* Alineación título sección con Moebiana */
.alineado-izquierda {
  text-align: left;
  margin: 2rem auto 1rem;
  max-width: 1100px;
  padding-left: 0.5rem;
}

/* NAV FIJO Y RESPONSIVE */
.site-nav {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 999;
  width: 100%;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #ddd;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-family: 'Libre Baskerville', serif;
  color: #808080;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  line-height: 1.2;
  height: 100%;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: 4px;
}

.nav-links a.activo {
  color: #628B87;
  background-color: #e0eae7;
  font-weight: bold;
}

.nav-titulo a {
  color: #628B87;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-titulo a:hover {
  color: #628B87;
}

/* Responsive: móvil */


.contenedor-dos-columnas {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
   align-items: flex-start;
}

.columna-izquierda {
  flex: 1 1 100px;
}

.columna-derecha {
  flex: 2 1 600px;
}

.titulo-seccion {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: #808080;
  position: relative;
  padding-bottom: 0.3rem;
}
.titulo-indice {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: #808080;
  position: relative;
  padding-bottom: 0.3rem;
}
html {
  scroll-behavior: smooth;
}
section[id] {
  scroll-margin-top: 120px;
}

.titulo-seccion::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4ch;
  height: 2px;
  background-color: #888;
}


.editorial-interior {
  background: #f0f0eb;
  border-left: 4px solid #ccc;
  padding: 2rem 1rem;

}

.editorial-contenido {
  max-width: 1100px;
  margin: 0 auto;
}

.editorial-interior .titulo-seccion {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #808080;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.3rem;
}

.editorial-interior .titulo-seccion::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4ch;
  height: 2px;
  background-color: #888;
}



/* === MEDIA QUERIES AL FINAL === */

@media (max-width: 768px) {

  .contenedor-tapa {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  /* Contenedor relativo solo en mobile */
  .contenedor-tapa > picture {
    position: relative;
    display: block;
    width: 100%;
  }

  /* Imagen ocupa ancho completo */
  .imagen-tapa {
    width: 100%;
    padding:0;
    height: auto;
    display: block;
    border-radius: 12px;
  }

  /* Banda superpuesta sobre la imagen */
  .banda-titulo {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.55);
    text-align: center;
    border-radius: 0 0 12px 12px;
    margin: 0 1rem;
  }

  .banda-titulo h5 {
    margin: 0;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 500;
  }
  .banda-titulo h5 strong { font-weight: 400; color: #fff; }

  /* Autor debajo de la imagen */
  .autor-imagen {
    margin: 0.8rem 0 0;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
  }

  /* Botón debajo del autor */
 .banda-titulo .boton-secundario {
    margin: 0.6rem auto 0;
    display: inline-block;
    padding: 0.4rem 1.4rem;  /* ahora sí pisa la desktop */
    background: #628B87;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
}
}


@media (max-width: 768px) {
  .fila-convocatoria {
    flex-direction: column;
  }


  .imagen-convocatoria,
  .contenido-convocatoria {
    width: 100%;
  }

  .imagen-convocatoria {
    max-width: 100%;
  }

  .contenedor-dos-columnas {
    flex-direction: column;
    padding: 1rem;
    margin: 0;
    gap: 0;
  }

  .columna-izquierda,
  .columna-derecha {
    width: 100%;
  }

  .modulo-seccion {
    padding: 1.5rem 1rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid #ccc;
    background: #fff;
  }
  .modulo-vacio {
  padding: 0rem 1rem 0rem 1rem;
}

.modulo-vacio2{
  padding: 0rem 1rem 0rem 1rem;
}


  .modulo-seccion h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: #333;
  }

  .imagen-seccion-mobile {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 0.5rem;
  }

  .autor-imagen {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 1rem;
     text-align: center;
  }

  .lista-articulos-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .lista-articulos-mobile li a {
    display: block;
    background: #f7f7f7;
    padding: 1rem;
    border-radius: 4px;
    text-decoration: none;
    color: #1a3a38;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
  
  }

  .lista-articulos-mobile li a:hover {
    background: #305754;
  }

  .lista-articulos-mobile .autor-texto {
    display: block;
    font-size: 0.85rem;
    color: #808080;
    margin-top: 0.5rem;
  }

  body.index .modulo-seccion {
   padding: 1.5rem 1rem;
  margin-bottom: 2.5rem;
  background: #fff;
  }

  body.index .modulo-seccion h2.titulo-seccion {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: #808080;
    padding-left: 0.3rem;
    border-left: none;
  }

  body.index .bloque-flex {
    flex-direction: column;
    gap: 1rem;
  }

  body.index .imagen-seccion {
    text-align: center;
  }

  body.index .imagen-seccion img {
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: cover;
    border-radius: 6px;
  }

  body.index .autor-imagen {
    font-size: 0.75rem;
    color: #888;
    margin: 0rem;
    text-align: center;
  }

  body.index .lista-articulos {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  body.index .editorial {
  border-left: 4px solid #ccc;
}
body.index .editorial p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

  body.index .lista-articulos li a {
    background: #f8f8f8;
    display: block;
    padding: 1rem 1.2rem;
    border-radius: 4px;
    font-size: 1.2rem;
    line-height: 28px;
    font-weight: 600;
    transition: background 0.2s ease;
  }

  body.index .lista-articulos li a:hover {
    background: #eaeaea;
  }

  body.index .autor-texto {
    display: block;
    font-size: 1rem;
    color: #808080;
    margin-top: 0.5rem;
    margin-bottom:0;
    margin-left: 1.2rem;
  }



  .banda-titulo {
    position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4); /* más contraste */
  padding: 1.2rem;
  font-size: 1.5rem;
  text-align: center;
  z-index: 2;
  color: #fff;
  line-height: 1.8rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  margin-bottom: 110px;

}

.descripcion-header {
  font-size: 0.6rem;
  margin:0.5rem;
  line-height: 0.9rem;
}
.titulo-header{
  font-size:1.6rem;
  margin-top: 0;
  margin-bottom:0;
}
.logo-moebiana img {
    height: 30px;
}
.numero-header{
  font-size:0.9rem;
  margin: 0;
}
.sticky-header {
   padding: 1rem 0 0 0;
}
}

@media (max-width: 480px) {
  body {
    font-size: 1rem;
    line-height: 1.8;
    padding: 0;
    margin: 0;
  }
.columna-derecha{
  flex: none;
}

  .section,
  .editorial-interior,
  .modulo-seccion,
  .articulo-individual,
  .contenedor-dos-columnas {
    padding: 1rem;
  }

  .modulo-seccion,
  .articulo-individual {
    box-shadow: none;
    border: 1px solid #eee;
    border-radius: 0;
    margin-bottom: 1rem;
  }

  .titulo-seccion {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }

  .titulo-articulo {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height:2rem;
  }

  .botones-accion {
    flex-direction: row;
    justify-content: start;
    margin-top: 0.8rem;
    gap: 1rem;
  }

  .botones-accion a {
    padding: 0.4rem 0.6rem;
  }

.botones-accion {
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 1rem;
  }
  .botones-accion a {
    padding: 0.8rem;
    font-size: 1.2rem;
  }
  .imagen-tapa {
    border-radius: 8px 8px 0 0;
    width: 100%;
    height: auto;
  }
  .imagen-convocatoria img,
  .imagen-seccion img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: none;
  }

  .imagen-convocatoria {
    margin: 0.5rem 0;
  }

  .imagen-convocatoria figcaption {
    margin-top: 0.3rem;
    font-size: 0.75rem;
    color: #888;
    padding-left: 0.3rem;
  }

  .contenido-convocatoria {
    gap: 1rem;
  }

  .site-nav {
    flex-direction: column;
    align-items: center;
    padding: 0.3rem 0.5rem;

  }

  .nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    width: 100%;
  }

  .nav-titulo a {
    font-size: 1.6rem;
    text-align: center;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 0.2rem;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;

  }

  .nav-links a {
     box-sizing: border-box;
    font-size: 1.1rem;
    padding: 0.2rem;
    border-radius: 4px;
    white-space: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: transparent;
     transition: color 0.2s ease, background 0.2s ease;
  }


  .flecha-arriba {
    bottom: 16px;
    right: 16px;

  }
}

/* === MIEMBROS Y PARTICIPANTES (refinado editorial) === */
.container-miembros {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1rem;
}

/* Encabezado */
.container-miembros .row.anchor {
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.logo-miembros {
  height: 52px;
  margin-right: 0.8rem;
}

.titulo-interno {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: #808080;
  padding-top: 3rem;
  padding-bottom: 0.25rem;
  position: relative;
}

.titulo-interno::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4ch;
  height: 2px;
  background-color: #888;
}

/* Cada miembro como bloque con aire */
.miembros {
  margin-bottom: 1.8rem; /* separación natural entre miembros */
}

.nombremiembro {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #808080;
  margin: 0 0 0.9rem;
  line-height: 1.3;
}

.telefono {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.estructura{
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Iconos perfectamente alineados */
.telefono i,
.telefono .icono4 {
  color: #628B87;
  font-size: 0.95rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

/* Links */
.miembros a {
  color: #628B87;
  text-decoration: none;
}

.miembros a:hover {
  text-decoration: underline;
}

/* Ajustes responsive */
@media (max-width: 768px) {

section[id], article[id] {
  scroll-margin-top: 9rem;
}
  .logo-miembros {
    height: 42px;
    margin-bottom: 0.5rem;
  }
  .titulo-interno {
    font-size: 1.6rem;
  }
  .lista-articulos a {
  padding: 0rem;
  margin-bottom: 0rem;
 
}


}
}
[id] {
  scroll-margin-top: 4.5rem /* ajusta según la altura de tu header */
}

.articulo-individual[id]::before {
  content: "";
  display: block;
  height: 120px;  /* altura del header */
  margin-top: -120px;
  visibility: hidden;
}

.finaldialogos{
  background-color: #808080; 
  width: 40%; 
}

/* ===========================
   TABS estilo Moebiana 72
   =========================== */
h4 {
  color:#555555;
  font-size:14px;
  font-weight:600;

}

.interiortabs{
  color:#555555;
  font-size:14px;
}

.tabs {
  list-style: none;
  margin: 2rem 0 1.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* cambia el número según tabs */
  justify-items: center;
  align-items: end;
}


.tab {
  position: relative;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  letter-spacing: .08em;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  color: #808080; /* inactivo gris */
  text-align: center;
  
}

.tab::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: .35rem auto 0; /* centrada debajo */
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  opacity: .55;
 
}

.tab:hover {
  color: #8f9a95; /* hover sutil */
}

.tab.activo {
  color: #2f6b65; /* activo más oscuro */
  font-weight: 700;
}

.tab.activo::after {
  opacity: 1;
}

.tab-content {
  display: none;
  margin-top: .5rem;
}
.tab-content.activo {
  display: block;
  animation: tabsFade .25s ease-in-out;
}

@keyframes tabsFade {
  from { opacity: 0 }
  to   { opacity: 1 }
}
.volver-atras a {
  color: #628B87;        
  text-decoration: none; 
  font-weight: 600;     
  font-size: 14px;       
  display: inline-flex;
  align-items: center;
  gap: 6px; 
  padding: 20px;              
}

.volver-atras a:hover {
  color: #3d5956;     
  text-decoration: none;
}
/* ===========================
   Responsive
=========================== */
@media (max-width: 768px) {
  .tabs {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    row-gap: .35rem;
    margin-bottom: 1rem;
  }
  .editorial {

  padding: 1rem;

  .tab {
    width: 100%;
    padding: .4rem 0;
    text-align: center;
  }

  .tab::after {
    margin-top: .3rem; /* sigue debajo, centrada */
  }
}


@media print {
  body {
    margin: 1cm;
  }

  .contenedor-dos-columnas {
    display: flex !important;
    flex-direction: row !important;
  }

  .columna-izquierda, .columna-derecha {
    width: 50% !important;
    padding: 10px;
    box-sizing: border-box;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
  }
}
