
.blog-container-cover{ 
  width: 100%; 
  min-height: 100vh; /* Para que ocupe toda la altura de la pantalla */
  position: relative; 
  margin-top: 80px; 
  background-position: center; 
  background-size: cover; 
  background-repeat: no-repeat; 
} 

.blog-container-cover:before{ 
    content: ''; 
    width: 100%; 
    height: 100%; 
    background: rgb(193,193,193);
background: radial-gradient(circle, rgba(193,193,193,1) 0%, rgba(75,76,77,1) 100%);
    position: absolute; 
    top: 0; 
    left: 0; 
} 

.container-info-cover{ 
  max-width: 1800px; /* Aumentado para dar más espacio */
    width: 90%; /* Para dar margen en los lados */
    min-height: unset; /* Removemos la altura mínima fija */
  margin: auto; 
  text-align: center; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  position: relative; 
  z-index: 1; 
  padding: 40px 0; /* Añadido padding para dar espacio al contenido */
}
 
.container-info-cover h1{ 
    font-size: 100px; 
    font-weight: 500; 
    color: #fff; 
    margin-bottom: 20px; 
} 

.container-info-cover p{ 
    color: #fff; 
    font-size: 20px; 
    font-weight: 300; 
} 

/*Boton*/
/* From Uiverse.io by doniaskima */ 
.btn-17,
.btn-17 *,
.btn-17 :after,
.btn-17 :before,
.btn-17:after,
.btn-17:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-17 {
  -webkit-tap-highlight-color: transparent;
  background-color: #000;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

.btn-17:disabled {
  cursor: default;
}

.btn-17:-moz-focusring {
  outline: auto;
}

.btn-17 svg {
  display: block;
}

.btn-17 [hidden] {
  display: none;
}

.btn-17 {
  border-radius: 99rem;
  border-width: 2px;
  padding: 0.8rem 3rem;
  z-index: 0;
}

.btn-17,
.btn-17 .text-container {
  overflow: hidden;
  position: relative;
}

.btn-17 .text-container {
  display: block;
  mix-blend-mode: difference;
}

.btn-17 .text {
  display: block;
  position: relative;
}

.btn-17:hover .text {
  -webkit-animation: move-up-alternate 0.3s forwards;
  animation: move-up-alternate 0.3s forwards;
}

@-webkit-keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  51% {
    transform: translateY(-80%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  51% {
    transform: translateY(-80%);
  }

  to {
    transform: translateY(0);
  }
}

.btn-17:after,
.btn-17:before {
  --skew: 0.2;
  background: #fff;
  content: "";
  display: block;
  height: 102%;
  left: calc(-50% - 50% * var(--skew));
  pointer-events: none;
  position: absolute;
  top: -104%;
  transform: skew(calc(150deg * var(--skew))) translateY(var(--progress, 0));
  transition: transform 0.2s ease;
  width: 100%;
}

.btn-17:after {
  --progress: 0%;
  left: calc(50% + 50% * var(--skew));
  top: 102%;
  z-index: -1;
}

.btn-17:hover:before {
  --progress: 100%;
}

.btn-17:hover:after {
  --progress: -102%;
}

/*fin del boton*/

@media screen and (max-width: 1200px){ 
    .posts{ 
        grid-template-columns: repeat(3, 1fr); 
    } 
} 

@media screen and (max-width: 900px){ 
    .posts{ 
        grid-template-columns: repeat(2, 1fr); 
    } 
} 

@media screen and (max-width: 580px){ 
    .posts{ 
        grid-template-columns: repeat(1, 1fr); 
    } 
}