
.home-app {
  width: 100%;
  height: 100vh;      
  display: flex;
  flex-direction: column; 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.home-app h1 {
  font-family: 'Arial';
  font-size: 22px;
  color: black;
}

.home-encabezado {
  width: 100%;
  background-color: white;
}

.home-contenedor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 0;
}

.home-logo {
  height: 50px;
  object-fit: contain;
}

.home-logo-central {
  height: 60px;
  object-fit: contain;
}

.home-separador {
  width: 2px;
  height: 50px;
  background-color: #861542;
}

.home-contenido {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.home-h1 {
  font-family: "Arial";
  font-size: 22px;
  color: black;
  text-align: center;
  margin-top: 20px;
}

.home-proyecto-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-texto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-texto h2 {
  font-family: "Arial";
  font-size: 18px;
  color: black;
  text-align: left;
  margin-top: 20px;
}

.home-texto p {
  font-size: 14px;
  color: #555;
  margin: 2px 0;
}

.home-btn-ver {
  padding: 8px 16px;
  background-color: #861542;
  color: white;
  cursor: pointer;
  border: none;
  outline: none;
}

.home-btn-ver:focus,
.home-btn-ver:active {
  outline: none;
  border: none;
}

.home-titulo-proyecto {
  width: 100%;
  max-width: 800px;
  margin: 10px auto; 
  padding-bottom: 10px;
  display: flex;      
  justify-content: center;
}

.home-titulo-proyecto h1 {
  font-family: 'Arial';
  font-size: 22px;
  color: #000000;
  margin: 0;
  text-align: center;  
}

.home-lista-proyectos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.home-proyecto-card {
  border: 1px solid #ccc;
  background-color: white;
  padding: 16px;
  width: 100%;
  max-width: 800px;
  min-height: 120px; 
  box-sizing: border-box;
}

.home-barra {
  height: 50px;
  width: 100%;
  background-color: #861542;
  display: flex;
  align-items: center;
  padding: 0 10px;
  position: relative; 
}

.home-icono-casa {
  width: 90px;
  height: 30px;
  cursor: pointer;
  fill: #d5b690;
  background: transparent;
  z-index: 1; 
}

.home-proyectos-titulo-barra {
  position: absolute; 
  left: 50%;
  transform: translateX(-50%);
  color: #d5b690; 
  font-weight: bold;
  font-size: 18px;
  background: transparent;
}  
