.no-webp .contenedor-saludo{
  background-image: url("../img/primera.jpg");
}

.webp .contenedor-saludo{
  background-image: url("../img/primera.webp");
}


.contenedor-saludo{
  background-image: url("../img/primera.jpg");
  position: relative;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 10vh;        
  display: flex;
  align-items: center;
}

/* MÓVIL */
.saludo{
  background-color: var(--secundario-rgb);
  width: 100%;
  padding: 2rem;
}

/* TABLET+ */
@media (min-width: 768px) {
  .contenedor-saludo {
    background-image: url("../img/primeraGrande.jpg");
    min-height: 50vh;
    justify-content: flex-end;
    align-items: stretch;        /* CLAVE: estira el hijo a toda la altura */
  }

  .saludo{
    width: 50%;
    height: auto;               /* no hace falta 100% */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
  }
}

.saludo p{
  margin: 0;
  padding: 0;                  
}

.texto-pequeño{
  font-size: 15px;
  font-weight: bold;
}


@media (min-width: 1016px) {
  .contenedor-saludo {
    background-image: url("../img/primeraGrande.jpg");
    min-height: 90vh;
 
  }
}